diff --git a/tsx/src/grammar.json b/tsx/src/grammar.json index 5951ca40..b67d83f6 100644 --- a/tsx/src/grammar.json +++ b/tsx/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "tsx", "inherits": "javascript", "word": "identifier", diff --git a/tsx/src/node-types.json b/tsx/src/node-types.json index ecbc1077..718eac63 100644 --- a/tsx/src/node-types.json +++ b/tsx/src/node-types.json @@ -4456,6 +4456,7 @@ { "type": "program", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, diff --git a/tsx/src/tree_sitter/alloc.h b/tsx/src/tree_sitter/alloc.h index 1f4466d7..1abdd120 100644 --- a/tsx/src/tree_sitter/alloc.h +++ b/tsx/src/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR -extern void *(*ts_current_malloc)(size_t); -extern void *(*ts_current_calloc)(size_t, size_t); -extern void *(*ts_current_realloc)(void *, size_t); -extern void (*ts_current_free)(void *); +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); #ifndef ts_malloc #define ts_malloc ts_current_malloc diff --git a/typescript/src/grammar.json b/typescript/src/grammar.json index b8581042..3413131b 100644 --- a/typescript/src/grammar.json +++ b/typescript/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "typescript", "inherits": "javascript", "word": "identifier", diff --git a/typescript/src/node-types.json b/typescript/src/node-types.json index 7793bc8c..224ccd71 100644 --- a/typescript/src/node-types.json +++ b/typescript/src/node-types.json @@ -3235,251 +3235,6 @@ ] } }, - { - "type": "jsx_attribute", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "jsx_element", - "named": true - }, - { - "type": "jsx_expression", - "named": true - }, - { - "type": "jsx_namespace_name", - "named": true - }, - { - "type": "jsx_self_closing_element", - "named": true - }, - { - "type": "property_identifier", - "named": true - }, - { - "type": "string", - "named": true - } - ] - } - }, - { - "type": "jsx_closing_element", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "jsx_namespace_name", - "named": true - }, - { - "type": "member_expression", - "named": true - } - ] - } - } - }, - { - "type": "jsx_element", - "named": true, - "fields": { - "close_tag": { - "multiple": false, - "required": true, - "types": [ - { - "type": "jsx_closing_element", - "named": true - } - ] - }, - "open_tag": { - "multiple": false, - "required": true, - "types": [ - { - "type": "jsx_opening_element", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "html_character_reference", - "named": true - }, - { - "type": "jsx_element", - "named": true - }, - { - "type": "jsx_expression", - "named": true - }, - { - "type": "jsx_self_closing_element", - "named": true - }, - { - "type": "jsx_text", - "named": true - } - ] - } - }, - { - "type": "jsx_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "expression", - "named": true - }, - { - "type": "sequence_expression", - "named": true - }, - { - "type": "spread_element", - "named": true - } - ] - } - }, - { - "type": "jsx_namespace_name", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "jsx_opening_element", - "named": true, - "fields": { - "attribute": { - "multiple": true, - "required": false, - "types": [ - { - "type": "jsx_attribute", - "named": true - }, - { - "type": "jsx_expression", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "jsx_namespace_name", - "named": true - }, - { - "type": "member_expression", - "named": true - } - ] - }, - "type_arguments": { - "multiple": false, - "required": false, - "types": [ - { - "type": "type_arguments", - "named": true - } - ] - } - } - }, - { - "type": "jsx_self_closing_element", - "named": true, - "fields": { - "attribute": { - "multiple": true, - "required": false, - "types": [ - { - "type": "jsx_attribute", - "named": true - }, - { - "type": "jsx_expression", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "jsx_namespace_name", - "named": true - }, - { - "type": "member_expression", - "named": true - } - ] - }, - "type_arguments": { - "multiple": false, - "required": false, - "types": [ - { - "type": "type_arguments", - "named": true - } - ] - } - } - }, { "type": "labeled_statement", "named": true, @@ -4452,6 +4207,7 @@ { "type": "program", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, @@ -4868,10 +4624,6 @@ "type": "escape_sequence", "named": true }, - { - "type": "html_character_reference", - "named": true - }, { "type": "string_fragment", "named": true @@ -5789,10 +5541,6 @@ "type": "/=", "named": false }, - { - "type": "/>", - "named": false - }, { "type": ":", "named": false @@ -5805,10 +5553,6 @@ "type": "<", "named": false }, - { - "type": "", [anon_sym_DOT] = ".", - [anon_sym_DQUOTE] = "\"", - [anon_sym_SQUOTE] = "'", [anon_sym_class] = "class", [anon_sym_async] = "async", [anon_sym_function] = "function", @@ -503,6 +500,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_BANG_EQ] = "!=", [anon_sym_BANG_EQ_EQ] = "!==", [anon_sym_GT_EQ] = ">=", + [anon_sym_GT] = ">", [anon_sym_QMARK_QMARK] = "\?\?", [anon_sym_instanceof] = "instanceof", [anon_sym_TILDE] = "~", @@ -510,6 +508,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_delete] = "delete", [anon_sym_PLUS_PLUS] = "++", [anon_sym_DASH_DASH] = "--", + [anon_sym_DQUOTE] = "\"", + [anon_sym_SQUOTE] = "'", [sym_unescaped_double_string_fragment] = "string_fragment", [sym_unescaped_single_string_fragment] = "string_fragment", [sym_escape_sequence] = "escape_sequence", @@ -847,10 +847,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__glimmer_template_content] = sym__glimmer_template_content, [sym_glimmer_opening_tag] = sym_glimmer_opening_tag, [sym_glimmer_closing_tag] = sym_glimmer_closing_tag, - [anon_sym_GT] = anon_sym_GT, [anon_sym_DOT] = anon_sym_DOT, - [anon_sym_DQUOTE] = anon_sym_DQUOTE, - [anon_sym_SQUOTE] = anon_sym_SQUOTE, [anon_sym_class] = anon_sym_class, [anon_sym_async] = anon_sym_async, [anon_sym_function] = anon_sym_function, @@ -894,6 +891,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, [anon_sym_BANG_EQ_EQ] = anon_sym_BANG_EQ_EQ, [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_GT] = anon_sym_GT, [anon_sym_QMARK_QMARK] = anon_sym_QMARK_QMARK, [anon_sym_instanceof] = anon_sym_instanceof, [anon_sym_TILDE] = anon_sym_TILDE, @@ -901,6 +899,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_delete] = anon_sym_delete, [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, [sym_unescaped_double_string_fragment] = sym__template_chars, [sym_unescaped_single_string_fragment] = sym__template_chars, [sym_escape_sequence] = sym_escape_sequence, @@ -1388,22 +1388,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_GT] = { - .visible = true, - .named = false, - }, [anon_sym_DOT] = { .visible = true, .named = false, }, - [anon_sym_DQUOTE] = { - .visible = true, - .named = false, - }, - [anon_sym_SQUOTE] = { - .visible = true, - .named = false, - }, [anon_sym_class] = { .visible = true, .named = false, @@ -1576,6 +1564,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, [anon_sym_QMARK_QMARK] = { .visible = true, .named = false, @@ -1604,6 +1596,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, [sym_unescaped_double_string_fragment] = { .visible = true, .named = true, @@ -4772,31 +4772,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [247] = 247, [248] = 248, [249] = 248, - [250] = 250, - [251] = 222, - [252] = 250, + [250] = 222, + [251] = 251, + [252] = 251, [253] = 245, [254] = 222, [255] = 255, - [256] = 256, - [257] = 222, + [256] = 222, + [257] = 257, [258] = 222, - [259] = 256, + [259] = 257, [260] = 260, [261] = 222, [262] = 262, [263] = 222, - [264] = 256, + [264] = 257, [265] = 265, - [266] = 256, - [267] = 256, + [266] = 257, + [267] = 257, [268] = 260, [269] = 262, [270] = 222, - [271] = 256, + [271] = 257, [272] = 222, [273] = 222, - [274] = 256, + [274] = 257, [275] = 275, [276] = 275, [277] = 275, @@ -4951,25 +4951,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [426] = 396, [427] = 427, [428] = 412, - [429] = 419, + [429] = 418, [430] = 430, [431] = 399, [432] = 400, - [433] = 416, - [434] = 417, + [433] = 415, + [434] = 416, [435] = 412, [436] = 425, - [437] = 419, + [437] = 418, [438] = 438, - [439] = 419, + [439] = 418, [440] = 440, [441] = 441, - [442] = 419, - [443] = 419, + [442] = 418, + [443] = 418, [444] = 444, [445] = 445, [446] = 446, - [447] = 419, + [447] = 418, [448] = 448, [449] = 449, [450] = 427, @@ -4992,13 +4992,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [467] = 409, [468] = 410, [469] = 411, - [470] = 414, + [470] = 417, [471] = 402, [472] = 403, [473] = 404, - [474] = 416, - [475] = 417, - [476] = 419, + [474] = 415, + [475] = 416, + [476] = 418, [477] = 405, [478] = 440, [479] = 422, @@ -5025,13 +5025,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [500] = 411, [501] = 412, [502] = 406, - [503] = 416, - [504] = 417, - [505] = 419, + [503] = 415, + [504] = 416, + [505] = 418, [506] = 422, [507] = 424, [508] = 425, - [509] = 419, + [509] = 418, [510] = 448, [511] = 427, [512] = 407, @@ -5053,9 +5053,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [528] = 410, [529] = 411, [530] = 408, - [531] = 416, - [532] = 417, - [533] = 419, + [531] = 415, + [532] = 416, + [533] = 418, [534] = 409, [535] = 422, [536] = 449, @@ -5076,14 +5076,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [551] = 409, [552] = 410, [553] = 411, - [554] = 416, - [555] = 417, - [556] = 419, + [554] = 415, + [555] = 416, + [556] = 418, [557] = 422, [558] = 424, [559] = 425, [560] = 560, - [561] = 419, + [561] = 418, [562] = 448, [563] = 396, [564] = 427, @@ -5103,14 +5103,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [578] = 409, [579] = 410, [580] = 411, - [581] = 416, - [582] = 417, + [581] = 415, + [582] = 416, [583] = 453, [584] = 449, [585] = 422, [586] = 424, [587] = 425, - [588] = 419, + [588] = 418, [589] = 448, [590] = 396, [591] = 427, @@ -5131,12 +5131,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [606] = 410, [607] = 411, [608] = 410, - [609] = 416, - [610] = 417, + [609] = 415, + [610] = 416, [611] = 422, [612] = 424, [613] = 425, - [614] = 419, + [614] = 418, [615] = 448, [616] = 396, [617] = 427, @@ -5159,8 +5159,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [634] = 411, [635] = 427, [636] = 444, - [637] = 416, - [638] = 417, + [637] = 415, + [638] = 416, [639] = 422, [640] = 422, [641] = 424, @@ -5184,8 +5184,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [659] = 410, [660] = 411, [661] = 411, - [662] = 416, - [663] = 417, + [662] = 415, + [663] = 416, [664] = 422, [665] = 424, [666] = 425, @@ -5197,7 +5197,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [672] = 449, [673] = 449, [674] = 674, - [675] = 419, + [675] = 418, [676] = 424, [677] = 425, [678] = 449, @@ -5227,8 +5227,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [702] = 702, [703] = 702, [704] = 701, - [705] = 243, - [706] = 244, + [705] = 219, + [706] = 218, [707] = 702, [708] = 701, [709] = 709, @@ -5237,64 +5237,64 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [712] = 712, [713] = 713, [714] = 714, - [715] = 709, + [715] = 711, [716] = 716, - [717] = 717, + [717] = 716, [718] = 718, [719] = 716, - [720] = 716, + [720] = 720, [721] = 718, - [722] = 717, + [722] = 720, [723] = 718, [724] = 724, [725] = 725, [726] = 726, [727] = 726, - [728] = 728, + [728] = 725, [729] = 724, - [730] = 725, + [730] = 730, [731] = 726, [732] = 726, [733] = 726, - [734] = 728, + [734] = 730, [735] = 726, [736] = 229, - [737] = 726, - [738] = 738, - [739] = 739, + [737] = 737, + [738] = 726, + [739] = 226, [740] = 740, - [741] = 226, - [742] = 726, - [743] = 726, - [744] = 724, + [741] = 726, + [742] = 725, + [743] = 743, + [744] = 726, [745] = 726, - [746] = 225, + [746] = 233, [747] = 747, [748] = 726, - [749] = 227, - [750] = 234, - [751] = 225, - [752] = 229, - [753] = 233, - [754] = 226, - [755] = 726, + [749] = 749, + [750] = 227, + [751] = 234, + [752] = 225, + [753] = 229, + [754] = 225, + [755] = 226, [756] = 756, - [757] = 233, - [758] = 756, - [759] = 759, - [760] = 756, - [761] = 724, - [762] = 725, + [757] = 756, + [758] = 725, + [759] = 756, + [760] = 726, + [761] = 233, + [762] = 213, [763] = 211, - [764] = 213, + [764] = 726, [765] = 726, [766] = 726, - [767] = 726, - [768] = 726, + [767] = 724, + [768] = 743, [769] = 726, [770] = 726, - [771] = 739, - [772] = 772, + [771] = 771, + [772] = 726, [773] = 773, [774] = 774, [775] = 775, @@ -5302,31 +5302,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [777] = 777, [778] = 778, [779] = 779, - [780] = 780, + [780] = 726, [781] = 781, - [782] = 775, + [782] = 782, [783] = 783, [784] = 775, - [785] = 209, - [786] = 786, + [785] = 240, + [786] = 241, [787] = 787, [788] = 788, - [789] = 240, - [790] = 790, - [791] = 775, + [789] = 775, + [790] = 775, + [791] = 791, [792] = 792, - [793] = 775, - [794] = 794, + [793] = 793, + [794] = 775, [795] = 795, [796] = 796, - [797] = 797, - [798] = 775, + [797] = 775, + [798] = 798, [799] = 775, - [800] = 726, - [801] = 241, + [800] = 209, + [801] = 775, [802] = 802, [803] = 803, - [804] = 775, + [804] = 804, [805] = 775, [806] = 775, [807] = 807, @@ -5362,8 +5362,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [837] = 837, [838] = 838, [839] = 839, - [840] = 814, - [841] = 841, + [840] = 840, + [841] = 814, [842] = 842, [843] = 843, [844] = 844, @@ -5393,22 +5393,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [868] = 868, [869] = 869, [870] = 870, - [871] = 871, + [871] = 227, [872] = 872, [873] = 873, - [874] = 227, + [874] = 874, [875] = 875, [876] = 876, - [877] = 234, - [878] = 878, + [877] = 877, + [878] = 234, [879] = 814, [880] = 880, [881] = 881, [882] = 882, [883] = 883, [884] = 884, - [885] = 220, - [886] = 886, + [885] = 885, + [886] = 220, [887] = 887, [888] = 888, [889] = 889, @@ -5420,8 +5420,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [895] = 895, [896] = 896, [897] = 897, - [898] = 236, - [899] = 899, + [898] = 898, + [899] = 244, [900] = 900, [901] = 901, [902] = 902, @@ -5460,16 +5460,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [935] = 935, [936] = 936, [937] = 936, - [938] = 935, - [939] = 936, - [940] = 936, - [941] = 936, - [942] = 935, + [938] = 936, + [939] = 935, + [940] = 935, + [941] = 935, + [942] = 936, [943] = 935, - [944] = 935, + [944] = 936, [945] = 945, - [946] = 790, - [947] = 773, + [946] = 793, + [947] = 774, [948] = 948, [949] = 949, [950] = 950, @@ -5485,41 +5485,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [960] = 960, [961] = 961, [962] = 962, - [963] = 960, - [964] = 960, + [963] = 961, + [964] = 961, [965] = 962, - [966] = 960, + [966] = 961, [967] = 962, - [968] = 960, + [968] = 961, [969] = 962, - [970] = 962, - [971] = 961, + [970] = 961, + [971] = 962, [972] = 960, - [973] = 961, - [974] = 960, - [975] = 962, + [973] = 960, + [974] = 962, + [975] = 961, [976] = 962, [977] = 977, [978] = 978, [979] = 979, [980] = 980, [981] = 981, - [982] = 982, - [983] = 982, - [984] = 981, - [985] = 980, - [986] = 981, - [987] = 982, - [988] = 980, - [989] = 981, + [982] = 980, + [983] = 981, + [984] = 984, + [985] = 984, + [986] = 986, + [987] = 981, + [988] = 981, + [989] = 984, [990] = 980, - [991] = 982, - [992] = 992, - [993] = 981, - [994] = 980, - [995] = 982, - [996] = 982, - [997] = 980, + [991] = 980, + [992] = 980, + [993] = 980, + [994] = 984, + [995] = 981, + [996] = 981, + [997] = 984, [998] = 998, [999] = 999, [1000] = 1000, @@ -5534,155 +5534,155 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1009] = 1009, [1010] = 1010, [1011] = 1011, - [1012] = 1012, + [1012] = 999, [1013] = 1013, - [1014] = 999, - [1015] = 1015, - [1016] = 999, + [1014] = 1014, + [1015] = 999, + [1016] = 1016, [1017] = 1017, [1018] = 1018, [1019] = 1019, [1020] = 1020, - [1021] = 1021, - [1022] = 998, - [1023] = 1001, - [1024] = 1003, - [1025] = 1004, + [1021] = 998, + [1022] = 1001, + [1023] = 1003, + [1024] = 1004, + [1025] = 1025, [1026] = 1026, [1027] = 1027, - [1028] = 1028, - [1029] = 1002, - [1030] = 1030, - [1031] = 1000, + [1028] = 1000, + [1029] = 1029, + [1030] = 1008, + [1031] = 1002, [1032] = 1009, [1033] = 1010, - [1034] = 1011, - [1035] = 1013, - [1036] = 1015, - [1037] = 1017, + [1034] = 1013, + [1035] = 1014, + [1036] = 1013, + [1037] = 1037, [1038] = 1038, [1039] = 1039, - [1040] = 1040, - [1041] = 1019, - [1042] = 1020, - [1043] = 1015, + [1040] = 1017, + [1041] = 1018, + [1042] = 1013, + [1043] = 1014, [1044] = 998, [1045] = 1001, - [1046] = 1017, - [1047] = 1047, - [1048] = 1003, - [1049] = 1004, - [1050] = 1005, - [1051] = 1007, + [1046] = 1046, + [1047] = 1003, + [1048] = 1004, + [1049] = 1005, + [1050] = 1007, + [1051] = 1025, [1052] = 1026, - [1053] = 1027, + [1053] = 1053, [1054] = 1054, - [1055] = 1055, - [1056] = 1019, - [1057] = 1020, - [1058] = 1015, - [1059] = 998, - [1060] = 1001, - [1061] = 1003, - [1062] = 1004, - [1063] = 1017, + [1055] = 1014, + [1056] = 1017, + [1057] = 1018, + [1058] = 998, + [1059] = 1001, + [1060] = 1003, + [1061] = 1004, + [1062] = 1062, + [1063] = 1025, [1064] = 1026, - [1065] = 1027, - [1066] = 1000, - [1067] = 1009, - [1068] = 1010, - [1069] = 1011, + [1065] = 1029, + [1066] = 1008, + [1067] = 1002, + [1068] = 1009, + [1069] = 1010, [1070] = 1013, - [1071] = 1015, - [1072] = 1017, - [1073] = 1026, - [1074] = 1008, - [1075] = 1005, - [1076] = 1019, - [1077] = 1020, - [1078] = 1003, - [1079] = 1005, - [1080] = 1008, + [1071] = 1014, + [1072] = 1025, + [1073] = 999, + [1074] = 1005, + [1075] = 1017, + [1076] = 1018, + [1077] = 1003, + [1078] = 1005, + [1079] = 1004, + [1080] = 1062, [1081] = 1026, - [1082] = 1027, - [1083] = 999, - [1084] = 1000, + [1082] = 1029, + [1083] = 1008, + [1084] = 1002, [1085] = 1009, [1086] = 1010, - [1087] = 1011, - [1088] = 1005, - [1089] = 1013, - [1090] = 1019, - [1091] = 1020, - [1092] = 1015, - [1093] = 1017, - [1094] = 1019, - [1095] = 1020, - [1096] = 1003, - [1097] = 1004, - [1098] = 1026, - [1099] = 1027, - [1100] = 1100, - [1101] = 998, - [1102] = 1001, - [1103] = 1012, + [1087] = 1005, + [1088] = 1017, + [1089] = 1018, + [1090] = 1013, + [1091] = 1014, + [1092] = 1017, + [1093] = 1018, + [1094] = 1003, + [1095] = 1004, + [1096] = 1025, + [1097] = 1026, + [1098] = 1098, + [1099] = 998, + [1100] = 1001, + [1101] = 1011, + [1102] = 1102, + [1103] = 1103, [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 1027, - [1108] = 1000, + [1105] = 1026, + [1106] = 1029, + [1107] = 1008, + [1108] = 1002, [1109] = 1009, [1110] = 1010, - [1111] = 1011, - [1112] = 1013, - [1113] = 999, - [1114] = 1100, + [1111] = 999, + [1112] = 1098, + [1113] = 1113, + [1114] = 1038, [1115] = 1115, - [1116] = 1039, - [1117] = 1117, - [1118] = 1115, - [1119] = 1015, + [1116] = 1113, + [1117] = 1013, + [1118] = 1014, + [1119] = 1119, [1120] = 1017, - [1121] = 1121, - [1122] = 1019, - [1123] = 1020, - [1124] = 1124, - [1125] = 1125, - [1126] = 998, - [1127] = 1001, - [1128] = 1003, - [1129] = 1004, - [1130] = 1026, - [1131] = 1027, - [1132] = 1000, + [1121] = 1018, + [1122] = 1122, + [1123] = 1123, + [1124] = 998, + [1125] = 1001, + [1126] = 1003, + [1127] = 1004, + [1128] = 1025, + [1129] = 1026, + [1130] = 1029, + [1131] = 1008, + [1132] = 1002, [1133] = 1009, [1134] = 1010, - [1135] = 1011, - [1136] = 1013, - [1137] = 1005, - [1138] = 998, - [1139] = 1001, - [1140] = 1000, + [1135] = 1005, + [1136] = 998, + [1137] = 1001, + [1138] = 1029, + [1139] = 1008, + [1140] = 1002, [1141] = 1009, [1142] = 1010, - [1143] = 1011, - [1144] = 1013, - [1145] = 1008, - [1146] = 1005, - [1147] = 1008, - [1148] = 1008, - [1149] = 1008, - [1150] = 1004, + [1143] = 1029, + [1144] = 1062, + [1145] = 1005, + [1146] = 1062, + [1147] = 1062, + [1148] = 1062, + [1149] = 1062, + [1150] = 1025, [1151] = 1151, - [1152] = 1152, - [1153] = 1151, + [1152] = 1151, + [1153] = 1153, [1154] = 1151, [1155] = 1151, - [1156] = 1151, + [1156] = 1156, [1157] = 1151, [1158] = 1151, [1159] = 1151, - [1160] = 1160, + [1160] = 1151, [1161] = 1151, [1162] = 1162, [1163] = 1151, @@ -5693,299 +5693,299 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1168] = 1168, [1169] = 1168, [1170] = 1166, - [1171] = 1167, + [1171] = 1166, [1172] = 1168, [1173] = 1167, - [1174] = 1166, + [1174] = 1167, [1175] = 1175, [1176] = 1176, [1177] = 1177, - [1178] = 1177, - [1179] = 1179, - [1180] = 1179, - [1181] = 1177, - [1182] = 1177, - [1183] = 1177, - [1184] = 1184, - [1185] = 1184, + [1178] = 1178, + [1179] = 1177, + [1180] = 1178, + [1181] = 1178, + [1182] = 1175, + [1183] = 1183, + [1184] = 1183, + [1185] = 1185, [1186] = 1186, - [1187] = 1187, - [1188] = 1187, - [1189] = 1175, - [1190] = 1186, - [1191] = 1177, - [1192] = 1176, - [1193] = 1193, + [1187] = 1186, + [1188] = 1178, + [1189] = 1176, + [1190] = 1185, + [1191] = 1178, + [1192] = 1178, + [1193] = 1176, [1194] = 1194, [1195] = 1195, [1196] = 1196, [1197] = 1197, - [1198] = 1198, + [1198] = 1178, [1199] = 1199, - [1200] = 1177, - [1201] = 1177, + [1200] = 1200, + [1201] = 1178, [1202] = 1202, - [1203] = 1176, + [1203] = 1203, [1204] = 1204, [1205] = 1205, - [1206] = 1206, - [1207] = 1177, - [1208] = 1193, - [1209] = 1193, + [1206] = 1178, + [1207] = 1202, + [1208] = 1202, + [1209] = 1209, [1210] = 1210, - [1211] = 1177, - [1212] = 1212, + [1211] = 1211, + [1212] = 1178, [1213] = 1213, [1214] = 1214, - [1215] = 1215, - [1216] = 790, - [1217] = 1215, + [1215] = 1178, + [1216] = 1216, + [1217] = 1178, [1218] = 1218, - [1219] = 1177, - [1220] = 1220, - [1221] = 773, - [1222] = 1177, - [1223] = 1218, - [1224] = 1177, - [1225] = 1220, - [1226] = 1226, - [1227] = 1215, + [1219] = 1176, + [1220] = 1178, + [1221] = 1216, + [1222] = 1222, + [1223] = 793, + [1224] = 1213, + [1225] = 1225, + [1226] = 1222, + [1227] = 1225, [1228] = 1228, - [1229] = 1226, - [1230] = 1213, - [1231] = 1176, - [1232] = 1232, - [1233] = 1226, - [1234] = 1177, + [1229] = 774, + [1230] = 1214, + [1231] = 1216, + [1232] = 1213, + [1233] = 1233, + [1234] = 1178, [1235] = 1235, - [1236] = 1177, - [1237] = 1213, - [1238] = 1177, - [1239] = 1177, - [1240] = 1177, - [1241] = 1177, - [1242] = 1213, - [1243] = 1175, + [1236] = 1178, + [1237] = 1237, + [1238] = 1178, + [1239] = 1214, + [1240] = 1214, + [1241] = 1178, + [1242] = 1175, + [1243] = 1243, [1244] = 1244, - [1245] = 1196, - [1246] = 1246, - [1247] = 1247, + [1245] = 1178, + [1246] = 1194, + [1247] = 1178, [1248] = 1248, - [1249] = 1213, + [1249] = 1249, [1250] = 1250, - [1251] = 1250, - [1252] = 1250, - [1253] = 1253, - [1254] = 1254, + [1251] = 1237, + [1252] = 1252, + [1253] = 1214, + [1254] = 1244, [1255] = 1255, - [1256] = 1250, - [1257] = 1257, - [1258] = 1246, - [1259] = 1259, - [1260] = 1213, - [1261] = 1250, - [1262] = 1262, - [1263] = 1263, + [1256] = 1256, + [1257] = 1214, + [1258] = 1258, + [1259] = 1237, + [1260] = 1260, + [1261] = 1214, + [1262] = 1250, + [1263] = 1250, [1264] = 1264, - [1265] = 1213, - [1266] = 1266, - [1267] = 1250, - [1268] = 1244, - [1269] = 1213, + [1265] = 1250, + [1266] = 1178, + [1267] = 1267, + [1268] = 1214, + [1269] = 1250, [1270] = 1250, - [1271] = 1177, - [1272] = 1244, - [1273] = 1250, - [1274] = 1246, - [1275] = 1250, + [1271] = 1271, + [1272] = 1250, + [1273] = 1214, + [1274] = 1244, + [1275] = 1275, [1276] = 1250, - [1277] = 1213, - [1278] = 1278, - [1279] = 1213, - [1280] = 1280, + [1277] = 1250, + [1278] = 1250, + [1279] = 1279, + [1280] = 1214, [1281] = 1281, - [1282] = 1282, - [1283] = 1206, + [1282] = 1214, + [1283] = 1283, [1284] = 1284, - [1285] = 1246, + [1285] = 1285, [1286] = 1286, - [1287] = 1205, - [1288] = 1213, - [1289] = 1289, - [1290] = 1206, - [1291] = 1278, - [1292] = 1246, - [1293] = 1280, - [1294] = 1264, - [1295] = 1289, - [1296] = 1205, + [1287] = 1287, + [1288] = 1237, + [1289] = 1210, + [1290] = 1249, + [1291] = 1214, + [1292] = 1237, + [1293] = 1214, + [1294] = 1294, + [1295] = 1214, + [1296] = 1279, [1297] = 1297, - [1298] = 1246, - [1299] = 1299, - [1300] = 1278, - [1301] = 1213, - [1302] = 1302, - [1303] = 1264, - [1304] = 1213, - [1305] = 1305, - [1306] = 1305, - [1307] = 1213, - [1308] = 1282, - [1309] = 1264, - [1310] = 1206, - [1311] = 1210, - [1312] = 1264, + [1298] = 1209, + [1299] = 1209, + [1300] = 1287, + [1301] = 1301, + [1302] = 1297, + [1303] = 1248, + [1304] = 1248, + [1305] = 1237, + [1306] = 1294, + [1307] = 1249, + [1308] = 1210, + [1309] = 1237, + [1310] = 1297, + [1311] = 1214, + [1312] = 1312, [1313] = 1313, - [1314] = 1255, - [1315] = 1278, - [1316] = 1264, - [1317] = 1204, - [1318] = 1318, - [1319] = 1194, - [1320] = 1248, - [1321] = 1321, - [1322] = 1318, - [1323] = 1289, - [1324] = 1228, - [1325] = 1228, - [1326] = 1313, - [1327] = 1321, - [1328] = 1259, - [1329] = 773, - [1330] = 1305, - [1331] = 1305, - [1332] = 1212, - [1333] = 1199, - [1334] = 1305, - [1335] = 790, + [1314] = 1313, + [1315] = 1315, + [1316] = 1279, + [1317] = 1279, + [1318] = 1196, + [1319] = 1279, + [1320] = 1297, + [1321] = 1210, + [1322] = 1252, + [1323] = 1209, + [1324] = 1315, + [1325] = 1214, + [1326] = 774, + [1327] = 1248, + [1328] = 1228, + [1329] = 1237, + [1330] = 1267, + [1331] = 1248, + [1332] = 1279, + [1333] = 1197, + [1334] = 1200, + [1335] = 1228, [1336] = 1205, - [1337] = 1246, - [1338] = 1213, - [1339] = 1198, - [1340] = 1246, - [1341] = 1289, - [1342] = 1202, - [1343] = 1305, - [1344] = 1213, - [1345] = 1289, - [1346] = 1246, - [1347] = 1289, - [1348] = 1246, - [1349] = 1349, - [1350] = 1206, - [1351] = 1281, - [1352] = 1289, - [1353] = 1228, - [1354] = 1205, - [1355] = 1355, - [1356] = 1349, - [1357] = 1302, - [1358] = 1305, - [1359] = 1264, + [1337] = 1237, + [1338] = 793, + [1339] = 1211, + [1340] = 1264, + [1341] = 1237, + [1342] = 1204, + [1343] = 1297, + [1344] = 1297, + [1345] = 1248, + [1346] = 1249, + [1347] = 1203, + [1348] = 1312, + [1349] = 1248, + [1350] = 1279, + [1351] = 1351, + [1352] = 1352, + [1353] = 1209, + [1354] = 1286, + [1355] = 1352, + [1356] = 1258, + [1357] = 1284, + [1358] = 1279, + [1359] = 1248, [1360] = 1360, - [1361] = 1289, - [1362] = 1362, - [1363] = 1263, + [1361] = 1237, + [1362] = 1297, + [1363] = 1209, [1364] = 1228, - [1365] = 1205, - [1366] = 1289, - [1367] = 1289, - [1368] = 1264, - [1369] = 1369, - [1370] = 1248, - [1371] = 1264, - [1372] = 1246, - [1373] = 1305, - [1374] = 1305, - [1375] = 1259, - [1376] = 1264, - [1377] = 1305, - [1378] = 1206, - [1379] = 1379, - [1380] = 1289, - [1381] = 1228, - [1382] = 1264, - [1383] = 1383, - [1384] = 1384, - [1385] = 1205, - [1386] = 1386, - [1387] = 1379, - [1388] = 1379, - [1389] = 1379, - [1390] = 1206, - [1391] = 1228, - [1392] = 1305, - [1393] = 1259, - [1394] = 1394, - [1395] = 1248, - [1396] = 1379, + [1365] = 1365, + [1366] = 1210, + [1367] = 1367, + [1368] = 1297, + [1369] = 1297, + [1370] = 1228, + [1371] = 1248, + [1372] = 1264, + [1373] = 1248, + [1374] = 1210, + [1375] = 1279, + [1376] = 1279, + [1377] = 1267, + [1378] = 1297, + [1379] = 1284, + [1380] = 1267, + [1381] = 1381, + [1382] = 1382, + [1383] = 1381, + [1384] = 1297, + [1385] = 1264, + [1386] = 1248, + [1387] = 1279, + [1388] = 1388, + [1389] = 1228, + [1390] = 1390, + [1391] = 1381, + [1392] = 1392, + [1393] = 1381, + [1394] = 1209, + [1395] = 1279, + [1396] = 1297, [1397] = 1397, - [1398] = 1305, - [1399] = 1302, - [1400] = 1289, - [1401] = 1379, - [1402] = 1289, - [1403] = 1289, - [1404] = 1305, - [1405] = 1305, - [1406] = 1369, - [1407] = 1305, - [1408] = 1305, - [1409] = 1305, - [1410] = 1305, - [1411] = 1255, - [1412] = 1302, - [1413] = 1289, - [1414] = 1289, - [1415] = 1289, - [1416] = 1289, - [1417] = 1228, - [1418] = 1360, + [1398] = 1228, + [1399] = 1381, + [1400] = 1210, + [1401] = 1381, + [1402] = 1284, + [1403] = 1279, + [1404] = 1279, + [1405] = 1297, + [1406] = 1279, + [1407] = 1279, + [1408] = 1279, + [1409] = 1279, + [1410] = 1360, + [1411] = 1297, + [1412] = 1297, + [1413] = 1297, + [1414] = 1297, + [1415] = 1252, + [1416] = 1228, + [1417] = 1367, + [1418] = 1297, [1419] = 1419, [1420] = 1420, - [1421] = 1420, - [1422] = 1419, + [1421] = 1421, + [1422] = 1420, [1423] = 1423, - [1424] = 1424, - [1425] = 1425, - [1426] = 1289, + [1424] = 1297, + [1425] = 1421, + [1426] = 1421, [1427] = 1420, - [1428] = 1425, - [1429] = 1425, - [1430] = 1420, - [1431] = 1423, - [1432] = 1423, - [1433] = 1424, - [1434] = 1420, - [1435] = 1424, - [1436] = 1425, - [1437] = 1420, - [1438] = 1423, - [1439] = 1423, - [1440] = 1419, - [1441] = 1424, + [1428] = 1420, + [1429] = 1419, + [1430] = 1430, + [1431] = 1430, + [1432] = 1430, + [1433] = 1421, + [1434] = 1430, + [1435] = 1421, + [1436] = 1420, + [1437] = 1419, + [1438] = 1419, + [1439] = 1421, + [1440] = 1421, + [1441] = 1423, [1442] = 1420, [1443] = 1423, - [1444] = 1419, - [1445] = 1425, - [1446] = 1420, + [1444] = 1421, + [1445] = 1420, + [1446] = 1286, [1447] = 1423, - [1448] = 1281, - [1449] = 1383, - [1450] = 1423, - [1451] = 1420, - [1452] = 1423, - [1453] = 1420, - [1454] = 1423, - [1455] = 1425, - [1456] = 1424, - [1457] = 1228, - [1458] = 1419, - [1459] = 1228, - [1460] = 1305, - [1461] = 1228, - [1462] = 1424, - [1463] = 1419, + [1448] = 1420, + [1449] = 1382, + [1450] = 1421, + [1451] = 1430, + [1452] = 1420, + [1453] = 1421, + [1454] = 1420, + [1455] = 1228, + [1456] = 1228, + [1457] = 1279, + [1458] = 1228, + [1459] = 1430, + [1460] = 1419, + [1461] = 1423, + [1462] = 1419, + [1463] = 1423, [1464] = 1464, [1465] = 1464, [1466] = 1464, @@ -6001,55 +6001,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1476] = 1474, [1477] = 1474, [1478] = 1474, - [1479] = 1479, - [1480] = 1474, + [1479] = 1474, + [1480] = 1480, [1481] = 1481, [1482] = 1482, - [1483] = 1482, + [1483] = 1481, [1484] = 1482, [1485] = 1485, [1486] = 1482, - [1487] = 1487, - [1488] = 1487, - [1489] = 1481, - [1490] = 1487, - [1491] = 1487, - [1492] = 1481, + [1487] = 1481, + [1488] = 1481, + [1489] = 1485, + [1490] = 1482, + [1491] = 1491, + [1492] = 1485, [1493] = 1482, - [1494] = 1487, + [1494] = 1485, [1495] = 1481, - [1496] = 1481, + [1496] = 1485, [1497] = 1497, - [1498] = 1497, + [1498] = 1498, [1499] = 1497, [1500] = 1497, [1501] = 1497, - [1502] = 1502, + [1502] = 1497, [1503] = 1497, - [1504] = 243, + [1504] = 1504, [1505] = 1505, [1506] = 1506, [1507] = 1507, [1508] = 1508, - [1509] = 1509, - [1510] = 1510, - [1511] = 244, + [1509] = 219, + [1510] = 218, + [1511] = 1511, [1512] = 1512, - [1513] = 1513, - [1514] = 1514, + [1513] = 219, + [1514] = 978, [1515] = 207, - [1516] = 979, + [1516] = 977, [1517] = 1517, - [1518] = 243, - [1519] = 1519, + [1518] = 1518, + [1519] = 218, [1520] = 1520, - [1521] = 1521, + [1521] = 979, [1522] = 1522, [1523] = 1523, - [1524] = 978, - [1525] = 244, + [1524] = 1524, + [1525] = 1525, [1526] = 1526, - [1527] = 977, + [1527] = 1527, [1528] = 1528, [1529] = 1529, [1530] = 1530, @@ -6060,18 +6060,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1535] = 1535, [1536] = 1536, [1537] = 1537, - [1538] = 1162, + [1538] = 1538, [1539] = 1539, [1540] = 1540, [1541] = 1541, [1542] = 1542, [1543] = 1543, [1544] = 1544, - [1545] = 1545, + [1545] = 1162, [1546] = 1546, [1547] = 1547, [1548] = 1548, - [1549] = 710, + [1549] = 1549, [1550] = 1550, [1551] = 1551, [1552] = 1552, @@ -6079,9 +6079,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1554] = 1554, [1555] = 1555, [1556] = 1556, - [1557] = 713, + [1557] = 1557, [1558] = 1558, - [1559] = 1559, + [1559] = 713, [1560] = 1560, [1561] = 1561, [1562] = 1562, @@ -6092,15 +6092,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1567] = 1567, [1568] = 1568, [1569] = 1569, - [1570] = 711, + [1570] = 1570, [1571] = 1571, [1572] = 1572, [1573] = 1573, [1574] = 1574, [1575] = 1575, - [1576] = 714, + [1576] = 1576, [1577] = 1577, - [1578] = 1578, + [1578] = 712, [1579] = 226, [1580] = 1580, [1581] = 1581, @@ -6120,46 +6120,46 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1595] = 1595, [1596] = 1596, [1597] = 1597, - [1598] = 1598, + [1598] = 1156, [1599] = 1599, [1600] = 1600, [1601] = 1601, [1602] = 1602, - [1603] = 211, - [1604] = 211, - [1605] = 213, - [1606] = 209, - [1607] = 1607, - [1608] = 1608, - [1609] = 229, - [1610] = 1610, - [1611] = 1611, - [1612] = 1612, + [1603] = 1603, + [1604] = 1604, + [1605] = 1605, + [1606] = 1606, + [1607] = 211, + [1608] = 211, + [1609] = 213, + [1610] = 213, + [1611] = 229, + [1612] = 209, [1613] = 1613, [1614] = 1614, [1615] = 1615, [1616] = 1616, - [1617] = 1617, + [1617] = 209, [1618] = 1618, [1619] = 1619, - [1620] = 712, + [1620] = 1620, [1621] = 1621, [1622] = 1622, - [1623] = 1623, - [1624] = 213, + [1623] = 714, + [1624] = 1624, [1625] = 1625, - [1626] = 209, + [1626] = 1626, [1627] = 1627, [1628] = 1628, - [1629] = 1629, + [1629] = 1153, [1630] = 1630, [1631] = 1631, [1632] = 1632, [1633] = 1633, [1634] = 1634, [1635] = 1635, - [1636] = 1152, - [1637] = 1637, + [1636] = 710, + [1637] = 709, [1638] = 1638, [1639] = 1639, [1640] = 1640, @@ -6172,7 +6172,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1647] = 1647, [1648] = 1648, [1649] = 1649, - [1650] = 1160, + [1650] = 1650, [1651] = 1651, [1652] = 1652, [1653] = 1653, @@ -6231,12 +6231,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1706] = 1706, [1707] = 1707, [1708] = 1708, - [1709] = 1709, - [1710] = 240, - [1711] = 241, - [1712] = 1502, + [1709] = 1498, + [1710] = 1710, + [1711] = 240, + [1712] = 241, [1713] = 220, - [1714] = 236, + [1714] = 244, [1715] = 225, [1716] = 240, [1717] = 241, @@ -6251,17 +6251,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1726] = 229, [1727] = 1707, [1728] = 225, - [1729] = 1706, + [1729] = 1729, [1730] = 226, [1731] = 1708, - [1732] = 1509, + [1732] = 1505, [1733] = 1733, - [1734] = 1510, + [1734] = 1511, [1735] = 233, [1736] = 1724, - [1737] = 1506, + [1737] = 1504, [1738] = 1733, - [1739] = 1505, + [1739] = 1508, [1740] = 1724, [1741] = 1741, [1742] = 1742, @@ -6295,10 +6295,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1770] = 220, [1771] = 1771, [1772] = 1733, - [1773] = 1773, + [1773] = 1706, [1774] = 1724, [1775] = 1733, - [1776] = 236, + [1776] = 244, [1777] = 1724, [1778] = 1778, [1779] = 1779, @@ -6309,23 +6309,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1784] = 1780, [1785] = 1785, [1786] = 1786, - [1787] = 1532, - [1788] = 1520, - [1789] = 1744, - [1790] = 1517, + [1787] = 1624, + [1788] = 1525, + [1789] = 1789, + [1790] = 1520, [1791] = 1785, [1792] = 1745, [1793] = 1706, [1794] = 1746, [1795] = 1795, [1796] = 1747, - [1797] = 1645, + [1797] = 1646, [1798] = 1707, [1799] = 1799, [1800] = 1708, [1801] = 977, - [1802] = 1748, - [1803] = 1803, + [1802] = 1802, + [1803] = 1748, [1804] = 1749, [1805] = 1750, [1806] = 1751, @@ -6335,17 +6335,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1810] = 1755, [1811] = 1756, [1812] = 1757, - [1813] = 1813, - [1814] = 1513, - [1815] = 1514, + [1813] = 1744, + [1814] = 1518, + [1815] = 1517, [1816] = 1761, [1817] = 1817, [1818] = 1762, [1819] = 1763, [1820] = 1764, [1821] = 1765, - [1822] = 1522, - [1823] = 1521, + [1822] = 1524, + [1823] = 1526, [1824] = 1824, [1825] = 1785, [1826] = 1778, @@ -6354,7 +6354,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1829] = 1759, [1830] = 1771, [1831] = 1785, - [1832] = 1519, + [1832] = 1523, [1833] = 1512, [1834] = 1817, [1835] = 1785, @@ -6363,7 +6363,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1838] = 1742, [1839] = 1743, [1840] = 1744, - [1841] = 978, + [1841] = 979, [1842] = 1745, [1843] = 1746, [1844] = 1747, @@ -6386,40 +6386,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1861] = 1764, [1862] = 1765, [1863] = 1767, - [1864] = 1645, - [1865] = 1771, + [1864] = 1624, + [1865] = 1646, [1866] = 1817, - [1867] = 1526, + [1867] = 1527, [1868] = 1868, [1869] = 1742, [1870] = 1743, [1871] = 1871, [1872] = 1872, - [1873] = 979, + [1873] = 978, [1874] = 1767, [1875] = 1778, [1876] = 1779, [1877] = 1780, - [1878] = 1532, + [1878] = 1771, [1879] = 1879, - [1880] = 1593, - [1881] = 1594, - [1882] = 1599, - [1883] = 1152, - [1884] = 207, - [1885] = 1885, - [1886] = 1803, + [1880] = 1595, + [1881] = 1596, + [1882] = 1600, + [1883] = 1883, + [1884] = 1802, + [1885] = 1153, + [1886] = 207, [1887] = 1743, [1888] = 1745, [1889] = 1779, [1890] = 1746, [1891] = 1879, [1892] = 1747, - [1893] = 1646, + [1893] = 1638, [1894] = 1780, [1895] = 1748, - [1896] = 1896, - [1897] = 1749, + [1896] = 1749, + [1897] = 1897, [1898] = 1750, [1899] = 1751, [1900] = 1781, @@ -6427,20 +6427,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1902] = 1754, [1903] = 1755, [1904] = 1756, - [1905] = 1648, - [1906] = 1757, + [1905] = 1573, + [1906] = 1906, [1907] = 1588, - [1908] = 1758, - [1909] = 1628, - [1910] = 1595, - [1911] = 1632, - [1912] = 1637, - [1913] = 1759, - [1914] = 1760, - [1915] = 1616, - [1916] = 1916, + [1908] = 1757, + [1909] = 1758, + [1910] = 1599, + [1911] = 1639, + [1912] = 1649, + [1913] = 1597, + [1914] = 1759, + [1915] = 1760, + [1916] = 1601, [1917] = 1879, - [1918] = 1647, + [1918] = 1628, [1919] = 1744, [1920] = 1771, [1921] = 1672, @@ -6451,159 +6451,159 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1926] = 1926, [1927] = 1761, [1928] = 1928, - [1929] = 1614, + [1929] = 1616, [1930] = 1762, - [1931] = 1617, - [1932] = 1706, + [1931] = 1546, + [1932] = 1932, [1933] = 1763, - [1934] = 1532, - [1935] = 1643, - [1936] = 1645, - [1937] = 1592, - [1938] = 1619, - [1939] = 1634, - [1940] = 1940, + [1934] = 1624, + [1935] = 1645, + [1936] = 1646, + [1937] = 1532, + [1938] = 1938, + [1939] = 1706, + [1940] = 1635, [1941] = 710, - [1942] = 1639, - [1943] = 1641, + [1942] = 1641, + [1943] = 1642, [1944] = 1944, [1945] = 1945, [1946] = 1946, [1947] = 1947, [1948] = 1879, - [1949] = 1532, - [1950] = 1645, - [1951] = 1545, - [1952] = 1622, + [1949] = 1624, + [1950] = 1646, + [1951] = 1551, + [1952] = 1529, [1953] = 1879, - [1954] = 1532, - [1955] = 1645, - [1956] = 1709, + [1954] = 1624, + [1955] = 1646, + [1956] = 1710, [1957] = 1651, - [1958] = 1672, - [1959] = 1764, + [1958] = 1764, + [1959] = 1672, [1960] = 1765, - [1961] = 1588, - [1962] = 1962, - [1963] = 1621, + [1961] = 1620, + [1962] = 1588, + [1963] = 1619, [1964] = 1964, - [1965] = 711, - [1966] = 1580, - [1967] = 1587, - [1968] = 1591, - [1969] = 1608, + [1965] = 709, + [1966] = 1643, + [1967] = 1648, + [1968] = 1592, + [1969] = 1552, [1970] = 1970, [1971] = 1971, - [1972] = 1623, - [1973] = 1629, - [1974] = 1618, + [1972] = 1562, + [1973] = 1594, + [1974] = 1614, [1975] = 1741, [1976] = 1625, [1977] = 1977, - [1978] = 1631, - [1979] = 1633, - [1980] = 1643, - [1981] = 1709, - [1982] = 1592, + [1978] = 1622, + [1979] = 1627, + [1980] = 1645, + [1981] = 1710, + [1982] = 1532, [1983] = 1651, - [1984] = 1545, - [1985] = 1535, - [1986] = 1544, - [1987] = 1550, - [1988] = 1551, - [1989] = 1574, - [1990] = 1575, - [1991] = 1597, - [1992] = 1598, - [1993] = 1601, + [1984] = 1551, + [1985] = 1618, + [1986] = 1621, + [1987] = 1630, + [1988] = 1640, + [1989] = 1553, + [1990] = 1574, + [1991] = 1581, + [1992] = 1590, + [1993] = 1593, [1994] = 1602, [1995] = 1995, - [1996] = 1607, - [1997] = 1610, - [1998] = 1611, + [1996] = 1603, + [1997] = 1604, + [1998] = 1605, [1999] = 1162, - [2000] = 1612, + [2000] = 1606, [2001] = 1613, [2002] = 1615, - [2003] = 1885, - [2004] = 1803, - [2005] = 1531, + [2003] = 1883, + [2004] = 1802, + [2005] = 1533, [2006] = 1536, [2007] = 2007, - [2008] = 1541, - [2009] = 1542, - [2010] = 1548, - [2011] = 712, - [2012] = 1627, - [2013] = 1630, - [2014] = 1635, - [2015] = 1638, + [2008] = 1538, + [2009] = 1539, + [2010] = 1542, + [2011] = 714, + [2012] = 1626, + [2013] = 1631, + [2014] = 1632, + [2015] = 1633, [2016] = 2016, - [2017] = 1640, + [2017] = 1634, [2018] = 1644, - [2019] = 1649, - [2020] = 1529, - [2021] = 1532, - [2022] = 1530, - [2023] = 1533, - [2024] = 1534, - [2025] = 1539, - [2026] = 1645, - [2027] = 1642, + [2019] = 1647, + [2020] = 1530, + [2021] = 1624, + [2022] = 1531, + [2023] = 1534, + [2024] = 1535, + [2025] = 1540, + [2026] = 1646, + [2027] = 1580, [2028] = 2028, - [2029] = 1540, - [2030] = 1543, - [2031] = 1622, - [2032] = 1546, - [2033] = 1547, - [2034] = 1553, - [2035] = 1160, - [2036] = 1554, - [2037] = 1555, + [2029] = 1541, + [2030] = 1544, + [2031] = 1529, + [2032] = 1547, + [2033] = 1549, + [2034] = 1554, + [2035] = 1156, + [2036] = 1555, + [2037] = 1556, [2038] = 1964, - [2039] = 1556, + [2039] = 1557, [2040] = 1767, - [2041] = 1552, - [2042] = 1558, - [2043] = 1562, - [2044] = 1563, + [2041] = 1543, + [2042] = 1548, + [2043] = 1550, + [2044] = 1558, [2045] = 1742, - [2046] = 1581, + [2046] = 1563, [2047] = 713, [2048] = 1868, - [2049] = 1559, - [2050] = 1560, - [2051] = 1561, - [2052] = 1564, - [2053] = 1565, - [2054] = 1566, - [2055] = 1567, - [2056] = 1568, - [2057] = 1569, - [2058] = 1528, - [2059] = 1571, - [2060] = 1572, - [2061] = 1573, - [2062] = 1596, - [2063] = 1600, - [2064] = 714, - [2065] = 1577, + [2049] = 1560, + [2050] = 1561, + [2051] = 1564, + [2052] = 1565, + [2053] = 1566, + [2054] = 1567, + [2055] = 1568, + [2056] = 1569, + [2057] = 1570, + [2058] = 1571, + [2059] = 1572, + [2060] = 1528, + [2061] = 1575, + [2062] = 1576, + [2063] = 1577, + [2064] = 712, + [2065] = 1582, [2066] = 1707, [2067] = 2067, [2068] = 2068, - [2069] = 1578, + [2069] = 1583, [2070] = 2070, - [2071] = 1582, + [2071] = 1584, [2072] = 2072, [2073] = 2073, - [2074] = 1583, - [2075] = 1584, + [2074] = 1585, + [2075] = 1586, [2076] = 1708, [2077] = 1879, - [2078] = 1585, - [2079] = 1586, - [2080] = 1589, - [2081] = 1590, + [2078] = 1587, + [2079] = 1589, + [2080] = 1591, + [2081] = 1650, [2082] = 1741, [2083] = 1742, [2084] = 1743, @@ -6637,125 +6637,125 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2112] = 1537, [2113] = 2113, [2114] = 1666, - [2115] = 1661, - [2116] = 2116, - [2117] = 1691, - [2118] = 218, - [2119] = 2119, - [2120] = 1673, - [2121] = 1674, - [2122] = 2122, + [2115] = 1588, + [2116] = 1661, + [2117] = 2117, + [2118] = 1691, + [2119] = 243, + [2120] = 2120, + [2121] = 1673, + [2122] = 1674, [2123] = 2123, - [2124] = 1813, - [2125] = 1704, + [2124] = 2124, + [2125] = 1789, [2126] = 1651, [2127] = 1675, - [2128] = 2128, - [2129] = 221, - [2130] = 1652, + [2128] = 1704, + [2129] = 2129, + [2130] = 221, [2131] = 1705, [2132] = 223, - [2133] = 224, - [2134] = 1676, + [2133] = 1676, + [2134] = 224, [2135] = 2135, - [2136] = 2136, - [2137] = 1677, + [2136] = 1677, + [2137] = 2137, [2138] = 2138, [2139] = 2139, - [2140] = 2140, + [2140] = 1710, [2141] = 1678, - [2142] = 1709, + [2142] = 2142, [2143] = 2143, - [2144] = 2144, - [2145] = 1651, + [2144] = 1651, + [2145] = 2145, [2146] = 2146, - [2147] = 2147, - [2148] = 2138, - [2149] = 2149, - [2150] = 2140, + [2147] = 2137, + [2148] = 1667, + [2149] = 2139, + [2150] = 2150, [2151] = 2151, [2152] = 2152, - [2153] = 1545, - [2154] = 1622, - [2155] = 2155, - [2156] = 2151, - [2157] = 2152, - [2158] = 1532, - [2159] = 1645, - [2160] = 1667, - [2161] = 1532, - [2162] = 1645, - [2163] = 2151, - [2164] = 2152, + [2153] = 1668, + [2154] = 1551, + [2155] = 1529, + [2156] = 2156, + [2157] = 2150, + [2158] = 2151, + [2159] = 2159, + [2160] = 1624, + [2161] = 1646, + [2162] = 1624, + [2163] = 1646, + [2164] = 2150, [2165] = 2151, - [2166] = 2152, - [2167] = 1668, - [2168] = 2151, - [2169] = 2152, - [2170] = 1896, - [2171] = 1662, - [2172] = 1654, + [2166] = 2150, + [2167] = 2151, + [2168] = 2150, + [2169] = 2151, + [2170] = 1652, + [2171] = 1897, + [2172] = 1824, [2173] = 1655, - [2174] = 2174, + [2174] = 1662, [2175] = 2175, - [2176] = 1824, - [2177] = 2136, - [2178] = 2178, + [2176] = 2176, + [2177] = 1654, + [2178] = 2138, [2179] = 2179, [2180] = 2180, - [2181] = 1741, - [2182] = 2182, - [2183] = 1742, - [2184] = 1743, - [2185] = 1744, - [2186] = 1679, - [2187] = 2187, - [2188] = 1656, - [2189] = 1745, - [2190] = 1746, - [2191] = 1747, - [2192] = 2192, - [2193] = 1748, - [2194] = 2194, - [2195] = 1749, - [2196] = 1750, - [2197] = 1751, - [2198] = 1781, - [2199] = 1753, - [2200] = 1754, - [2201] = 1755, - [2202] = 1756, - [2203] = 1757, - [2204] = 1758, - [2205] = 1759, - [2206] = 1760, - [2207] = 1761, - [2208] = 1762, - [2209] = 1763, - [2210] = 1764, - [2211] = 1765, - [2212] = 2212, + [2181] = 2181, + [2182] = 1741, + [2183] = 2183, + [2184] = 1742, + [2185] = 1743, + [2186] = 1744, + [2187] = 1679, + [2188] = 2188, + [2189] = 1656, + [2190] = 1745, + [2191] = 1746, + [2192] = 1747, + [2193] = 2193, + [2194] = 1748, + [2195] = 2195, + [2196] = 1749, + [2197] = 1750, + [2198] = 1751, + [2199] = 1781, + [2200] = 1753, + [2201] = 1754, + [2202] = 1755, + [2203] = 1756, + [2204] = 1757, + [2205] = 1758, + [2206] = 1759, + [2207] = 1760, + [2208] = 1761, + [2209] = 1762, + [2210] = 1763, + [2211] = 1764, + [2212] = 1765, [2213] = 2213, [2214] = 2214, - [2215] = 1767, - [2216] = 217, - [2217] = 232, - [2218] = 2218, + [2215] = 2215, + [2216] = 1767, + [2217] = 217, + [2218] = 232, [2219] = 2219, [2220] = 2220, - [2221] = 1868, - [2222] = 1663, + [2221] = 2221, + [2222] = 2222, [2223] = 235, - [2224] = 2224, - [2225] = 1653, + [2224] = 1868, + [2225] = 1663, [2226] = 2226, [2227] = 2227, [2228] = 2228, [2229] = 2229, [2230] = 2230, [2231] = 2231, - [2232] = 237, - [2233] = 2233, + [2232] = 1710, + [2233] = 236, [2234] = 1681, [2235] = 1682, [2236] = 2236, @@ -6763,433 +6763,433 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2238] = 1684, [2239] = 1685, [2240] = 1686, - [2241] = 2192, + [2241] = 2193, [2242] = 1687, - [2243] = 219, - [2244] = 230, - [2245] = 1688, + [2243] = 2243, + [2244] = 1688, + [2245] = 237, [2246] = 2246, [2247] = 2247, - [2248] = 2192, + [2248] = 230, [2249] = 1868, - [2250] = 1643, - [2251] = 2192, - [2252] = 1592, - [2253] = 1651, - [2254] = 1658, - [2255] = 1709, - [2256] = 2192, + [2250] = 1657, + [2251] = 1645, + [2252] = 2193, + [2253] = 1532, + [2254] = 1651, + [2255] = 1658, + [2256] = 2193, [2257] = 2257, - [2258] = 2192, + [2258] = 2193, [2259] = 1778, [2260] = 1779, [2261] = 1780, [2262] = 1771, - [2263] = 238, - [2264] = 2264, - [2265] = 2214, + [2263] = 1653, + [2264] = 238, + [2265] = 2215, [2266] = 1690, - [2267] = 2138, - [2268] = 2140, - [2269] = 228, - [2270] = 1803, - [2271] = 1672, - [2272] = 2138, + [2267] = 2267, + [2268] = 2137, + [2269] = 2139, + [2270] = 228, + [2271] = 1802, + [2272] = 1672, [2273] = 1723, - [2274] = 2212, - [2275] = 2140, - [2276] = 219, - [2277] = 230, - [2278] = 238, + [2274] = 2213, + [2275] = 2137, + [2276] = 2139, + [2277] = 237, + [2278] = 230, [2279] = 1692, [2280] = 2280, [2281] = 2281, [2282] = 2282, - [2283] = 2283, + [2283] = 238, [2284] = 2284, [2285] = 2285, - [2286] = 2149, - [2287] = 2174, - [2288] = 218, - [2289] = 221, - [2290] = 223, + [2286] = 2286, + [2287] = 2159, + [2288] = 2176, + [2289] = 243, + [2290] = 221, [2291] = 1693, [2292] = 1694, [2293] = 1695, [2294] = 1696, - [2295] = 224, + [2295] = 223, [2296] = 1659, - [2297] = 2297, + [2297] = 224, [2298] = 2298, [2299] = 2299, - [2300] = 2281, - [2301] = 2301, + [2300] = 2300, + [2301] = 2281, [2302] = 2302, [2303] = 2303, [2304] = 2304, [2305] = 2305, - [2306] = 217, - [2307] = 2282, - [2308] = 2308, - [2309] = 1868, - [2310] = 2310, - [2311] = 232, - [2312] = 235, - [2313] = 237, - [2314] = 2314, - [2315] = 1697, - [2316] = 2316, + [2306] = 2306, + [2307] = 217, + [2308] = 2282, + [2309] = 2309, + [2310] = 1868, + [2311] = 2311, + [2312] = 232, + [2313] = 235, + [2314] = 236, + [2315] = 2315, + [2316] = 1697, [2317] = 2317, [2318] = 2318, [2319] = 2319, - [2320] = 1669, - [2321] = 2321, + [2320] = 2320, + [2321] = 1669, [2322] = 2322, [2323] = 2323, [2324] = 2324, - [2325] = 1670, - [2326] = 1660, - [2327] = 1698, - [2328] = 2128, - [2329] = 1699, - [2330] = 1700, - [2331] = 1701, - [2332] = 1702, - [2333] = 1703, - [2334] = 2138, - [2335] = 2140, + [2325] = 2325, + [2326] = 1670, + [2327] = 1660, + [2328] = 1698, + [2329] = 2129, + [2330] = 1699, + [2331] = 1700, + [2332] = 1701, + [2333] = 1702, + [2334] = 1703, + [2335] = 2137, [2336] = 2336, - [2337] = 2283, - [2338] = 2284, - [2339] = 2339, - [2340] = 1588, - [2341] = 2175, - [2342] = 2301, - [2343] = 2285, - [2344] = 228, - [2345] = 2138, - [2346] = 2140, - [2347] = 2192, - [2348] = 1824, - [2349] = 2349, - [2350] = 1671, - [2351] = 1709, - [2352] = 2352, + [2337] = 2139, + [2338] = 2338, + [2339] = 2284, + [2340] = 2285, + [2341] = 2341, + [2342] = 2175, + [2343] = 2302, + [2344] = 2286, + [2345] = 2137, + [2346] = 228, + [2347] = 2139, + [2348] = 2193, + [2349] = 1824, + [2350] = 2350, + [2351] = 1671, + [2352] = 1710, [2353] = 2257, [2354] = 1795, - [2355] = 2194, + [2355] = 2195, [2356] = 1665, [2357] = 2357, [2358] = 2358, [2359] = 1588, [2360] = 2360, - [2361] = 2233, - [2362] = 1657, - [2363] = 1764, - [2364] = 1741, - [2365] = 1742, - [2366] = 1743, - [2367] = 1744, - [2368] = 1745, - [2369] = 1746, - [2370] = 1747, - [2371] = 1748, - [2372] = 1749, - [2373] = 1750, - [2374] = 1751, - [2375] = 1781, - [2376] = 1753, - [2377] = 1754, - [2378] = 1755, - [2379] = 1756, - [2380] = 1757, - [2381] = 1758, - [2382] = 1759, - [2383] = 1760, - [2384] = 1761, - [2385] = 1762, - [2386] = 1763, - [2387] = 1765, - [2388] = 1767, - [2389] = 1592, - [2390] = 239, - [2391] = 1741, - [2392] = 1742, - [2393] = 1743, - [2394] = 1744, - [2395] = 1745, - [2396] = 1746, - [2397] = 1747, - [2398] = 1748, - [2399] = 1749, - [2400] = 1750, - [2401] = 1751, - [2402] = 1781, - [2403] = 1753, - [2404] = 1754, - [2405] = 1755, - [2406] = 1756, - [2407] = 1757, - [2408] = 1758, - [2409] = 1759, - [2410] = 1760, - [2411] = 1761, - [2412] = 1762, - [2413] = 1763, - [2414] = 1764, - [2415] = 1765, - [2416] = 1767, - [2417] = 2417, - [2418] = 2418, - [2419] = 2419, - [2420] = 2420, + [2361] = 2236, + [2362] = 2193, + [2363] = 2363, + [2364] = 1532, + [2365] = 2365, + [2366] = 2366, + [2367] = 1741, + [2368] = 1742, + [2369] = 1743, + [2370] = 1744, + [2371] = 1745, + [2372] = 1746, + [2373] = 1747, + [2374] = 1748, + [2375] = 1749, + [2376] = 1750, + [2377] = 1751, + [2378] = 1781, + [2379] = 1753, + [2380] = 1754, + [2381] = 1755, + [2382] = 1756, + [2383] = 1757, + [2384] = 1758, + [2385] = 1759, + [2386] = 1760, + [2387] = 1761, + [2388] = 1762, + [2389] = 1763, + [2390] = 1764, + [2391] = 1765, + [2392] = 1767, + [2393] = 2393, + [2394] = 1741, + [2395] = 1742, + [2396] = 1743, + [2397] = 1744, + [2398] = 1745, + [2399] = 1746, + [2400] = 1747, + [2401] = 1748, + [2402] = 1749, + [2403] = 1750, + [2404] = 1751, + [2405] = 1781, + [2406] = 1753, + [2407] = 1754, + [2408] = 1755, + [2409] = 1756, + [2410] = 1757, + [2411] = 1758, + [2412] = 1759, + [2413] = 1760, + [2414] = 1761, + [2415] = 1762, + [2416] = 1763, + [2417] = 1764, + [2418] = 1765, + [2419] = 1767, + [2420] = 239, [2421] = 2421, - [2422] = 2323, - [2423] = 2423, - [2424] = 1709, - [2425] = 1672, + [2422] = 2422, + [2423] = 1710, + [2424] = 2424, + [2425] = 2324, [2426] = 2426, - [2427] = 2427, - [2428] = 2423, + [2427] = 1672, + [2428] = 1651, [2429] = 2429, - [2430] = 2419, - [2431] = 1651, + [2430] = 2421, + [2431] = 2431, [2432] = 1824, - [2433] = 2417, + [2433] = 2393, [2434] = 2434, [2435] = 1707, - [2436] = 2419, - [2437] = 2437, - [2438] = 1545, - [2439] = 2439, - [2440] = 2440, - [2441] = 2441, - [2442] = 2434, + [2436] = 2436, + [2437] = 1706, + [2438] = 1707, + [2439] = 2426, + [2440] = 1795, + [2441] = 1551, + [2442] = 2442, [2443] = 2443, - [2444] = 1622, + [2444] = 2434, [2445] = 2445, [2446] = 2446, [2447] = 2447, - [2448] = 2448, - [2449] = 1706, - [2450] = 1778, - [2451] = 1643, - [2452] = 1780, - [2453] = 1771, - [2454] = 1707, - [2455] = 2455, + [2448] = 1529, + [2449] = 2449, + [2450] = 2450, + [2451] = 1868, + [2452] = 1778, + [2453] = 1779, + [2454] = 1780, + [2455] = 1771, [2456] = 2456, [2457] = 2457, - [2458] = 1778, - [2459] = 1779, - [2460] = 1780, - [2461] = 1771, - [2462] = 2462, - [2463] = 1708, - [2464] = 1532, - [2465] = 1799, - [2466] = 1645, - [2467] = 2467, - [2468] = 1622, - [2469] = 2469, - [2470] = 239, - [2471] = 2419, - [2472] = 1896, + [2458] = 2458, + [2459] = 2459, + [2460] = 2460, + [2461] = 2461, + [2462] = 1778, + [2463] = 1779, + [2464] = 1780, + [2465] = 1771, + [2466] = 1529, + [2467] = 1624, + [2468] = 2421, + [2469] = 1646, + [2470] = 1799, + [2471] = 2421, + [2472] = 2472, [2473] = 2473, [2474] = 2474, - [2475] = 2475, - [2476] = 2476, - [2477] = 2419, - [2478] = 2420, - [2479] = 2455, - [2480] = 1813, - [2481] = 2481, - [2482] = 1868, - [2483] = 2419, - [2484] = 2481, - [2485] = 2485, - [2486] = 1896, - [2487] = 1868, - [2488] = 2488, - [2489] = 1795, - [2490] = 1741, - [2491] = 1742, - [2492] = 1743, - [2493] = 1744, - [2494] = 1745, - [2495] = 1746, - [2496] = 1747, - [2497] = 1748, - [2498] = 1749, - [2499] = 1750, - [2500] = 1751, - [2501] = 1781, - [2502] = 1753, - [2503] = 1754, - [2504] = 1755, - [2505] = 1756, - [2506] = 1757, - [2507] = 1758, - [2508] = 1759, - [2509] = 1760, - [2510] = 1761, - [2511] = 1762, - [2512] = 1763, - [2513] = 1764, - [2514] = 1765, - [2515] = 1767, - [2516] = 1545, - [2517] = 1588, - [2518] = 1778, - [2519] = 1779, - [2520] = 1780, - [2521] = 1771, - [2522] = 2522, - [2523] = 2473, - [2524] = 1672, - [2525] = 1868, - [2526] = 1588, - [2527] = 1868, - [2528] = 1779, + [2475] = 1897, + [2476] = 2365, + [2477] = 2477, + [2478] = 2478, + [2479] = 2479, + [2480] = 2456, + [2481] = 2421, + [2482] = 2457, + [2483] = 2483, + [2484] = 1789, + [2485] = 1868, + [2486] = 2421, + [2487] = 239, + [2488] = 1868, + [2489] = 2483, + [2490] = 1645, + [2491] = 1741, + [2492] = 1742, + [2493] = 1743, + [2494] = 1744, + [2495] = 1745, + [2496] = 1746, + [2497] = 1747, + [2498] = 1748, + [2499] = 1749, + [2500] = 1750, + [2501] = 1751, + [2502] = 1781, + [2503] = 1753, + [2504] = 1754, + [2505] = 1755, + [2506] = 1756, + [2507] = 1757, + [2508] = 1758, + [2509] = 1759, + [2510] = 1760, + [2511] = 1761, + [2512] = 1762, + [2513] = 1763, + [2514] = 1764, + [2515] = 1765, + [2516] = 1767, + [2517] = 1551, + [2518] = 1588, + [2519] = 1778, + [2520] = 1779, + [2521] = 1780, + [2522] = 1771, + [2523] = 2523, + [2524] = 1897, + [2525] = 1672, + [2526] = 1868, + [2527] = 1588, + [2528] = 1708, [2529] = 1757, [2530] = 2530, - [2531] = 2531, + [2531] = 1529, [2532] = 2532, [2533] = 2533, - [2534] = 1545, - [2535] = 2535, + [2534] = 1742, + [2535] = 1743, [2536] = 2536, - [2537] = 2537, + [2537] = 1744, [2538] = 2538, - [2539] = 1622, + [2539] = 1745, [2540] = 2540, [2541] = 2541, - [2542] = 2542, - [2543] = 1778, - [2544] = 1779, - [2545] = 1780, - [2546] = 1771, - [2547] = 1709, - [2548] = 2548, - [2549] = 2549, - [2550] = 1741, - [2551] = 2551, - [2552] = 2552, - [2553] = 2538, - [2554] = 1742, - [2555] = 1743, - [2556] = 1744, - [2557] = 1745, - [2558] = 1746, - [2559] = 2559, - [2560] = 1747, - [2561] = 1748, - [2562] = 2562, - [2563] = 1749, - [2564] = 1651, - [2565] = 2538, - [2566] = 1750, - [2567] = 1751, - [2568] = 1781, - [2569] = 1753, - [2570] = 1754, - [2571] = 1755, - [2572] = 2538, - [2573] = 2573, - [2574] = 1707, - [2575] = 2538, - [2576] = 1708, - [2577] = 1756, - [2578] = 1758, - [2579] = 2538, - [2580] = 1759, - [2581] = 2538, - [2582] = 1588, - [2583] = 2583, - [2584] = 2584, - [2585] = 2585, - [2586] = 1760, - [2587] = 1813, - [2588] = 1761, - [2589] = 2538, + [2542] = 1746, + [2543] = 2543, + [2544] = 2544, + [2545] = 2545, + [2546] = 1710, + [2547] = 1778, + [2548] = 1779, + [2549] = 1780, + [2550] = 1771, + [2551] = 1747, + [2552] = 1748, + [2553] = 2553, + [2554] = 2554, + [2555] = 1749, + [2556] = 2556, + [2557] = 2557, + [2558] = 2541, + [2559] = 1750, + [2560] = 1751, + [2561] = 1781, + [2562] = 1753, + [2563] = 1754, + [2564] = 1755, + [2565] = 2565, + [2566] = 1651, + [2567] = 1756, + [2568] = 2568, + [2569] = 1758, + [2570] = 2541, + [2571] = 1759, + [2572] = 1760, + [2573] = 1707, + [2574] = 1708, + [2575] = 1761, + [2576] = 2541, + [2577] = 1762, + [2578] = 1763, + [2579] = 2541, + [2580] = 1764, + [2581] = 977, + [2582] = 1765, + [2583] = 2541, + [2584] = 1767, + [2585] = 1789, + [2586] = 2586, + [2587] = 2587, + [2588] = 1588, + [2589] = 2589, [2590] = 2590, [2591] = 2591, - [2592] = 977, - [2593] = 1896, - [2594] = 1762, - [2595] = 1763, - [2596] = 2538, + [2592] = 2541, + [2593] = 2593, + [2594] = 2594, + [2595] = 1897, + [2596] = 2596, [2597] = 1672, - [2598] = 1764, - [2599] = 2599, - [2600] = 2600, - [2601] = 2601, - [2602] = 978, - [2603] = 1868, - [2604] = 979, - [2605] = 2600, - [2606] = 1672, - [2607] = 1765, - [2608] = 1767, - [2609] = 2609, - [2610] = 2538, + [2598] = 2541, + [2599] = 979, + [2600] = 1706, + [2601] = 978, + [2602] = 1868, + [2603] = 2603, + [2604] = 2603, + [2605] = 1672, + [2606] = 1741, + [2607] = 2607, + [2608] = 2541, + [2609] = 1551, + [2610] = 2610, [2611] = 2611, - [2612] = 1706, - [2613] = 2613, + [2612] = 2541, + [2613] = 2477, [2614] = 2614, - [2615] = 2615, - [2616] = 2616, + [2615] = 2151, + [2616] = 2150, [2617] = 2617, - [2618] = 2151, - [2619] = 2151, - [2620] = 2152, - [2621] = 2151, - [2622] = 2152, - [2623] = 2623, - [2624] = 2624, - [2625] = 2475, + [2618] = 2618, + [2619] = 2619, + [2620] = 2151, + [2621] = 2621, + [2622] = 2150, + [2623] = 2150, + [2624] = 2151, + [2625] = 2151, [2626] = 2626, [2627] = 2627, - [2628] = 2152, + [2628] = 2628, [2629] = 2629, - [2630] = 2152, - [2631] = 1824, - [2632] = 2632, - [2633] = 2633, - [2634] = 2151, - [2635] = 2152, - [2636] = 2636, - [2637] = 2637, - [2638] = 2615, + [2630] = 1824, + [2631] = 2631, + [2632] = 2150, + [2633] = 2151, + [2634] = 2634, + [2635] = 2635, + [2636] = 2150, + [2637] = 2151, + [2638] = 2638, [2639] = 2639, [2640] = 2640, - [2641] = 2151, + [2641] = 2641, [2642] = 2642, - [2643] = 2643, + [2643] = 2638, [2644] = 2644, [2645] = 2645, [2646] = 1588, [2647] = 2647, [2648] = 1588, [2649] = 1588, - [2650] = 2152, - [2651] = 2151, + [2650] = 2150, + [2651] = 2651, [2652] = 2652, [2653] = 2653, - [2654] = 2654, - [2655] = 226, + [2654] = 226, + [2655] = 2655, [2656] = 2656, - [2657] = 226, + [2657] = 2657, [2658] = 2658, [2659] = 2659, - [2660] = 2654, - [2661] = 2661, - [2662] = 229, - [2663] = 1299, - [2664] = 2664, - [2665] = 2654, - [2666] = 2654, - [2667] = 2654, + [2660] = 2653, + [2661] = 2653, + [2662] = 2653, + [2663] = 2663, + [2664] = 2653, + [2665] = 2665, + [2666] = 2653, + [2667] = 2667, [2668] = 2668, [2669] = 2669, [2670] = 2670, @@ -7201,143 +7201,143 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2676] = 2676, [2677] = 2677, [2678] = 2678, - [2679] = 2654, + [2679] = 2679, [2680] = 2680, - [2681] = 2681, + [2681] = 229, [2682] = 2682, [2683] = 2683, [2684] = 2684, [2685] = 2685, - [2686] = 1621, + [2686] = 1243, [2687] = 2687, [2688] = 2688, - [2689] = 2689, + [2689] = 1281, [2690] = 2690, - [2691] = 2691, + [2691] = 225, [2692] = 2692, [2693] = 2693, - [2694] = 225, + [2694] = 2694, [2695] = 229, [2696] = 2696, [2697] = 2697, - [2698] = 2698, + [2698] = 233, [2699] = 2699, - [2700] = 2654, - [2701] = 233, + [2700] = 2700, + [2701] = 2701, [2702] = 2702, [2703] = 2703, [2704] = 2704, - [2705] = 2705, - [2706] = 2654, - [2707] = 2707, - [2708] = 1247, + [2705] = 2653, + [2706] = 2653, + [2707] = 2653, + [2708] = 2708, [2709] = 2709, - [2710] = 2710, + [2710] = 1619, [2711] = 2711, - [2712] = 2712, - [2713] = 2654, - [2714] = 2654, + [2712] = 226, + [2713] = 2713, + [2714] = 2714, [2715] = 2715, [2716] = 2716, - [2717] = 2717, + [2717] = 2653, [2718] = 2718, - [2719] = 2535, - [2720] = 1642, + [2719] = 2719, + [2720] = 1580, [2721] = 2721, [2722] = 2722, [2723] = 2723, - [2724] = 2533, - [2725] = 2725, - [2726] = 233, - [2727] = 225, + [2724] = 2724, + [2725] = 2610, + [2726] = 2607, + [2727] = 2727, [2728] = 2728, - [2729] = 2729, - [2730] = 2730, - [2731] = 2264, + [2729] = 225, + [2730] = 233, + [2731] = 2731, [2732] = 2732, [2733] = 2733, - [2734] = 2734, - [2735] = 2220, + [2734] = 2267, + [2735] = 2735, [2736] = 2736, - [2737] = 2231, - [2738] = 2738, - [2739] = 2122, + [2737] = 2737, + [2738] = 2123, + [2739] = 2220, [2740] = 2740, - [2741] = 2741, + [2741] = 2231, [2742] = 2742, - [2743] = 2462, + [2743] = 2461, [2744] = 2744, - [2745] = 2473, + [2745] = 2365, [2746] = 2746, - [2747] = 2429, - [2748] = 1262, - [2749] = 2488, + [2747] = 2431, + [2748] = 1275, + [2749] = 2523, [2750] = 2750, [2751] = 2751, - [2752] = 2474, - [2753] = 2753, - [2754] = 2473, - [2755] = 2455, - [2756] = 2481, + [2752] = 2478, + [2753] = 2365, + [2754] = 2456, + [2755] = 2457, + [2756] = 2483, [2757] = 2750, - [2758] = 2485, - [2759] = 2420, - [2760] = 2437, - [2761] = 2761, - [2762] = 2418, - [2763] = 2481, - [2764] = 2426, - [2765] = 2447, - [2766] = 2455, - [2767] = 2426, - [2768] = 2474, - [2769] = 2485, - [2770] = 2447, + [2758] = 2366, + [2759] = 2456, + [2760] = 2460, + [2761] = 2483, + [2762] = 2762, + [2763] = 2422, + [2764] = 2429, + [2765] = 2449, + [2766] = 2457, + [2767] = 2429, + [2768] = 2478, + [2769] = 2366, + [2770] = 2449, [2771] = 2751, - [2772] = 2420, + [2772] = 2772, [2773] = 2773, - [2774] = 2774, + [2774] = 2773, [2775] = 2775, [2776] = 2776, [2777] = 2777, [2778] = 2778, - [2779] = 2775, - [2780] = 2776, + [2779] = 2777, + [2780] = 2780, [2781] = 2781, [2782] = 2782, [2783] = 2783, - [2784] = 2778, + [2784] = 2784, [2785] = 2785, - [2786] = 2778, - [2787] = 2787, - [2788] = 2785, - [2789] = 2774, - [2790] = 2777, - [2791] = 2791, - [2792] = 2791, - [2793] = 2793, + [2786] = 2786, + [2787] = 2783, + [2788] = 2781, + [2789] = 2782, + [2790] = 2775, + [2791] = 2778, + [2792] = 2783, + [2793] = 1301, [2794] = 2794, - [2795] = 2795, - [2796] = 1284, + [2795] = 1283, + [2796] = 1271, [2797] = 2797, [2798] = 2798, [2799] = 2799, [2800] = 2800, [2801] = 2801, - [2802] = 1266, - [2803] = 2427, - [2804] = 2804, + [2802] = 2802, + [2803] = 2803, + [2804] = 1256, [2805] = 2805, [2806] = 2806, [2807] = 2807, - [2808] = 1297, + [2808] = 2808, [2809] = 2809, [2810] = 2810, - [2811] = 1286, - [2812] = 1253, - [2813] = 2813, + [2811] = 2811, + [2812] = 2812, + [2813] = 2363, [2814] = 2814, - [2815] = 2815, + [2815] = 1285, [2816] = 2816, [2817] = 2817, [2818] = 2818, @@ -7349,19 +7349,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2824] = 2824, [2825] = 2825, [2826] = 2826, - [2827] = 2823, + [2827] = 2827, [2828] = 2828, [2829] = 2829, [2830] = 2830, - [2831] = 2818, + [2831] = 2831, [2832] = 2832, [2833] = 2833, [2834] = 2834, - [2835] = 2835, - [2836] = 2828, + [2835] = 2825, + [2836] = 2820, [2837] = 2837, [2838] = 2838, - [2839] = 2839, + [2839] = 2829, [2840] = 2840, [2841] = 2841, [2842] = 2842, @@ -7375,19 +7375,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2850] = 2850, [2851] = 2851, [2852] = 2852, - [2853] = 2839, + [2853] = 2831, [2854] = 2854, - [2855] = 2850, - [2856] = 2830, - [2857] = 2857, - [2858] = 2824, - [2859] = 2826, - [2860] = 2835, - [2861] = 2834, - [2862] = 2851, - [2863] = 2863, - [2864] = 2819, - [2865] = 2865, + [2855] = 2855, + [2856] = 2856, + [2857] = 2832, + [2858] = 2823, + [2859] = 2852, + [2860] = 2826, + [2861] = 2861, + [2862] = 2821, + [2863] = 2833, + [2864] = 2855, + [2865] = 2848, [2866] = 2866, [2867] = 2867, [2868] = 2868, @@ -7402,638 +7402,638 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2877] = 2877, [2878] = 2878, [2879] = 2879, - [2880] = 1505, - [2881] = 1509, - [2882] = 1506, - [2883] = 1640, - [2884] = 1638, - [2885] = 1644, - [2886] = 1649, - [2887] = 1529, - [2888] = 1530, - [2889] = 1533, - [2890] = 1534, - [2891] = 1539, - [2892] = 1540, - [2893] = 1543, - [2894] = 1578, + [2880] = 1504, + [2881] = 1505, + [2882] = 1508, + [2883] = 1634, + [2884] = 1644, + [2885] = 1647, + [2886] = 1530, + [2887] = 1531, + [2888] = 1534, + [2889] = 1535, + [2890] = 1540, + [2891] = 1541, + [2892] = 1544, + [2893] = 1571, + [2894] = 1595, [2895] = 1569, - [2896] = 1590, - [2897] = 1593, - [2898] = 1567, - [2899] = 1582, - [2900] = 1635, + [2896] = 1570, + [2897] = 1589, + [2898] = 1586, + [2899] = 1591, + [2900] = 1582, [2901] = 1583, - [2902] = 1584, - [2903] = 1568, - [2904] = 1585, - [2905] = 1559, - [2906] = 1560, - [2907] = 1577, - [2908] = 1561, - [2909] = 1564, - [2910] = 1565, - [2911] = 1586, - [2912] = 1589, - [2913] = 1566, - [2914] = 1627, - [2915] = 1630, - [2916] = 1528, - [2917] = 243, - [2918] = 244, - [2919] = 1580, - [2920] = 1510, - [2921] = 1607, - [2922] = 1623, - [2923] = 1610, - [2924] = 1631, - [2925] = 1611, - [2926] = 1505, - [2927] = 1618, - [2928] = 2928, - [2929] = 1575, - [2930] = 1551, - [2931] = 1506, - [2932] = 1597, - [2933] = 1574, - [2934] = 1517, - [2935] = 1591, - [2936] = 1602, - [2937] = 1509, - [2938] = 1600, - [2939] = 1522, - [2940] = 1581, - [2941] = 1521, - [2942] = 1526, - [2943] = 1520, - [2944] = 1648, - [2945] = 2945, - [2946] = 1590, - [2947] = 1593, - [2948] = 1596, - [2949] = 2949, - [2950] = 2950, - [2951] = 2945, - [2952] = 2952, - [2953] = 1614, - [2954] = 1587, - [2955] = 1509, - [2956] = 1506, - [2957] = 1505, - [2958] = 2958, - [2959] = 2949, - [2960] = 2950, - [2961] = 2952, - [2962] = 1558, - [2963] = 1627, - [2964] = 1608, - [2965] = 1630, - [2966] = 1629, - [2967] = 1635, - [2968] = 1638, - [2969] = 2958, - [2970] = 1640, - [2971] = 1644, - [2972] = 1649, - [2973] = 1529, - [2974] = 1628, - [2975] = 1530, - [2976] = 1533, - [2977] = 2949, - [2978] = 2950, - [2979] = 2945, - [2980] = 2952, - [2981] = 1534, - [2982] = 1539, - [2983] = 1540, - [2984] = 2958, - [2985] = 1633, - [2986] = 1543, - [2987] = 2949, - [2988] = 2950, - [2989] = 2945, - [2990] = 2952, - [2991] = 1594, - [2992] = 2949, - [2993] = 1563, - [2994] = 2950, - [2995] = 1548, - [2996] = 2945, - [2997] = 1571, - [2998] = 1572, - [2999] = 2952, - [3000] = 1542, - [3001] = 2958, - [3002] = 1546, - [3003] = 1547, - [3004] = 1554, - [3005] = 1555, - [3006] = 2958, - [3007] = 1559, - [3008] = 1560, - [3009] = 1561, - [3010] = 2958, - [3011] = 1564, - [3012] = 2958, - [3013] = 1619, - [3014] = 1595, - [3015] = 1625, - [3016] = 1535, - [3017] = 1544, - [3018] = 1616, - [3019] = 1565, - [3020] = 1550, - [3021] = 1566, - [3022] = 1567, - [3023] = 1568, - [3024] = 1569, - [3025] = 1598, - [3026] = 1528, - [3027] = 1510, - [3028] = 1577, - [3029] = 1531, - [3030] = 1612, - [3031] = 1647, - [3032] = 1536, - [3033] = 2958, - [3034] = 1578, - [3035] = 1615, - [3036] = 2958, - [3037] = 2958, - [3038] = 1582, - [3039] = 1583, - [3040] = 1584, - [3041] = 1541, - [3042] = 1634, - [3043] = 1585, - [3044] = 1586, - [3045] = 1589, - [3046] = 1573, + [2902] = 1587, + [2903] = 1560, + [2904] = 1561, + [2905] = 1564, + [2906] = 1565, + [2907] = 1566, + [2908] = 1584, + [2909] = 1567, + [2910] = 1650, + [2911] = 1626, + [2912] = 1585, + [2913] = 1631, + [2914] = 1632, + [2915] = 1633, + [2916] = 1568, + [2917] = 219, + [2918] = 218, + [2919] = 1603, + [2920] = 1581, + [2921] = 1574, + [2922] = 1562, + [2923] = 1602, + [2924] = 1640, + [2925] = 1622, + [2926] = 1520, + [2927] = 1592, + [2928] = 1511, + [2929] = 1553, + [2930] = 1605, + [2931] = 2931, + [2932] = 1614, + [2933] = 1604, + [2934] = 1505, + [2935] = 1504, + [2936] = 1643, + [2937] = 1508, + [2938] = 1527, + [2939] = 1573, + [2940] = 1525, + [2941] = 1563, + [2942] = 1577, + [2943] = 1524, + [2944] = 1526, + [2945] = 1558, + [2946] = 1528, + [2947] = 1575, + [2948] = 1548, + [2949] = 1620, + [2950] = 1625, + [2951] = 1618, + [2952] = 1621, + [2953] = 1630, + [2954] = 1590, + [2955] = 1606, + [2956] = 1626, + [2957] = 1631, + [2958] = 1632, + [2959] = 1615, + [2960] = 1633, + [2961] = 1599, + [2962] = 1634, + [2963] = 1635, + [2964] = 1644, + [2965] = 1647, + [2966] = 1530, + [2967] = 1531, + [2968] = 1534, + [2969] = 1535, + [2970] = 1540, + [2971] = 1597, + [2972] = 1541, + [2973] = 1544, + [2974] = 2974, + [2975] = 2975, + [2976] = 2976, + [2977] = 2977, + [2978] = 1511, + [2979] = 1505, + [2980] = 1504, + [2981] = 1508, + [2982] = 2982, + [2983] = 2974, + [2984] = 2975, + [2985] = 2976, + [2986] = 2977, + [2987] = 1601, + [2988] = 1560, + [2989] = 1561, + [2990] = 1564, + [2991] = 1565, + [2992] = 1566, + [2993] = 2982, + [2994] = 1567, + [2995] = 1568, + [2996] = 1569, + [2997] = 1572, + [2998] = 1628, + [2999] = 2974, + [3000] = 2975, + [3001] = 2976, + [3002] = 2977, + [3003] = 1571, + [3004] = 2982, + [3005] = 2974, + [3006] = 2975, + [3007] = 2976, + [3008] = 2977, + [3009] = 2974, + [3010] = 1582, + [3011] = 1583, + [3012] = 2975, + [3013] = 1584, + [3014] = 1585, + [3015] = 1586, + [3016] = 1587, + [3017] = 2976, + [3018] = 1589, + [3019] = 1591, + [3020] = 1650, + [3021] = 1595, + [3022] = 2977, + [3023] = 2982, + [3024] = 1547, + [3025] = 1549, + [3026] = 1555, + [3027] = 1556, + [3028] = 2982, + [3029] = 1616, + [3030] = 2982, + [3031] = 2982, + [3032] = 1648, + [3033] = 1552, + [3034] = 1594, + [3035] = 1542, + [3036] = 1533, + [3037] = 1536, + [3038] = 1576, + [3039] = 1538, + [3040] = 1539, + [3041] = 2982, + [3042] = 2982, + [3043] = 2982, + [3044] = 1627, + [3045] = 1596, + [3046] = 1570, [3047] = 3047, [3048] = 3048, - [3049] = 3048, + [3049] = 3049, [3050] = 3050, [3051] = 3051, - [3052] = 3048, + [3052] = 3052, [3053] = 3053, [3054] = 3054, [3055] = 3055, - [3056] = 3056, - [3057] = 3053, + [3056] = 3054, + [3057] = 3051, [3058] = 3058, [3059] = 3059, - [3060] = 1513, - [3061] = 3048, - [3062] = 1514, + [3060] = 3060, + [3061] = 1523, + [3062] = 3051, [3063] = 3063, - [3064] = 3048, - [3065] = 3048, - [3066] = 3066, - [3067] = 3067, - [3068] = 3068, - [3069] = 3053, + [3064] = 3054, + [3065] = 3065, + [3066] = 1518, + [3067] = 1520, + [3068] = 3051, + [3069] = 1517, [3070] = 3070, [3071] = 3071, [3072] = 3072, - [3073] = 1526, - [3074] = 3074, - [3075] = 3053, - [3076] = 3076, - [3077] = 3077, + [3073] = 3073, + [3074] = 3054, + [3075] = 3075, + [3076] = 3054, + [3077] = 3051, [3078] = 3078, [3079] = 3079, - [3080] = 3080, - [3081] = 3053, - [3082] = 1517, - [3083] = 1519, + [3080] = 3054, + [3081] = 1527, + [3082] = 3082, + [3083] = 3083, [3084] = 3084, [3085] = 3085, [3086] = 3086, - [3087] = 3048, - [3088] = 1602, - [3089] = 1584, - [3090] = 1585, - [3091] = 1586, - [3092] = 1589, - [3093] = 1590, - [3094] = 1593, - [3095] = 1627, - [3096] = 1630, - [3097] = 1635, - [3098] = 3098, - [3099] = 3099, - [3100] = 1510, - [3101] = 1638, - [3102] = 1552, - [3103] = 978, - [3104] = 1597, - [3105] = 1540, - [3106] = 1591, - [3107] = 3107, + [3087] = 3054, + [3088] = 1557, + [3089] = 1613, + [3090] = 1581, + [3091] = 978, + [3092] = 1626, + [3093] = 1631, + [3094] = 1632, + [3095] = 1602, + [3096] = 1633, + [3097] = 3097, + [3098] = 1634, + [3099] = 1644, + [3100] = 1647, + [3101] = 1603, + [3102] = 1604, + [3103] = 1530, + [3104] = 1531, + [3105] = 1534, + [3106] = 1535, + [3107] = 1605, [3108] = 3108, - [3109] = 1640, - [3110] = 3110, - [3111] = 1644, - [3112] = 1553, - [3113] = 1649, - [3114] = 1529, - [3115] = 1607, - [3116] = 1560, - [3117] = 3117, - [3118] = 1561, - [3119] = 1610, - [3120] = 1611, - [3121] = 1601, - [3122] = 1564, - [3123] = 1631, - [3124] = 3124, - [3125] = 1623, - [3126] = 1530, - [3127] = 1533, - [3128] = 1580, - [3129] = 1613, - [3130] = 1539, - [3131] = 1521, - [3132] = 1565, - [3133] = 3133, - [3134] = 979, - [3135] = 3135, - [3136] = 1551, - [3137] = 1566, - [3138] = 1639, - [3139] = 1641, - [3140] = 1567, - [3141] = 1574, - [3142] = 1568, - [3143] = 977, - [3144] = 1569, - [3145] = 1537, - [3146] = 1575, - [3147] = 1528, - [3148] = 1543, - [3149] = 1556, - [3150] = 1559, - [3151] = 1577, - [3152] = 1578, - [3153] = 1562, - [3154] = 1618, - [3155] = 1582, - [3156] = 3156, - [3157] = 1583, + [3109] = 1600, + [3110] = 1553, + [3111] = 1540, + [3112] = 1541, + [3113] = 1544, + [3114] = 3114, + [3115] = 3115, + [3116] = 1554, + [3117] = 977, + [3118] = 3118, + [3119] = 1560, + [3120] = 1561, + [3121] = 1564, + [3122] = 1565, + [3123] = 1566, + [3124] = 1641, + [3125] = 1642, + [3126] = 1567, + [3127] = 1568, + [3128] = 1622, + [3129] = 1570, + [3130] = 1571, + [3131] = 1582, + [3132] = 1583, + [3133] = 1584, + [3134] = 1585, + [3135] = 1586, + [3136] = 1587, + [3137] = 1589, + [3138] = 1591, + [3139] = 1650, + [3140] = 1595, + [3141] = 3141, + [3142] = 3142, + [3143] = 979, + [3144] = 3144, + [3145] = 3145, + [3146] = 1643, + [3147] = 1592, + [3148] = 1550, + [3149] = 1511, + [3150] = 1593, + [3151] = 1562, + [3152] = 1537, + [3153] = 1526, + [3154] = 1543, + [3155] = 1574, + [3156] = 1640, + [3157] = 3157, [3158] = 3158, - [3159] = 1599, - [3160] = 1534, - [3161] = 243, - [3162] = 3162, + [3159] = 1614, + [3160] = 1569, + [3161] = 3161, + [3162] = 1517, [3163] = 3163, - [3164] = 1581, + [3164] = 3164, [3165] = 3165, [3166] = 3166, [3167] = 3167, - [3168] = 1152, - [3169] = 1600, - [3170] = 3170, - [3171] = 1509, - [3172] = 1506, + [3168] = 1504, + [3169] = 3169, + [3170] = 1523, + [3171] = 1162, + [3172] = 3172, [3173] = 3173, - [3174] = 1505, - [3175] = 1513, + [3174] = 3174, + [3175] = 3175, [3176] = 3176, [3177] = 3177, [3178] = 3178, [3179] = 3179, [3180] = 3180, [3181] = 3181, - [3182] = 1162, + [3182] = 3182, [3183] = 3183, - [3184] = 1514, + [3184] = 3184, [3185] = 3185, - [3186] = 1519, - [3187] = 3187, + [3186] = 3186, + [3187] = 1527, [3188] = 3188, - [3189] = 3189, - [3190] = 1160, - [3191] = 3191, - [3192] = 3192, + [3189] = 1525, + [3190] = 218, + [3191] = 1563, + [3192] = 219, [3193] = 3193, - [3194] = 3194, + [3194] = 1524, [3195] = 3195, [3196] = 3196, - [3197] = 3197, - [3198] = 3198, - [3199] = 3199, - [3200] = 1526, - [3201] = 3201, - [3202] = 3202, - [3203] = 3203, - [3204] = 3198, - [3205] = 244, - [3206] = 3206, + [3197] = 1573, + [3198] = 3161, + [3199] = 3161, + [3200] = 1518, + [3201] = 3161, + [3202] = 1156, + [3203] = 1577, + [3204] = 3204, + [3205] = 3205, + [3206] = 1505, [3207] = 3207, - [3208] = 1522, - [3209] = 1648, - [3210] = 3198, - [3211] = 3198, - [3212] = 3198, + [3208] = 3208, + [3209] = 3209, + [3210] = 1508, + [3211] = 3211, + [3212] = 3212, [3213] = 1520, [3214] = 3214, [3215] = 3215, [3216] = 3216, - [3217] = 1517, + [3217] = 3217, [3218] = 3218, - [3219] = 3219, - [3220] = 3220, - [3221] = 1623, - [3222] = 1633, - [3223] = 1594, - [3224] = 1599, - [3225] = 1612, - [3226] = 1613, - [3227] = 1580, - [3228] = 1615, - [3229] = 1634, - [3230] = 1551, - [3231] = 1591, - [3232] = 979, - [3233] = 1536, - [3234] = 1574, - [3235] = 1639, + [3219] = 1153, + [3220] = 3161, + [3221] = 977, + [3222] = 1548, + [3223] = 709, + [3224] = 1550, + [3225] = 1542, + [3226] = 1641, + [3227] = 1558, + [3228] = 1606, + [3229] = 1627, + [3230] = 3217, + [3231] = 712, + [3232] = 1594, + [3233] = 1640, + [3234] = 713, + [3235] = 1533, [3236] = 3236, - [3237] = 712, - [3238] = 1537, - [3239] = 1596, - [3240] = 977, - [3241] = 1575, - [3242] = 1541, - [3243] = 1597, - [3244] = 711, - [3245] = 1602, - [3246] = 1607, - [3247] = 1542, - [3248] = 1587, - [3249] = 1610, - [3250] = 1510, - [3251] = 1548, - [3252] = 1521, - [3253] = 3253, - [3254] = 1552, - [3255] = 1608, - [3256] = 1558, - [3257] = 1629, - [3258] = 1562, - [3259] = 1535, - [3260] = 1546, - [3261] = 978, - [3262] = 1547, - [3263] = 1544, - [3264] = 1563, - [3265] = 1614, - [3266] = 1571, - [3267] = 1572, - [3268] = 1619, - [3269] = 1625, - [3270] = 1641, - [3271] = 1573, - [3272] = 1628, - [3273] = 1595, - [3274] = 1616, - [3275] = 1647, - [3276] = 1550, - [3277] = 1553, - [3278] = 3278, - [3279] = 3279, - [3280] = 1554, - [3281] = 714, - [3282] = 3220, - [3283] = 1598, - [3284] = 713, - [3285] = 1555, - [3286] = 1601, - [3287] = 1618, - [3288] = 1531, - [3289] = 1556, - [3290] = 1631, - [3291] = 710, - [3292] = 1611, + [3237] = 1547, + [3238] = 1549, + [3239] = 1562, + [3240] = 1616, + [3241] = 978, + [3242] = 1620, + [3243] = 1625, + [3244] = 1528, + [3245] = 1581, + [3246] = 1590, + [3247] = 1536, + [3248] = 1602, + [3249] = 1643, + [3250] = 1599, + [3251] = 1597, + [3252] = 1601, + [3253] = 1628, + [3254] = 979, + [3255] = 1537, + [3256] = 1576, + [3257] = 1543, + [3258] = 1554, + [3259] = 3259, + [3260] = 1642, + [3261] = 1555, + [3262] = 3262, + [3263] = 1553, + [3264] = 1603, + [3265] = 1613, + [3266] = 714, + [3267] = 1604, + [3268] = 1538, + [3269] = 1526, + [3270] = 1648, + [3271] = 1635, + [3272] = 1605, + [3273] = 1596, + [3274] = 1593, + [3275] = 1575, + [3276] = 1572, + [3277] = 1511, + [3278] = 1615, + [3279] = 1539, + [3280] = 1622, + [3281] = 3281, + [3282] = 710, + [3283] = 1556, + [3284] = 1600, + [3285] = 1618, + [3286] = 1621, + [3287] = 1552, + [3288] = 1630, + [3289] = 1557, + [3290] = 1614, + [3291] = 1574, + [3292] = 1592, [3293] = 3293, [3294] = 3294, - [3295] = 1648, - [3296] = 1520, - [3297] = 1600, - [3298] = 3298, + [3295] = 3295, + [3296] = 3296, + [3297] = 3294, + [3298] = 1525, [3299] = 3299, - [3300] = 1581, - [3301] = 3301, + [3300] = 1563, + [3301] = 1577, [3302] = 3302, - [3303] = 3303, - [3304] = 3304, - [3305] = 1522, - [3306] = 1513, + [3303] = 3302, + [3304] = 1527, + [3305] = 3302, + [3306] = 3306, [3307] = 3307, - [3308] = 3308, - [3309] = 3309, - [3310] = 3310, + [3308] = 1511, + [3309] = 3294, + [3310] = 1518, [3311] = 3311, [3312] = 3312, - [3313] = 3294, - [3314] = 3310, - [3315] = 1526, - [3316] = 1519, - [3317] = 1510, - [3318] = 1514, - [3319] = 3293, - [3320] = 3302, - [3321] = 3294, - [3322] = 3322, - [3323] = 3293, + [3313] = 1517, + [3314] = 1523, + [3315] = 3315, + [3316] = 3316, + [3317] = 3317, + [3318] = 1524, + [3319] = 1573, + [3320] = 3320, + [3321] = 3321, + [3322] = 3311, + [3323] = 3306, [3324] = 3324, [3325] = 3325, - [3326] = 3326, - [3327] = 3327, - [3328] = 711, - [3329] = 3329, - [3330] = 3330, + [3326] = 1576, + [3327] = 1547, + [3328] = 1153, + [3329] = 1549, + [3330] = 1536, [3331] = 3331, - [3332] = 1639, - [3333] = 1162, - [3334] = 1526, + [3332] = 3332, + [3333] = 709, + [3334] = 3320, [3335] = 3335, - [3336] = 1558, - [3337] = 1641, - [3338] = 3338, - [3339] = 3339, - [3340] = 3340, - [3341] = 3341, - [3342] = 1571, - [3343] = 1612, - [3344] = 1572, + [3336] = 3336, + [3337] = 3337, + [3338] = 1572, + [3339] = 1648, + [3340] = 1528, + [3341] = 1575, + [3342] = 712, + [3343] = 1552, + [3344] = 1554, [3345] = 3345, - [3346] = 1573, - [3347] = 714, + [3346] = 3161, + [3347] = 1594, [3348] = 3348, - [3349] = 3349, - [3350] = 1613, - [3351] = 3198, - [3352] = 1615, - [3353] = 3198, + [3349] = 1520, + [3350] = 3350, + [3351] = 3351, + [3352] = 1156, + [3353] = 3353, [3354] = 1596, - [3355] = 3355, - [3356] = 712, - [3357] = 3357, - [3358] = 1594, - [3359] = 1599, - [3360] = 3198, + [3355] = 1600, + [3356] = 3356, + [3357] = 1555, + [3358] = 3358, + [3359] = 218, + [3360] = 3360, [3361] = 3361, - [3362] = 243, + [3362] = 3362, [3363] = 3363, - [3364] = 3364, - [3365] = 3307, - [3366] = 1614, - [3367] = 3367, - [3368] = 3368, - [3369] = 1619, - [3370] = 3370, - [3371] = 1562, - [3372] = 244, - [3373] = 1517, - [3374] = 1625, - [3375] = 3312, + [3364] = 3317, + [3365] = 1537, + [3366] = 1538, + [3367] = 1539, + [3368] = 1641, + [3369] = 1642, + [3370] = 1153, + [3371] = 3345, + [3372] = 3372, + [3373] = 3373, + [3374] = 219, + [3375] = 3375, [3376] = 3376, [3377] = 3377, - [3378] = 1152, - [3379] = 3379, - [3380] = 1535, - [3381] = 3381, - [3382] = 3361, - [3383] = 3301, - [3384] = 1628, - [3385] = 1595, + [3378] = 3378, + [3379] = 1618, + [3380] = 1621, + [3381] = 1556, + [3382] = 1630, + [3383] = 1542, + [3384] = 1543, + [3385] = 1557, [3386] = 3386, - [3387] = 1152, - [3388] = 1616, - [3389] = 1647, - [3390] = 3390, - [3391] = 3381, - [3392] = 3392, - [3393] = 3393, - [3394] = 1587, + [3387] = 3387, + [3388] = 3388, + [3389] = 3389, + [3390] = 1548, + [3391] = 3391, + [3392] = 1635, + [3393] = 1162, + [3394] = 3394, [3395] = 3395, - [3396] = 1162, - [3397] = 3397, + [3396] = 3396, + [3397] = 1627, [3398] = 3398, - [3399] = 1160, + [3399] = 1156, [3400] = 3400, - [3401] = 1544, + [3401] = 3401, [3402] = 1550, [3403] = 3403, - [3404] = 1548, - [3405] = 3405, + [3404] = 1616, + [3405] = 1558, [3406] = 3406, - [3407] = 3198, - [3408] = 3386, - [3409] = 3409, + [3407] = 1620, + [3408] = 1590, + [3409] = 1593, [3410] = 3410, [3411] = 3411, - [3412] = 1552, - [3413] = 3413, - [3414] = 3198, - [3415] = 1608, + [3412] = 3161, + [3413] = 1625, + [3414] = 3161, + [3415] = 3312, [3416] = 3416, [3417] = 3417, [3418] = 3418, - [3419] = 3381, + [3419] = 3417, [3420] = 3420, - [3421] = 3421, - [3422] = 1546, - [3423] = 1547, - [3424] = 3424, - [3425] = 3425, - [3426] = 1553, - [3427] = 3427, - [3428] = 3198, - [3429] = 1160, - [3430] = 3430, + [3421] = 1162, + [3422] = 1599, + [3423] = 1606, + [3424] = 1613, + [3425] = 1615, + [3426] = 1597, + [3427] = 714, + [3428] = 1601, + [3429] = 3417, + [3430] = 3396, [3431] = 3431, - [3432] = 1554, - [3433] = 3433, - [3434] = 1555, + [3432] = 1628, + [3433] = 3161, + [3434] = 3434, [3435] = 3435, - [3436] = 3420, - [3437] = 1563, + [3436] = 3436, + [3437] = 3161, [3438] = 3438, - [3439] = 1629, - [3440] = 3440, - [3441] = 1247, - [3442] = 1556, - [3443] = 3392, - [3444] = 3444, - [3445] = 710, - [3446] = 3446, - [3447] = 1598, - [3448] = 3420, - [3449] = 1601, - [3450] = 3450, - [3451] = 1634, - [3452] = 3395, - [3453] = 3376, + [3439] = 3439, + [3440] = 3420, + [3441] = 3441, + [3442] = 1533, + [3443] = 3443, + [3444] = 1243, + [3445] = 3445, + [3446] = 713, + [3447] = 3447, + [3448] = 3161, + [3449] = 3331, + [3450] = 3436, + [3451] = 3451, + [3452] = 3418, + [3453] = 3436, [3454] = 3454, - [3455] = 3363, + [3455] = 3455, [3456] = 3456, - [3457] = 3457, - [3458] = 713, + [3457] = 3356, + [3458] = 3458, [3459] = 3459, [3460] = 3460, [3461] = 3461, - [3462] = 1633, - [3463] = 1531, - [3464] = 1536, + [3462] = 1527, + [3463] = 3463, + [3464] = 3464, [3465] = 3465, - [3466] = 1537, - [3467] = 1541, + [3466] = 3466, + [3467] = 710, [3468] = 3468, - [3469] = 1542, + [3469] = 3469, [3470] = 3470, [3471] = 3471, - [3472] = 3472, + [3472] = 213, [3473] = 3473, - [3474] = 3471, - [3475] = 3475, - [3476] = 3476, - [3477] = 211, - [3478] = 3478, - [3479] = 3471, - [3480] = 3220, - [3481] = 3481, + [3474] = 3474, + [3475] = 3474, + [3476] = 3474, + [3477] = 3477, + [3478] = 3474, + [3479] = 3479, + [3480] = 1518, + [3481] = 977, [3482] = 3482, [3483] = 3483, - [3484] = 213, - [3485] = 3485, - [3486] = 1519, + [3484] = 3484, + [3485] = 3474, + [3486] = 1517, [3487] = 3487, - [3488] = 3483, - [3489] = 3483, - [3490] = 3483, - [3491] = 3483, - [3492] = 3471, - [3493] = 3493, - [3494] = 1521, - [3495] = 3483, - [3496] = 1514, - [3497] = 977, - [3498] = 3498, + [3488] = 3474, + [3489] = 1523, + [3490] = 3474, + [3491] = 211, + [3492] = 3217, + [3493] = 3484, + [3494] = 979, + [3495] = 1526, + [3496] = 3312, + [3497] = 3497, + [3498] = 978, [3499] = 3499, - [3500] = 3483, - [3501] = 3312, + [3500] = 3500, + [3501] = 3471, [3502] = 3502, - [3503] = 3503, + [3503] = 3471, [3504] = 3471, - [3505] = 3475, - [3506] = 978, - [3507] = 3483, + [3505] = 3505, + [3506] = 3471, + [3507] = 3474, [3508] = 3508, - [3509] = 3471, - [3510] = 979, - [3511] = 1513, + [3509] = 3509, + [3510] = 3510, + [3511] = 3471, [3512] = 3512, [3513] = 3513, [3514] = 3514, @@ -8063,15 +8063,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3538] = 3538, [3539] = 3539, [3540] = 3540, - [3541] = 3541, - [3542] = 3513, + [3541] = 3514, + [3542] = 3542, [3543] = 3543, [3544] = 3544, [3545] = 3545, [3546] = 3546, - [3547] = 3547, - [3548] = 3544, - [3549] = 3512, + [3547] = 3544, + [3548] = 3512, + [3549] = 3549, [3550] = 3550, [3551] = 3551, [3552] = 3552, @@ -8093,7 +8093,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3568] = 3568, [3569] = 3569, [3570] = 3570, - [3571] = 1519, + [3571] = 1523, [3572] = 3572, [3573] = 3573, [3574] = 3574, @@ -8101,90 +8101,90 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3576] = 3576, [3577] = 3577, [3578] = 3578, - [3579] = 3335, - [3580] = 3580, + [3579] = 3579, + [3580] = 3332, [3581] = 3581, - [3582] = 3582, - [3583] = 3379, - [3584] = 3584, + [3582] = 3553, + [3583] = 3583, + [3584] = 3456, [3585] = 3585, [3586] = 3586, - [3587] = 3553, + [3587] = 3587, [3588] = 3588, [3589] = 3589, [3590] = 3590, [3591] = 3591, [3592] = 3553, [3593] = 3593, - [3594] = 3557, + [3594] = 3594, [3595] = 3595, - [3596] = 3596, - [3597] = 3566, - [3598] = 3573, - [3599] = 3599, - [3600] = 3600, + [3596] = 3556, + [3597] = 3597, + [3598] = 3598, + [3599] = 3566, + [3600] = 3572, [3601] = 3601, [3602] = 3602, - [3603] = 3557, - [3604] = 3566, - [3605] = 3605, + [3603] = 3603, + [3604] = 3604, + [3605] = 3556, [3606] = 3606, [3607] = 3607, - [3608] = 3608, - [3609] = 3330, - [3610] = 3348, - [3611] = 3611, - [3612] = 3410, + [3608] = 3566, + [3609] = 3609, + [3610] = 3610, + [3611] = 3362, + [3612] = 3377, [3613] = 3613, - [3614] = 3557, - [3615] = 3566, - [3616] = 3566, - [3617] = 3551, - [3618] = 3618, - [3619] = 3619, - [3620] = 3557, + [3614] = 3337, + [3615] = 3615, + [3616] = 3556, + [3617] = 3566, + [3618] = 3566, + [3619] = 3549, + [3620] = 3620, [3621] = 3621, - [3622] = 3557, + [3622] = 3556, [3623] = 3566, - [3624] = 3624, - [3625] = 3625, - [3626] = 3626, - [3627] = 3593, - [3628] = 3569, - [3629] = 3629, - [3630] = 3630, + [3624] = 3556, + [3625] = 3566, + [3626] = 3593, + [3627] = 3627, + [3628] = 3628, + [3629] = 3594, + [3630] = 3569, [3631] = 3631, [3632] = 3632, - [3633] = 3624, - [3634] = 3557, + [3633] = 3633, + [3634] = 3545, [3635] = 3635, [3636] = 3636, - [3637] = 3637, + [3637] = 3556, [3638] = 3638, - [3639] = 3573, + [3639] = 3639, [3640] = 3640, - [3641] = 1513, - [3642] = 3642, - [3643] = 1514, - [3644] = 3644, - [3645] = 1601, - [3646] = 1613, + [3641] = 3641, + [3642] = 3572, + [3643] = 3643, + [3644] = 1518, + [3645] = 3645, + [3646] = 1517, [3647] = 3647, - [3648] = 3648, - [3649] = 1553, - [3650] = 1556, - [3651] = 1639, - [3652] = 1641, - [3653] = 3653, - [3654] = 3654, - [3655] = 3655, - [3656] = 1599, - [3657] = 3574, - [3658] = 3279, - [3659] = 3545, - [3660] = 3575, + [3648] = 1593, + [3649] = 1613, + [3650] = 3650, + [3651] = 3651, + [3652] = 1554, + [3653] = 1557, + [3654] = 1641, + [3655] = 1642, + [3656] = 3656, + [3657] = 3657, + [3658] = 1600, + [3659] = 3574, + [3660] = 3281, [3661] = 3661, - [3662] = 3662, + [3662] = 3575, [3663] = 3663, [3664] = 3664, [3665] = 3665, @@ -8217,14 +8217,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3692] = 3692, [3693] = 3693, [3694] = 3694, - [3695] = 3299, - [3696] = 3696, + [3695] = 3695, + [3696] = 3316, [3697] = 3697, [3698] = 3698, [3699] = 3699, [3700] = 3700, [3701] = 3701, - [3702] = 3557, + [3702] = 3556, [3703] = 3703, [3704] = 3704, [3705] = 3705, @@ -8241,18 +8241,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3716] = 3716, [3717] = 3717, [3718] = 3718, - [3719] = 3626, + [3719] = 3628, [3720] = 3720, [3721] = 3576, [3722] = 3722, - [3723] = 3630, - [3724] = 3679, - [3725] = 3685, + [3723] = 3633, + [3724] = 3597, + [3725] = 3656, [3726] = 3726, [3727] = 3727, [3728] = 1537, - [3729] = 1552, - [3730] = 1562, + [3729] = 1543, + [3730] = 1550, [3731] = 3731, [3732] = 3732, [3733] = 3733, @@ -8260,9 +8260,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3735] = 3735, [3736] = 3736, [3737] = 3737, - [3738] = 3679, + [3738] = 3597, [3739] = 3739, - [3740] = 3685, + [3740] = 3656, [3741] = 3741, [3742] = 3742, [3743] = 3743, @@ -8276,169 +8276,169 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3751] = 3751, [3752] = 3752, [3753] = 3753, - [3754] = 3566, + [3754] = 3754, [3755] = 3755, [3756] = 3756, [3757] = 3757, [3758] = 3758, - [3759] = 3759, + [3759] = 3758, [3760] = 3760, - [3761] = 3755, + [3761] = 3756, [3762] = 3762, - [3763] = 3756, - [3764] = 3759, - [3765] = 3765, + [3763] = 3763, + [3764] = 3682, + [3765] = 3695, [3766] = 3766, - [3767] = 3756, - [3768] = 3768, + [3767] = 3767, + [3768] = 3757, [3769] = 3769, [3770] = 3770, [3771] = 3771, - [3772] = 3682, + [3772] = 3772, [3773] = 3773, - [3774] = 3774, + [3774] = 3697, [3775] = 3775, - [3776] = 3696, - [3777] = 3777, - [3778] = 3759, - [3779] = 3779, - [3780] = 3780, + [3776] = 3776, + [3777] = 1593, + [3778] = 3683, + [3779] = 1613, + [3780] = 3758, [3781] = 3781, - [3782] = 1601, - [3783] = 3756, - [3784] = 3759, - [3785] = 1613, - [3786] = 3786, - [3787] = 3766, - [3788] = 3779, - [3789] = 3789, - [3790] = 3636, + [3782] = 3782, + [3783] = 3783, + [3784] = 3781, + [3785] = 3757, + [3786] = 3758, + [3787] = 3787, + [3788] = 710, + [3789] = 709, + [3790] = 3767, [3791] = 3791, - [3792] = 3792, - [3793] = 710, - [3794] = 711, - [3795] = 3638, - [3796] = 3236, - [3797] = 3797, - [3798] = 3798, + [3792] = 3639, + [3793] = 3793, + [3794] = 3794, + [3795] = 714, + [3796] = 3782, + [3797] = 3641, + [3798] = 3259, [3799] = 3799, - [3800] = 3762, - [3801] = 712, - [3802] = 3722, - [3803] = 3640, - [3804] = 3779, - [3805] = 3792, - [3806] = 3766, - [3807] = 3780, - [3808] = 1553, - [3809] = 3756, - [3810] = 1556, - [3811] = 3759, - [3812] = 1639, - [3813] = 3766, - [3814] = 1641, - [3815] = 3686, - [3816] = 3687, - [3817] = 3817, - [3818] = 3689, - [3819] = 713, - [3820] = 3766, - [3821] = 3821, - [3822] = 3780, - [3823] = 3779, - [3824] = 3824, - [3825] = 3825, - [3826] = 3780, - [3827] = 3680, - [3828] = 3704, + [3800] = 3800, + [3801] = 713, + [3802] = 3794, + [3803] = 3763, + [3804] = 3643, + [3805] = 3767, + [3806] = 3722, + [3807] = 3807, + [3808] = 3781, + [3809] = 1554, + [3810] = 3782, + [3811] = 1557, + [3812] = 1641, + [3813] = 3757, + [3814] = 1642, + [3815] = 3758, + [3816] = 3704, + [3817] = 3767, + [3818] = 3818, + [3819] = 3686, + [3820] = 3687, + [3821] = 3755, + [3822] = 3767, + [3823] = 3823, + [3824] = 3689, + [3825] = 712, + [3826] = 3781, + [3827] = 3615, + [3828] = 3681, [3829] = 3829, - [3830] = 3690, - [3831] = 3756, - [3832] = 3832, - [3833] = 3759, - [3834] = 3683, - [3835] = 3760, - [3836] = 3836, - [3837] = 3766, - [3838] = 3838, - [3839] = 3817, - [3840] = 3301, - [3841] = 1599, - [3842] = 3842, + [3830] = 3830, + [3831] = 3782, + [3832] = 3690, + [3833] = 3771, + [3834] = 3684, + [3835] = 3757, + [3836] = 3758, + [3837] = 3837, + [3838] = 3770, + [3839] = 3767, + [3840] = 1600, + [3841] = 3841, + [3842] = 3320, [3843] = 3843, - [3844] = 3844, + [3844] = 3698, [3845] = 3845, - [3846] = 714, + [3846] = 3846, [3847] = 3847, [3848] = 3848, - [3849] = 1262, - [3850] = 3698, - [3851] = 3758, + [3849] = 3849, + [3850] = 3782, + [3851] = 3760, [3852] = 3852, [3853] = 3853, [3854] = 3854, - [3855] = 3780, + [3855] = 1275, [3856] = 3856, [3857] = 3857, - [3858] = 3797, + [3858] = 3714, [3859] = 3859, - [3860] = 3714, - [3861] = 3825, - [3862] = 3668, - [3863] = 3669, - [3864] = 3824, - [3865] = 3857, - [3866] = 3866, - [3867] = 3670, + [3860] = 3860, + [3861] = 3807, + [3862] = 3670, + [3863] = 3671, + [3864] = 3818, + [3865] = 3856, + [3866] = 3799, + [3867] = 3672, [3868] = 3868, - [3869] = 3671, + [3869] = 3673, [3870] = 3870, - [3871] = 3845, - [3872] = 3838, - [3873] = 3873, - [3874] = 3691, - [3875] = 3692, - [3876] = 3870, - [3877] = 1537, - [3878] = 1552, - [3879] = 3844, - [3880] = 3693, - [3881] = 1562, - [3882] = 3681, - [3883] = 3779, - [3884] = 3732, - [3885] = 3885, - [3886] = 3694, - [3887] = 3887, + [3871] = 3857, + [3872] = 3781, + [3873] = 3691, + [3874] = 3692, + [3875] = 3875, + [3876] = 3876, + [3877] = 3847, + [3878] = 3841, + [3879] = 3693, + [3880] = 3843, + [3881] = 3881, + [3882] = 1537, + [3883] = 1543, + [3884] = 3884, + [3885] = 1550, + [3886] = 3886, + [3887] = 3731, [3888] = 3888, - [3889] = 3825, - [3890] = 3843, + [3889] = 3807, + [3890] = 3793, [3891] = 3868, [3892] = 3892, - [3893] = 3791, - [3894] = 3894, - [3895] = 3307, - [3896] = 3887, - [3897] = 3868, - [3898] = 3798, - [3899] = 3786, - [3900] = 3779, - [3901] = 3789, - [3902] = 3780, + [3893] = 3317, + [3894] = 3787, + [3895] = 3868, + [3896] = 3886, + [3897] = 3781, + [3898] = 3898, + [3899] = 3782, + [3900] = 3888, + [3901] = 3848, + [3902] = 3902, [3903] = 3903, - [3904] = 3768, + [3904] = 3870, [3905] = 3905, - [3906] = 3613, - [3907] = 892, + [3906] = 3757, + [3907] = 3907, [3908] = 3908, [3909] = 3909, [3910] = 3910, [3911] = 3911, - [3912] = 836, + [3912] = 837, [3913] = 3913, [3914] = 3914, [3915] = 923, - [3916] = 824, + [3916] = 825, [3917] = 3917, [3918] = 3918, [3919] = 3919, @@ -8458,7 +8458,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3933] = 3933, [3934] = 3934, [3935] = 3935, - [3936] = 3922, + [3936] = 3936, [3937] = 3937, [3938] = 3938, [3939] = 3939, @@ -8471,7 +8471,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3946] = 3946, [3947] = 869, [3948] = 3948, - [3949] = 930, + [3949] = 882, [3950] = 3950, [3951] = 3951, [3952] = 3952, @@ -8482,31 +8482,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3957] = 3957, [3958] = 3958, [3959] = 3959, - [3960] = 3960, - [3961] = 3836, - [3962] = 3962, + [3960] = 3837, + [3961] = 3961, + [3962] = 781, [3963] = 3963, - [3964] = 781, + [3964] = 3964, [3965] = 3965, [3966] = 3966, [3967] = 3967, - [3968] = 3968, - [3969] = 929, + [3968] = 929, + [3969] = 3969, [3970] = 3970, - [3971] = 3971, + [3971] = 876, [3972] = 3972, - [3973] = 878, - [3974] = 3948, - [3975] = 3975, - [3976] = 3976, - [3977] = 776, - [3978] = 803, - [3979] = 3979, + [3973] = 3946, + [3974] = 3974, + [3975] = 776, + [3976] = 795, + [3977] = 3977, + [3978] = 3978, + [3979] = 3944, [3980] = 3980, - [3981] = 3981, - [3982] = 3945, - [3983] = 797, - [3984] = 3950, + [3981] = 803, + [3982] = 3948, + [3983] = 3983, + [3984] = 3984, [3985] = 3985, [3986] = 3986, [3987] = 3987, @@ -8516,52 +8516,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3991] = 3991, [3992] = 3992, [3993] = 3993, - [3994] = 3994, - [3995] = 3995, - [3996] = 3930, - [3997] = 3582, - [3998] = 3584, - [3999] = 859, - [4000] = 860, + [3994] = 3583, + [3995] = 3585, + [3996] = 860, + [3997] = 861, + [3998] = 3998, + [3999] = 3931, + [4000] = 4000, [4001] = 4001, [4002] = 4002, [4003] = 4003, [4004] = 4004, - [4005] = 4005, + [4005] = 3909, [4006] = 4006, - [4007] = 3910, + [4007] = 4007, [4008] = 4008, [4009] = 4009, [4010] = 4010, [4011] = 4011, - [4012] = 3952, - [4013] = 4013, - [4014] = 3922, + [4012] = 3951, + [4013] = 3921, + [4014] = 4014, [4015] = 4015, [4016] = 4016, - [4017] = 4017, - [4018] = 3932, + [4017] = 3932, + [4018] = 4018, [4019] = 4019, [4020] = 4020, - [4021] = 3938, + [4021] = 3936, [4022] = 4022, [4023] = 4023, - [4024] = 3952, + [4024] = 3951, [4025] = 4025, [4026] = 4026, [4027] = 4027, - [4028] = 3910, + [4028] = 4028, [4029] = 4029, - [4030] = 4030, + [4030] = 3932, [4031] = 4031, - [4032] = 4032, + [4032] = 220, [4033] = 4033, - [4034] = 887, - [4035] = 903, - [4036] = 911, - [4037] = 3932, + [4034] = 4034, + [4035] = 888, + [4036] = 904, + [4037] = 912, [4038] = 4038, - [4039] = 4039, + [4039] = 3909, [4040] = 4040, [4041] = 4041, [4042] = 4042, @@ -8571,12 +8571,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4046] = 4046, [4047] = 4047, [4048] = 4048, - [4049] = 220, - [4050] = 3922, + [4049] = 3921, + [4050] = 4050, [4051] = 4051, [4052] = 4052, - [4053] = 4053, - [4054] = 3938, + [4053] = 3936, + [4054] = 4054, [4055] = 4055, [4056] = 4056, [4057] = 4057, @@ -8585,51 +8585,51 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4060] = 3853, [4061] = 3854, [4062] = 926, - [4063] = 4063, - [4064] = 928, - [4065] = 809, - [4066] = 810, - [4067] = 811, - [4068] = 780, - [4069] = 813, - [4070] = 815, - [4071] = 817, - [4072] = 823, + [4063] = 928, + [4064] = 809, + [4065] = 810, + [4066] = 811, + [4067] = 773, + [4068] = 813, + [4069] = 815, + [4070] = 817, + [4071] = 824, + [4072] = 244, [4073] = 4073, - [4074] = 4074, - [4075] = 236, - [4076] = 3541, - [4077] = 839, - [4078] = 842, - [4079] = 845, - [4080] = 3922, + [4074] = 3540, + [4075] = 840, + [4076] = 843, + [4077] = 846, + [4078] = 4078, + [4079] = 4079, + [4080] = 3921, [4081] = 4081, [4082] = 4082, - [4083] = 3938, - [4084] = 4084, + [4083] = 4083, + [4084] = 3936, [4085] = 4085, [4086] = 4086, [4087] = 4087, [4088] = 4088, [4089] = 4089, [4090] = 4090, - [4091] = 900, - [4092] = 901, - [4093] = 902, + [4091] = 901, + [4092] = 902, + [4093] = 903, [4094] = 4094, - [4095] = 3988, + [4095] = 3985, [4096] = 4096, - [4097] = 3739, + [4097] = 4097, [4098] = 4098, [4099] = 4099, - [4100] = 4100, - [4101] = 3956, - [4102] = 4102, + [4100] = 3739, + [4101] = 4101, + [4102] = 3954, [4103] = 4103, [4104] = 4104, [4105] = 4105, - [4106] = 4106, - [4107] = 3957, + [4106] = 3955, + [4107] = 4107, [4108] = 4108, [4109] = 4109, [4110] = 4110, @@ -8639,19 +8639,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4114] = 4114, [4115] = 4115, [4116] = 4116, - [4117] = 4117, + [4117] = 3987, [4118] = 4118, - [4119] = 3990, + [4119] = 4119, [4120] = 4120, [4121] = 4121, [4122] = 4122, [4123] = 4123, - [4124] = 847, + [4124] = 4124, [4125] = 4125, - [4126] = 851, - [4127] = 867, - [4128] = 868, - [4129] = 4129, + [4126] = 848, + [4127] = 852, + [4128] = 867, + [4129] = 868, [4130] = 4130, [4131] = 4131, [4132] = 4132, @@ -8660,42 +8660,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4135] = 4135, [4136] = 4136, [4137] = 4137, - [4138] = 3985, + [4138] = 4138, [4139] = 4139, - [4140] = 4140, - [4141] = 934, - [4142] = 3958, - [4143] = 4015, - [4144] = 4032, + [4140] = 934, + [4141] = 3957, + [4142] = 4010, + [4143] = 4143, + [4144] = 4016, [4145] = 4145, - [4146] = 889, + [4146] = 4146, [4147] = 4147, - [4148] = 4148, - [4149] = 4149, + [4148] = 890, + [4149] = 893, [4150] = 4150, - [4151] = 896, + [4151] = 897, [4152] = 777, [4153] = 779, [4154] = 783, - [4155] = 904, + [4155] = 905, [4156] = 4156, [4157] = 4157, [4158] = 4158, - [4159] = 4159, - [4160] = 914, - [4161] = 4135, + [4159] = 3983, + [4160] = 915, + [4161] = 4134, [4162] = 4162, [4163] = 4163, - [4164] = 3968, - [4165] = 880, - [4166] = 4003, - [4167] = 4167, - [4168] = 4132, + [4164] = 4164, + [4165] = 3965, + [4166] = 880, + [4167] = 4001, + [4168] = 4123, [4169] = 4133, - [4170] = 855, + [4170] = 856, [4171] = 865, [4172] = 4011, - [4173] = 852, + [4173] = 930, [4174] = 4174, [4175] = 4175, [4176] = 4176, @@ -8713,33 +8713,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4188] = 4188, [4189] = 4189, [4190] = 4190, - [4191] = 4191, - [4192] = 4017, - [4193] = 3963, - [4194] = 4074, + [4191] = 4015, + [4192] = 4192, + [4193] = 3961, + [4194] = 4073, [4195] = 4195, [4196] = 4196, - [4197] = 4197, - [4198] = 3965, - [4199] = 933, - [4200] = 808, - [4201] = 873, - [4202] = 861, - [4203] = 4178, - [4204] = 829, + [4197] = 3963, + [4198] = 933, + [4199] = 808, + [4200] = 874, + [4201] = 858, + [4202] = 4178, + [4203] = 830, + [4204] = 4204, [4205] = 4205, - [4206] = 4206, - [4207] = 4179, - [4208] = 875, - [4209] = 908, + [4206] = 4180, + [4207] = 875, + [4208] = 909, + [4209] = 4209, [4210] = 4210, - [4211] = 4211, - [4212] = 4136, - [4213] = 812, + [4211] = 4135, + [4212] = 812, + [4213] = 791, [4214] = 778, - [4215] = 787, - [4216] = 794, - [4217] = 927, + [4215] = 788, + [4216] = 927, + [4217] = 4217, [4218] = 4218, [4219] = 4219, [4220] = 4220, @@ -8748,44 +8748,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4223] = 4125, [4224] = 4224, [4225] = 4225, - [4226] = 4226, - [4227] = 882, - [4228] = 884, - [4229] = 4135, - [4230] = 4015, - [4231] = 4032, + [4226] = 883, + [4227] = 885, + [4228] = 4134, + [4229] = 4010, + [4230] = 4016, + [4231] = 4231, [4232] = 4232, [4233] = 4233, [4234] = 4234, [4235] = 4235, - [4236] = 4236, - [4237] = 4011, - [4238] = 3967, + [4236] = 4011, + [4237] = 3964, + [4238] = 4238, [4239] = 4239, [4240] = 4240, - [4241] = 893, - [4242] = 894, - [4243] = 897, - [4244] = 906, + [4241] = 894, + [4242] = 895, + [4243] = 898, + [4244] = 907, [4245] = 921, [4246] = 4246, [4247] = 4247, - [4248] = 912, + [4248] = 913, [4249] = 4249, - [4250] = 850, - [4251] = 795, + [4250] = 851, + [4251] = 802, [4252] = 4252, [4253] = 4253, [4254] = 4254, - [4255] = 4255, + [4255] = 864, [4256] = 4256, - [4257] = 864, + [4257] = 4257, [4258] = 4258, - [4259] = 4259, - [4260] = 886, - [4261] = 890, - [4262] = 891, - [4263] = 899, + [4259] = 887, + [4260] = 891, + [4261] = 892, + [4262] = 900, + [4263] = 4263, [4264] = 4264, [4265] = 4265, [4266] = 4266, @@ -8797,18 +8797,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4272] = 4272, [4273] = 4273, [4274] = 4274, - [4275] = 4275, + [4275] = 4125, [4276] = 4276, - [4277] = 4277, + [4277] = 3935, [4278] = 4278, [4279] = 4279, - [4280] = 3937, + [4280] = 4280, [4281] = 4281, [4282] = 4282, [4283] = 4283, [4284] = 4284, [4285] = 4285, - [4286] = 4125, + [4286] = 4286, [4287] = 4287, [4288] = 4288, [4289] = 4289, @@ -8818,61 +8818,61 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4293] = 4293, [4294] = 4294, [4295] = 4295, - [4296] = 4296, - [4297] = 4297, - [4298] = 3971, + [4296] = 3936, + [4297] = 3969, + [4298] = 4298, [4299] = 4299, - [4300] = 4300, + [4300] = 3727, [4301] = 4301, - [4302] = 3727, + [4302] = 4302, [4303] = 4303, [4304] = 4304, [4305] = 4305, - [4306] = 3938, + [4306] = 4306, [4307] = 4307, [4308] = 4308, [4309] = 4309, [4310] = 4310, - [4311] = 4311, + [4311] = 4188, [4312] = 4312, [4313] = 4313, - [4314] = 4188, + [4314] = 4314, [4315] = 4315, [4316] = 4316, - [4317] = 4317, - [4318] = 4318, - [4319] = 1551, - [4320] = 4139, - [4321] = 1597, - [4322] = 4084, - [4323] = 4323, + [4317] = 1640, + [4318] = 4137, + [4319] = 1581, + [4320] = 4320, + [4321] = 4321, + [4322] = 4322, + [4323] = 4085, [4324] = 4324, [4325] = 4325, [4326] = 4326, [4327] = 4327, [4328] = 4328, - [4329] = 4329, + [4329] = 3921, [4330] = 4330, [4331] = 4331, [4332] = 4332, [4333] = 4333, - [4334] = 4334, - [4335] = 3981, + [4334] = 3978, + [4335] = 4335, [4336] = 4336, [4337] = 4337, [4338] = 4338, [4339] = 4339, [4340] = 4340, [4341] = 4341, - [4342] = 3937, - [4343] = 4343, - [4344] = 4197, - [4345] = 3970, - [4346] = 3956, - [4347] = 3957, - [4348] = 4191, - [4349] = 3989, - [4350] = 3971, + [4342] = 3935, + [4343] = 4196, + [4344] = 3967, + [4345] = 3954, + [4346] = 3955, + [4347] = 4190, + [4348] = 3986, + [4349] = 3969, + [4350] = 4350, [4351] = 4351, [4352] = 4352, [4353] = 4353, @@ -8899,44 +8899,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4374] = 4374, [4375] = 4375, [4376] = 4376, - [4377] = 4377, - [4378] = 3940, + [4377] = 3938, + [4378] = 4378, [4379] = 4379, [4380] = 4380, [4381] = 4381, - [4382] = 4382, - [4383] = 4140, + [4382] = 4138, + [4383] = 4383, [4384] = 4384, [4385] = 4385, [4386] = 4386, [4387] = 4387, [4388] = 4388, [4389] = 4389, - [4390] = 4388, + [4390] = 4390, [4391] = 4391, [4392] = 4392, [4393] = 4393, - [4394] = 4394, + [4394] = 4387, [4395] = 4395, [4396] = 4396, - [4397] = 4397, - [4398] = 4393, + [4397] = 4388, + [4398] = 4398, [4399] = 4399, - [4400] = 4394, - [4401] = 4391, + [4400] = 4400, + [4401] = 4401, [4402] = 4402, [4403] = 4403, - [4404] = 4404, - [4405] = 4405, + [4404] = 4396, + [4405] = 4395, [4406] = 4406, [4407] = 4407, [4408] = 4408, - [4409] = 4393, - [4410] = 4410, - [4411] = 4397, - [4412] = 4392, - [4413] = 4408, - [4414] = 4388, + [4409] = 4398, + [4410] = 4395, + [4411] = 4411, + [4412] = 4393, + [4413] = 4387, + [4414] = 4414, [4415] = 4415, [4416] = 4416, [4417] = 4417, @@ -8947,104 +8947,104 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4422] = 4422, [4423] = 4423, [4424] = 4424, - [4425] = 4425, - [4426] = 4426, + [4425] = 4390, + [4426] = 4411, [4427] = 4427, - [4428] = 4428, + [4428] = 4392, [4429] = 4429, [4430] = 4399, - [4431] = 4431, - [4432] = 4432, - [4433] = 4408, + [4431] = 4389, + [4432] = 4395, + [4433] = 3775, [4434] = 4434, - [4435] = 4404, - [4436] = 4436, + [4435] = 4399, + [4436] = 4392, [4437] = 4437, [4438] = 4438, - [4439] = 4389, + [4439] = 4429, [4440] = 4440, - [4441] = 4404, - [4442] = 4429, + [4441] = 4441, + [4442] = 4393, [4443] = 4443, [4444] = 4444, - [4445] = 4388, - [4446] = 4394, - [4447] = 4447, - [4448] = 3739, - [4449] = 4396, - [4450] = 4397, + [4445] = 3739, + [4446] = 4446, + [4447] = 4398, + [4448] = 4448, + [4449] = 4449, + [4450] = 4450, [4451] = 4451, [4452] = 4452, - [4453] = 4453, - [4454] = 4393, - [4455] = 4429, - [4456] = 4456, - [4457] = 4399, - [4458] = 4394, - [4459] = 4429, - [4460] = 4389, + [4453] = 4429, + [4454] = 4392, + [4455] = 4387, + [4456] = 4396, + [4457] = 4389, + [4458] = 4452, + [4459] = 4459, + [4460] = 4398, [4461] = 4461, - [4462] = 4396, - [4463] = 3774, - [4464] = 4422, - [4465] = 4408, - [4466] = 4396, - [4467] = 4389, - [4468] = 4388, - [4469] = 4397, - [4470] = 4470, - [4471] = 4393, - [4472] = 4424, - [4473] = 4389, - [4474] = 4396, - [4475] = 4404, - [4476] = 4404, + [4462] = 4429, + [4463] = 4463, + [4464] = 4406, + [4465] = 4389, + [4466] = 4419, + [4467] = 4392, + [4468] = 4393, + [4469] = 4469, + [4470] = 4423, + [4471] = 4389, + [4472] = 4395, + [4473] = 4399, + [4474] = 4395, + [4475] = 4406, + [4476] = 3772, [4477] = 4477, - [4478] = 4393, - [4479] = 3770, - [4480] = 4417, - [4481] = 4393, - [4482] = 4482, - [4483] = 4437, - [4484] = 4484, - [4485] = 4485, - [4486] = 4399, - [4487] = 4487, - [4488] = 4456, - [4489] = 4489, - [4490] = 4429, - [4491] = 4394, - [4492] = 4399, - [4493] = 4396, - [4494] = 4389, - [4495] = 4397, - [4496] = 4496, - [4497] = 4399, - [4498] = 4394, - [4499] = 4423, - [4500] = 4424, - [4501] = 4396, + [4478] = 4395, + [4479] = 4396, + [4480] = 4480, + [4481] = 4440, + [4482] = 4399, + [4483] = 4483, + [4484] = 4437, + [4485] = 4392, + [4486] = 4486, + [4487] = 4429, + [4488] = 4488, + [4489] = 4393, + [4490] = 4490, + [4491] = 4389, + [4492] = 4421, + [4493] = 4493, + [4494] = 4483, + [4495] = 4387, + [4496] = 4387, + [4497] = 4497, + [4498] = 4396, + [4499] = 4396, + [4500] = 4423, + [4501] = 4461, [4502] = 4502, - [4503] = 4397, - [4504] = 4504, - [4505] = 4424, - [4506] = 4399, - [4507] = 4424, + [4503] = 4423, + [4504] = 4392, + [4505] = 4393, + [4506] = 4423, + [4507] = 4507, [4508] = 4508, - [4509] = 4470, - [4510] = 4394, - [4511] = 4428, - [4512] = 4429, - [4513] = 4397, + [4509] = 4407, + [4510] = 4398, + [4511] = 4387, + [4512] = 4396, + [4513] = 4406, [4514] = 4429, - [4515] = 4387, + [4515] = 4429, [4516] = 4389, - [4517] = 4443, - [4518] = 4424, - [4519] = 4408, - [4520] = 4408, - [4521] = 4424, - [4522] = 4522, + [4517] = 4406, + [4518] = 4423, + [4519] = 4398, + [4520] = 4423, + [4521] = 4521, + [4522] = 4393, [4523] = 4523, [4524] = 4524, [4525] = 4525, @@ -9060,15 +9060,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4535] = 4535, [4536] = 4536, [4537] = 4537, - [4538] = 4538, - [4539] = 4539, + [4538] = 4526, + [4539] = 4530, [4540] = 4540, - [4541] = 4541, - [4542] = 4527, + [4541] = 4536, + [4542] = 4542, [4543] = 4543, - [4544] = 4529, - [4545] = 4537, - [4546] = 3774, + [4544] = 4544, + [4545] = 3775, + [4546] = 4546, [4547] = 4547, [4548] = 4548, [4549] = 4549, @@ -9076,7 +9076,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4551] = 4551, [4552] = 4552, [4553] = 4553, - [4554] = 4548, + [4554] = 4554, [4555] = 4555, [4556] = 4556, [4557] = 4557, @@ -9085,15 +9085,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4560] = 4560, [4561] = 4561, [4562] = 4562, - [4563] = 4547, - [4564] = 4548, + [4563] = 4543, + [4564] = 4544, [4565] = 4565, [4566] = 4566, [4567] = 4567, [4568] = 4568, [4569] = 4569, [4570] = 4570, - [4571] = 4547, + [4571] = 4571, [4572] = 4572, [4573] = 4573, [4574] = 4574, @@ -9103,33 +9103,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4578] = 4578, [4579] = 4579, [4580] = 4580, - [4581] = 4581, + [4581] = 4535, [4582] = 4582, [4583] = 4583, - [4584] = 4535, - [4585] = 4585, - [4586] = 4586, - [4587] = 4551, + [4584] = 4584, + [4585] = 4540, + [4586] = 4544, + [4587] = 4587, [4588] = 4588, - [4589] = 4589, - [4590] = 4590, - [4591] = 4591, - [4592] = 4527, - [4593] = 4529, - [4594] = 4537, - [4595] = 4547, - [4596] = 4548, - [4597] = 4597, - [4598] = 4598, - [4599] = 4599, - [4600] = 4539, - [4601] = 4550, - [4602] = 4558, - [4603] = 4577, + [4589] = 4526, + [4590] = 4530, + [4591] = 4536, + [4592] = 4543, + [4593] = 4544, + [4594] = 4594, + [4595] = 4595, + [4596] = 4596, + [4597] = 4537, + [4598] = 4547, + [4599] = 4556, + [4600] = 4574, + [4601] = 4601, + [4602] = 4602, + [4603] = 4554, [4604] = 4604, - [4605] = 4605, - [4606] = 4556, - [4607] = 4557, + [4605] = 4555, + [4606] = 4606, + [4607] = 4607, [4608] = 4608, [4609] = 4609, [4610] = 4610, @@ -9139,7 +9139,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4614] = 4614, [4615] = 4615, [4616] = 4616, - [4617] = 4617, + [4617] = 4582, [4618] = 4618, [4619] = 4619, [4620] = 4620, @@ -9147,39 +9147,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4622] = 4622, [4623] = 4623, [4624] = 4624, - [4625] = 4625, + [4625] = 4619, [4626] = 4626, - [4627] = 4579, + [4627] = 4627, [4628] = 4628, - [4629] = 4615, + [4629] = 4629, [4630] = 4630, - [4631] = 4631, + [4631] = 4536, [4632] = 4632, - [4633] = 4633, - [4634] = 4634, - [4635] = 4537, + [4633] = 4543, + [4634] = 4544, + [4635] = 3722, [4636] = 4636, - [4637] = 4547, - [4638] = 4548, + [4637] = 4637, + [4638] = 4555, [4639] = 4639, - [4640] = 4557, - [4641] = 3722, + [4640] = 4640, + [4641] = 4554, [4642] = 4642, [4643] = 4643, - [4644] = 4556, - [4645] = 3770, - [4646] = 4646, + [4644] = 4543, + [4645] = 4544, + [4646] = 4555, [4647] = 4647, - [4648] = 4547, - [4649] = 4548, - [4650] = 4650, - [4651] = 4557, + [4648] = 4554, + [4649] = 4649, + [4650] = 3772, + [4651] = 4651, [4652] = 4652, - [4653] = 4556, + [4653] = 4524, [4654] = 4654, [4655] = 4655, [4656] = 4656, - [4657] = 4526, + [4657] = 4657, [4658] = 4658, [4659] = 4659, [4660] = 4660, @@ -9191,18 +9191,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4666] = 4666, [4667] = 4667, [4668] = 4668, - [4669] = 4669, + [4669] = 4555, [4670] = 4670, - [4671] = 4671, + [4671] = 4130, [4672] = 4672, [4673] = 4673, [4674] = 4674, - [4675] = 4129, - [4676] = 4557, + [4675] = 4675, + [4676] = 4535, [4677] = 4677, [4678] = 4678, - [4679] = 4524, - [4680] = 4535, + [4679] = 4679, + [4680] = 4680, [4681] = 4681, [4682] = 4682, [4683] = 4683, @@ -9211,25 +9211,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4686] = 4686, [4687] = 4687, [4688] = 4688, - [4689] = 4689, + [4689] = 4661, [4690] = 4690, [4691] = 4691, - [4692] = 4670, + [4692] = 792, [4693] = 4693, [4694] = 4694, - [4695] = 4695, - [4696] = 788, - [4697] = 4697, + [4695] = 4583, + [4696] = 4696, + [4697] = 4668, [4698] = 4698, [4699] = 4699, - [4700] = 4580, + [4700] = 4555, [4701] = 4701, [4702] = 4702, - [4703] = 4673, + [4703] = 4530, [4704] = 4704, - [4705] = 4557, + [4705] = 4705, [4706] = 4706, - [4707] = 4529, + [4707] = 4707, [4708] = 4708, [4709] = 4709, [4710] = 4710, @@ -9246,10 +9246,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4721] = 4721, [4722] = 4722, [4723] = 4723, - [4724] = 4661, + [4724] = 4724, [4725] = 4725, [4726] = 4726, - [4727] = 4727, + [4727] = 4535, [4728] = 4728, [4729] = 4729, [4730] = 4730, @@ -9285,34 +9285,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4760] = 4760, [4761] = 4761, [4762] = 4762, - [4763] = 4763, + [4763] = 4535, [4764] = 4764, [4765] = 4765, - [4766] = 4766, + [4766] = 4302, [4767] = 4767, [4768] = 4768, [4769] = 4769, [4770] = 4770, - [4771] = 4303, - [4772] = 4535, + [4771] = 4771, + [4772] = 4772, [4773] = 4773, [4774] = 4774, [4775] = 4775, [4776] = 4776, [4777] = 4777, - [4778] = 4720, + [4778] = 4663, [4779] = 4779, [4780] = 4780, - [4781] = 4667, + [4781] = 4781, [4782] = 4782, [4783] = 4783, [4784] = 4784, [4785] = 4785, [4786] = 4786, [4787] = 4787, - [4788] = 4535, + [4788] = 4788, [4789] = 4789, - [4790] = 4790, + [4790] = 4655, [4791] = 4791, [4792] = 4792, [4793] = 4793, @@ -9323,36 +9323,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4798] = 4798, [4799] = 4799, [4800] = 4800, - [4801] = 4801, + [4801] = 4535, [4802] = 4802, - [4803] = 4535, + [4803] = 4803, [4804] = 4804, - [4805] = 4805, + [4805] = 3731, [4806] = 4806, [4807] = 4807, [4808] = 4808, - [4809] = 3732, - [4810] = 3714, + [4809] = 4809, + [4810] = 4810, [4811] = 4811, [4812] = 4812, [4813] = 4813, [4814] = 4814, [4815] = 4815, [4816] = 4816, - [4817] = 4632, + [4817] = 4817, [4818] = 4818, [4819] = 4819, [4820] = 4820, [4821] = 4821, - [4822] = 4605, + [4822] = 4629, [4823] = 4823, [4824] = 4824, [4825] = 4825, [4826] = 4826, [4827] = 4827, - [4828] = 4828, + [4828] = 4602, [4829] = 4829, - [4830] = 4830, + [4830] = 3714, [4831] = 4831, [4832] = 4832, [4833] = 4833, @@ -9388,7 +9388,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4863] = 4863, [4864] = 4864, [4865] = 4865, - [4866] = 4866, + [4866] = 4543, [4867] = 4867, [4868] = 4868, [4869] = 4869, @@ -9400,16 +9400,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4875] = 4875, [4876] = 4876, [4877] = 4877, - [4878] = 4528, + [4878] = 4878, [4879] = 4879, - [4880] = 4880, + [4880] = 4608, [4881] = 4881, [4882] = 4882, [4883] = 4883, - [4884] = 4884, - [4885] = 4610, + [4884] = 4525, + [4885] = 4885, [4886] = 4886, - [4887] = 4887, + [4887] = 4777, [4888] = 4888, [4889] = 4889, [4890] = 4890, @@ -9421,34 +9421,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4896] = 4896, [4897] = 4897, [4898] = 4898, - [4899] = 4899, - [4900] = 4900, - [4901] = 4704, - [4902] = 4526, + [4899] = 4699, + [4900] = 4524, + [4901] = 4540, + [4902] = 4823, [4903] = 4903, - [4904] = 4551, - [4905] = 4824, - [4906] = 4835, - [4907] = 4907, - [4908] = 4908, + [4904] = 4904, + [4905] = 4905, + [4906] = 4906, + [4907] = 4526, + [4908] = 4834, [4909] = 4909, [4910] = 4910, [4911] = 4911, [4912] = 4912, - [4913] = 4913, - [4914] = 4914, - [4915] = 4527, - [4916] = 4611, + [4913] = 4609, + [4914] = 4674, + [4915] = 4915, + [4916] = 4916, [4917] = 4917, [4918] = 4918, - [4919] = 4919, + [4919] = 4664, [4920] = 4920, [4921] = 4921, - [4922] = 4668, + [4922] = 4922, [4923] = 4923, - [4924] = 4924, + [4924] = 4535, [4925] = 4925, - [4926] = 4535, + [4926] = 4926, [4927] = 4927, [4928] = 4928, [4929] = 4929, @@ -9456,110 +9456,110 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4931] = 4931, [4932] = 4932, [4933] = 4933, - [4934] = 4934, - [4935] = 4879, + [4934] = 3704, + [4935] = 4935, [4936] = 4936, - [4937] = 3704, + [4937] = 4937, [4938] = 4938, - [4939] = 4939, - [4940] = 4824, - [4941] = 4910, - [4942] = 4942, - [4943] = 4943, - [4944] = 1548, - [4945] = 1596, + [4939] = 1542, + [4940] = 4940, + [4941] = 4941, + [4942] = 1576, + [4943] = 4823, + [4944] = 4944, + [4945] = 4930, [4946] = 4946, - [4947] = 4894, + [4947] = 4947, [4948] = 4948, - [4949] = 4949, + [4949] = 4864, [4950] = 4950, [4951] = 4951, - [4952] = 4728, - [4953] = 4953, + [4952] = 4952, + [4953] = 4721, [4954] = 4954, [4955] = 4955, - [4956] = 4730, - [4957] = 4957, + [4956] = 4956, + [4957] = 4724, [4958] = 4958, [4959] = 4959, [4960] = 4960, - [4961] = 4908, - [4962] = 4962, + [4961] = 4961, + [4962] = 4916, [4963] = 4963, - [4964] = 4894, - [4965] = 4910, + [4964] = 4964, + [4965] = 4930, [4966] = 4966, [4967] = 4967, [4968] = 4968, - [4969] = 4527, + [4969] = 4969, [4970] = 4970, [4971] = 4971, - [4972] = 4972, + [4972] = 4774, [4973] = 4973, - [4974] = 4974, + [4974] = 4530, [4975] = 4975, - [4976] = 4529, + [4976] = 4526, [4977] = 4977, [4978] = 4978, [4979] = 4979, [4980] = 4980, [4981] = 4981, [4982] = 4982, - [4983] = 4529, - [4984] = 4984, + [4983] = 4983, + [4984] = 4530, [4985] = 4985, [4986] = 4986, [4987] = 4987, [4988] = 4988, [4989] = 4989, [4990] = 4990, - [4991] = 4537, + [4991] = 4991, [4992] = 4992, [4993] = 4993, - [4994] = 4566, - [4995] = 4525, - [4996] = 4996, - [4997] = 4547, - [4998] = 4548, + [4994] = 4536, + [4995] = 4995, + [4996] = 4529, + [4997] = 4997, + [4998] = 4864, [4999] = 4999, - [5000] = 4578, - [5001] = 5001, + [5000] = 4543, + [5001] = 4544, [5002] = 5002, [5003] = 5003, - [5004] = 5004, + [5004] = 4579, [5005] = 5005, - [5006] = 5006, - [5007] = 4539, - [5008] = 4550, + [5006] = 4580, + [5007] = 4537, + [5008] = 4547, [5009] = 5009, - [5010] = 4558, - [5011] = 4577, + [5010] = 4556, + [5011] = 5011, [5012] = 5012, - [5013] = 5013, + [5013] = 4574, [5014] = 5014, - [5015] = 5015, - [5016] = 4588, + [5015] = 4587, + [5016] = 5016, [5017] = 5017, [5018] = 5018, - [5019] = 5019, - [5020] = 4617, + [5019] = 4530, + [5020] = 5020, [5021] = 5021, - [5022] = 4529, + [5022] = 5022, [5023] = 5023, [5024] = 5024, [5025] = 5025, [5026] = 5026, [5027] = 5027, [5028] = 5028, - [5029] = 4556, - [5030] = 5030, + [5029] = 5029, + [5030] = 4554, [5031] = 5031, [5032] = 5032, [5033] = 5033, - [5034] = 4557, + [5034] = 5034, [5035] = 5035, - [5036] = 5036, - [5037] = 5037, + [5036] = 4555, + [5037] = 4536, [5038] = 5038, [5039] = 5039, [5040] = 5040, @@ -9578,9 +9578,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5053] = 5053, [5054] = 5054, [5055] = 5055, - [5056] = 4537, + [5056] = 5056, [5057] = 5057, - [5058] = 5058, + [5058] = 4548, [5059] = 5059, [5060] = 5060, [5061] = 5061, @@ -9613,7 +9613,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5088] = 5088, [5089] = 5089, [5090] = 5090, - [5091] = 4541, + [5091] = 5091, [5092] = 5092, [5093] = 5093, [5094] = 5094, @@ -9627,38 +9627,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5102] = 5102, [5103] = 5103, [5104] = 5104, - [5105] = 5105, - [5106] = 3739, - [5107] = 5107, + [5105] = 3739, + [5106] = 5106, + [5107] = 4560, [5108] = 5108, [5109] = 5109, - [5110] = 4562, + [5110] = 5110, [5111] = 5111, [5112] = 5112, [5113] = 5113, [5114] = 5114, - [5115] = 5115, - [5116] = 4367, + [5115] = 4358, + [5116] = 4679, [5117] = 5117, [5118] = 5118, - [5119] = 4622, + [5119] = 5119, [5120] = 5120, [5121] = 5121, [5122] = 5122, [5123] = 5123, - [5124] = 5124, + [5124] = 4562, [5125] = 5125, - [5126] = 5126, - [5127] = 5127, + [5126] = 4604, + [5127] = 4699, [5128] = 5128, [5129] = 5129, [5130] = 5130, [5131] = 5131, - [5132] = 4683, + [5132] = 4611, [5133] = 5133, - [5134] = 4567, + [5134] = 5134, [5135] = 5135, - [5136] = 4704, + [5136] = 5136, [5137] = 5137, [5138] = 5138, [5139] = 5139, @@ -9683,344 +9683,344 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5158] = 5158, [5159] = 5159, [5160] = 5160, - [5161] = 5161, + [5161] = 2656, [5162] = 5162, [5163] = 5163, - [5164] = 2658, + [5164] = 5164, [5165] = 5165, [5166] = 5166, - [5167] = 5167, + [5167] = 2684, [5168] = 5168, [5169] = 5169, [5170] = 5170, [5171] = 5171, - [5172] = 5172, + [5172] = 5150, [5173] = 5173, [5174] = 5174, [5175] = 5175, [5176] = 5176, - [5177] = 5177, + [5177] = 2690, [5178] = 5178, [5179] = 5179, - [5180] = 2684, - [5181] = 5146, - [5182] = 2717, + [5180] = 5180, + [5181] = 5181, + [5182] = 5182, [5183] = 5183, - [5184] = 5168, + [5184] = 5184, [5185] = 5185, - [5186] = 5186, + [5186] = 5170, [5187] = 5187, [5188] = 5188, [5189] = 5189, [5190] = 5190, - [5191] = 5168, - [5192] = 3836, + [5191] = 5191, + [5192] = 3837, [5193] = 5193, - [5194] = 5194, + [5194] = 5170, [5195] = 5195, - [5196] = 5161, + [5196] = 5196, [5197] = 5197, [5198] = 5198, [5199] = 5199, [5200] = 5200, [5201] = 5201, - [5202] = 2689, - [5203] = 2696, - [5204] = 5168, + [5202] = 5202, + [5203] = 5203, + [5204] = 5164, [5205] = 5205, - [5206] = 2688, - [5207] = 5207, - [5208] = 2704, - [5209] = 5157, - [5210] = 5210, - [5211] = 5211, - [5212] = 5156, - [5213] = 5211, - [5214] = 5214, + [5206] = 5206, + [5207] = 5178, + [5208] = 2708, + [5209] = 5170, + [5210] = 2709, + [5211] = 2714, + [5212] = 5212, + [5213] = 5157, + [5214] = 2682, [5215] = 5215, - [5216] = 2656, + [5216] = 5216, [5217] = 5217, - [5218] = 5218, - [5219] = 5219, - [5220] = 5160, + [5218] = 2657, + [5219] = 5159, + [5220] = 5220, [5221] = 5221, - [5222] = 5222, - [5223] = 5176, - [5224] = 2715, - [5225] = 5178, - [5226] = 5226, + [5222] = 5175, + [5223] = 5179, + [5224] = 5224, + [5225] = 5225, + [5226] = 5196, [5227] = 5227, - [5228] = 5228, - [5229] = 5178, - [5230] = 2705, - [5231] = 2716, + [5228] = 2716, + [5229] = 5229, + [5230] = 2663, + [5231] = 5179, [5232] = 5232, [5233] = 5233, [5234] = 5234, [5235] = 5235, - [5236] = 2683, - [5237] = 2711, + [5236] = 2715, + [5237] = 2688, [5238] = 5238, - [5239] = 5239, - [5240] = 5238, + [5239] = 2704, + [5240] = 5155, [5241] = 5241, [5242] = 5242, - [5243] = 2677, + [5243] = 5174, [5244] = 5244, - [5245] = 5245, + [5245] = 2679, [5246] = 5246, [5247] = 5247, - [5248] = 5148, - [5249] = 5151, + [5248] = 5248, + [5249] = 5249, [5250] = 5250, [5251] = 5251, - [5252] = 5252, - [5253] = 5251, + [5252] = 5246, + [5253] = 5253, [5254] = 5254, - [5255] = 5255, - [5256] = 5256, - [5257] = 5257, - [5258] = 5160, + [5255] = 5149, + [5256] = 5152, + [5257] = 2667, + [5258] = 5258, [5259] = 5259, - [5260] = 5176, - [5261] = 5178, + [5260] = 5258, + [5261] = 5261, [5262] = 5262, - [5263] = 5263, + [5263] = 5159, [5264] = 5264, [5265] = 5265, - [5266] = 5266, - [5267] = 5267, + [5266] = 5175, + [5267] = 5179, [5268] = 5268, [5269] = 5269, [5270] = 5270, - [5271] = 5160, + [5271] = 5271, [5272] = 5272, [5273] = 5273, - [5274] = 5274, - [5275] = 3852, + [5274] = 5175, + [5275] = 5275, [5276] = 5276, [5277] = 5277, - [5278] = 5176, - [5279] = 1660, + [5278] = 5159, + [5279] = 5279, [5280] = 5280, - [5281] = 5222, - [5282] = 5255, - [5283] = 5283, - [5284] = 5284, - [5285] = 5254, + [5281] = 5281, + [5282] = 5282, + [5283] = 1660, + [5284] = 5282, + [5285] = 5285, [5286] = 5286, - [5287] = 5232, - [5288] = 5198, - [5289] = 5289, + [5287] = 5287, + [5288] = 5265, + [5289] = 5159, [5290] = 5290, - [5291] = 5291, - [5292] = 5292, - [5293] = 5293, + [5291] = 5232, + [5292] = 3852, + [5293] = 5201, [5294] = 5294, [5295] = 5295, [5296] = 5296, - [5297] = 5297, + [5297] = 5197, [5298] = 5298, [5299] = 5299, [5300] = 5300, [5301] = 5301, - [5302] = 5187, + [5302] = 5302, [5303] = 5303, - [5304] = 5233, - [5305] = 5165, - [5306] = 5267, - [5307] = 5147, + [5304] = 5304, + [5305] = 5305, + [5306] = 5183, + [5307] = 5307, [5308] = 5308, [5309] = 5309, - [5310] = 5177, - [5311] = 5311, - [5312] = 5195, - [5313] = 5269, - [5314] = 5314, - [5315] = 5158, - [5316] = 5316, - [5317] = 5242, - [5318] = 5289, - [5319] = 5297, + [5310] = 5310, + [5311] = 5203, + [5312] = 5312, + [5313] = 5313, + [5314] = 5206, + [5315] = 5212, + [5316] = 5224, + [5317] = 5144, + [5318] = 5244, + [5319] = 5185, [5320] = 5320, [5321] = 5321, - [5322] = 5221, + [5322] = 5198, [5323] = 5323, [5324] = 5324, [5325] = 5325, - [5326] = 5172, - [5327] = 5327, - [5328] = 2702, - [5329] = 5329, - [5330] = 2712, + [5326] = 5163, + [5327] = 5168, + [5328] = 5328, + [5329] = 5290, + [5330] = 5330, [5331] = 5331, - [5332] = 5174, - [5333] = 5262, - [5334] = 5334, + [5332] = 2685, + [5333] = 5333, + [5334] = 2696, [5335] = 5335, - [5336] = 5336, - [5337] = 5176, - [5338] = 5338, + [5336] = 5262, + [5337] = 5337, + [5338] = 5175, [5339] = 5339, - [5340] = 5340, + [5340] = 5158, [5341] = 5341, - [5342] = 5274, + [5342] = 5277, [5343] = 5343, - [5344] = 1676, - [5345] = 1677, - [5346] = 5289, - [5347] = 5297, - [5348] = 5222, - [5349] = 5274, + [5344] = 5344, + [5345] = 5345, + [5346] = 5346, + [5347] = 1676, + [5348] = 1677, + [5349] = 5304, [5350] = 5350, - [5351] = 5351, - [5352] = 5289, - [5353] = 5190, - [5354] = 5297, - [5355] = 5355, - [5356] = 5356, + [5351] = 5203, + [5352] = 5352, + [5353] = 5206, + [5354] = 5224, + [5355] = 5193, + [5356] = 5304, [5357] = 5357, - [5358] = 5214, - [5359] = 5359, + [5358] = 5203, + [5359] = 5206, [5360] = 5360, [5361] = 5361, - [5362] = 5362, - [5363] = 5270, - [5364] = 5244, - [5365] = 2670, - [5366] = 5149, - [5367] = 5147, - [5368] = 5156, - [5369] = 5187, - [5370] = 5370, - [5371] = 5274, - [5372] = 5158, - [5373] = 5156, - [5374] = 5301, - [5375] = 5158, + [5362] = 5304, + [5363] = 5276, + [5364] = 5364, + [5365] = 5365, + [5366] = 5248, + [5367] = 5153, + [5368] = 5144, + [5369] = 5369, + [5370] = 5221, + [5371] = 5305, + [5372] = 5372, + [5373] = 5155, + [5374] = 5374, + [5375] = 5375, [5376] = 5159, - [5377] = 5377, - [5378] = 5160, - [5379] = 5156, - [5380] = 5380, - [5381] = 5381, - [5382] = 5159, - [5383] = 5161, - [5384] = 5161, - [5385] = 2693, - [5386] = 5264, - [5387] = 5158, - [5388] = 3853, - [5389] = 5159, - [5390] = 5390, - [5391] = 5161, - [5392] = 5176, - [5393] = 5272, - [5394] = 5320, - [5395] = 5321, - [5396] = 5256, - [5397] = 5274, - [5398] = 2652, - [5399] = 5143, - [5400] = 5289, - [5401] = 2680, - [5402] = 5298, - [5403] = 5145, - [5404] = 5404, + [5377] = 5158, + [5378] = 5378, + [5379] = 5379, + [5380] = 5203, + [5381] = 5163, + [5382] = 5304, + [5383] = 5164, + [5384] = 5268, + [5385] = 5206, + [5386] = 5386, + [5387] = 5183, + [5388] = 2694, + [5389] = 5389, + [5390] = 5175, + [5391] = 5155, + [5392] = 5155, + [5393] = 5279, + [5394] = 5321, + [5395] = 2652, + [5396] = 5146, + [5397] = 2683, + [5398] = 3853, + [5399] = 5399, + [5400] = 5147, + [5401] = 5401, + [5402] = 5324, + [5403] = 5403, + [5404] = 5158, [5405] = 5405, - [5406] = 5168, - [5407] = 5168, - [5408] = 5408, - [5409] = 5178, - [5410] = 5327, - [5411] = 5152, - [5412] = 5412, - [5413] = 5329, + [5406] = 5179, + [5407] = 5170, + [5408] = 5158, + [5409] = 5331, + [5410] = 5156, + [5411] = 5163, + [5412] = 5333, + [5413] = 5220, [5414] = 5270, - [5415] = 5297, - [5416] = 5217, - [5417] = 5178, - [5418] = 5331, - [5419] = 5419, - [5420] = 5242, - [5421] = 5335, - [5422] = 5194, - [5423] = 5150, - [5424] = 5424, + [5415] = 5179, + [5416] = 5335, + [5417] = 5163, + [5418] = 5164, + [5419] = 5276, + [5420] = 5339, + [5421] = 5164, + [5422] = 5422, + [5423] = 5341, + [5424] = 5170, [5425] = 5425, - [5426] = 5338, + [5426] = 5244, [5427] = 5427, [5428] = 5428, [5429] = 5429, - [5430] = 5430, + [5430] = 5195, [5431] = 5431, - [5432] = 5432, + [5432] = 5233, [5433] = 5433, - [5434] = 5431, - [5435] = 5435, - [5436] = 5277, - [5437] = 5325, - [5438] = 5320, - [5439] = 5168, - [5440] = 5308, - [5441] = 3854, - [5442] = 5160, - [5443] = 5443, - [5444] = 5425, + [5434] = 5434, + [5435] = 5281, + [5436] = 5328, + [5437] = 5321, + [5438] = 5438, + [5439] = 5439, + [5440] = 5386, + [5441] = 5216, + [5442] = 5442, + [5443] = 5422, + [5444] = 5287, [5445] = 5445, - [5446] = 5284, - [5447] = 5189, + [5446] = 5446, + [5447] = 5294, [5448] = 5448, - [5449] = 5290, + [5449] = 5181, [5450] = 5450, - [5451] = 5451, - [5452] = 5452, - [5453] = 2691, - [5454] = 5207, - [5455] = 5408, - [5456] = 5316, - [5457] = 5291, - [5458] = 5159, - [5459] = 5452, - [5460] = 5244, - [5461] = 2697, - [5462] = 5265, - [5463] = 5294, - [5464] = 5160, - [5465] = 5262, - [5466] = 5176, - [5467] = 5295, - [5468] = 5468, - [5469] = 5152, - [5470] = 5178, - [5471] = 5296, - [5472] = 5218, - [5473] = 5300, - [5474] = 5235, - [5475] = 5475, - [5476] = 5381, - [5477] = 5273, + [5451] = 5399, + [5452] = 2675, + [5453] = 5189, + [5454] = 5217, + [5455] = 5320, + [5456] = 5298, + [5457] = 5299, + [5458] = 2692, + [5459] = 5170, + [5460] = 5460, + [5461] = 5159, + [5462] = 5300, + [5463] = 5262, + [5464] = 5175, + [5465] = 5301, + [5466] = 5156, + [5467] = 5179, + [5468] = 5303, + [5469] = 5248, + [5470] = 5309, + [5471] = 5235, + [5472] = 5269, + [5473] = 5242, + [5474] = 5474, + [5475] = 3854, + [5476] = 5379, + [5477] = 5259, [5478] = 5478, [5479] = 5479, [5480] = 5480, [5481] = 5481, [5482] = 5482, [5483] = 5483, - [5484] = 5482, + [5484] = 5484, [5485] = 5485, [5486] = 5486, [5487] = 5487, [5488] = 5488, - [5489] = 5478, + [5489] = 5489, [5490] = 5490, [5491] = 5491, [5492] = 5492, [5493] = 5493, [5494] = 5494, [5495] = 5495, - [5496] = 5486, - [5497] = 5497, - [5498] = 5498, + [5496] = 5496, + [5497] = 5492, + [5498] = 5481, [5499] = 5499, [5500] = 5500, [5501] = 5501, @@ -10030,77 +10030,77 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5505] = 5505, [5506] = 5506, [5507] = 5507, - [5508] = 5494, + [5508] = 5508, [5509] = 5509, - [5510] = 5510, - [5511] = 5511, - [5512] = 5512, + [5510] = 5495, + [5511] = 5503, + [5512] = 5495, [5513] = 5513, - [5514] = 5514, + [5514] = 5483, [5515] = 5515, [5516] = 5516, - [5517] = 5486, + [5517] = 5517, [5518] = 5518, [5519] = 5519, - [5520] = 5520, + [5520] = 5481, [5521] = 5521, - [5522] = 5514, - [5523] = 5515, + [5522] = 5522, + [5523] = 5523, [5524] = 5524, - [5525] = 5478, - [5526] = 5526, + [5525] = 5525, + [5526] = 5488, [5527] = 5527, - [5528] = 5509, + [5528] = 5528, [5529] = 5529, [5530] = 5530, - [5531] = 5531, + [5531] = 5502, [5532] = 5532, [5533] = 5533, - [5534] = 5534, - [5535] = 5515, + [5534] = 5480, + [5535] = 5489, [5536] = 5536, - [5537] = 5504, - [5538] = 5515, + [5537] = 5537, + [5538] = 5536, [5539] = 5539, [5540] = 5488, - [5541] = 5478, - [5542] = 5534, + [5541] = 5489, + [5542] = 5542, [5543] = 5491, [5544] = 5492, [5545] = 5493, - [5546] = 5504, - [5547] = 5547, - [5548] = 5533, - [5549] = 5549, + [5546] = 5546, + [5547] = 5521, + [5548] = 5548, + [5549] = 5539, [5550] = 5550, [5551] = 5551, [5552] = 5552, [5553] = 5501, - [5554] = 5534, - [5555] = 5506, - [5556] = 5556, - [5557] = 5557, + [5554] = 5554, + [5555] = 5555, + [5556] = 5507, + [5557] = 5495, [5558] = 5558, - [5559] = 5504, + [5559] = 5559, [5560] = 5560, [5561] = 5561, [5562] = 5562, - [5563] = 5530, - [5564] = 5488, - [5565] = 5478, - [5566] = 5529, - [5567] = 5491, + [5563] = 5555, + [5564] = 5561, + [5565] = 5565, + [5566] = 5566, + [5567] = 5493, [5568] = 5568, [5569] = 5569, - [5570] = 5510, - [5571] = 5514, + [5570] = 5570, + [5571] = 5501, [5572] = 5572, - [5573] = 5504, - [5574] = 5482, - [5575] = 5536, - [5576] = 5576, + [5573] = 5536, + [5574] = 5487, + [5575] = 5483, + [5576] = 5569, [5577] = 5577, - [5578] = 5501, + [5578] = 5539, [5579] = 5579, [5580] = 5580, [5581] = 5581, @@ -10109,301 +10109,301 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5584] = 5491, [5585] = 5585, [5586] = 5488, - [5587] = 5514, + [5587] = 5587, [5588] = 5588, - [5589] = 5558, - [5590] = 5590, + [5589] = 5589, + [5590] = 5489, [5591] = 5591, - [5592] = 5482, + [5592] = 5559, [5593] = 5593, [5594] = 5594, - [5595] = 5595, - [5596] = 5500, - [5597] = 5510, + [5595] = 5490, + [5596] = 5596, + [5597] = 5483, [5598] = 5598, - [5599] = 5492, + [5599] = 5569, [5600] = 5600, - [5601] = 5493, + [5601] = 5585, [5602] = 5488, - [5603] = 5478, - [5604] = 5492, - [5605] = 5510, + [5603] = 5489, + [5604] = 5559, + [5605] = 5491, [5606] = 5606, - [5607] = 5491, - [5608] = 5492, - [5609] = 5493, + [5607] = 5492, + [5608] = 5493, + [5609] = 5483, [5610] = 5491, - [5611] = 5581, + [5611] = 5611, [5612] = 5492, [5613] = 5493, - [5614] = 5534, - [5615] = 5615, - [5616] = 5492, - [5617] = 5504, - [5618] = 5479, - [5619] = 5493, - [5620] = 5620, - [5621] = 5501, + [5614] = 5488, + [5615] = 5488, + [5616] = 5616, + [5617] = 5492, + [5618] = 5618, + [5619] = 5619, + [5620] = 5527, + [5621] = 5569, [5622] = 5501, [5623] = 5623, - [5624] = 5624, - [5625] = 5625, - [5626] = 5486, - [5627] = 5524, + [5624] = 5501, + [5625] = 5559, + [5626] = 5626, + [5627] = 5616, [5628] = 5628, [5629] = 5629, [5630] = 5630, - [5631] = 5623, - [5632] = 5632, - [5633] = 5495, - [5634] = 5585, + [5631] = 5631, + [5632] = 5481, + [5633] = 5536, + [5634] = 5634, [5635] = 5635, - [5636] = 5620, + [5636] = 5500, [5637] = 5637, [5638] = 5638, - [5639] = 5527, - [5640] = 5632, - [5641] = 5514, - [5642] = 5642, - [5643] = 5493, - [5644] = 5550, + [5639] = 5487, + [5640] = 5618, + [5641] = 5493, + [5642] = 5539, + [5643] = 5503, + [5644] = 5581, [5645] = 5645, - [5646] = 5556, - [5647] = 5591, - [5648] = 5598, + [5646] = 5646, + [5647] = 5626, + [5648] = 5646, [5649] = 5649, [5650] = 5650, - [5651] = 5494, - [5652] = 5652, - [5653] = 5645, - [5654] = 5515, + [5651] = 5483, + [5652] = 5581, + [5653] = 5529, + [5654] = 5654, [5655] = 5655, [5656] = 5656, - [5657] = 5628, - [5658] = 5629, - [5659] = 5534, - [5660] = 5660, - [5661] = 5534, - [5662] = 5569, - [5663] = 5635, - [5664] = 5483, - [5665] = 5519, - [5666] = 5510, + [5657] = 5536, + [5658] = 5658, + [5659] = 5539, + [5660] = 5658, + [5661] = 5631, + [5662] = 5523, + [5663] = 5500, + [5664] = 5533, + [5665] = 5572, + [5666] = 5569, [5667] = 5667, - [5668] = 5581, - [5669] = 5581, - [5670] = 5670, - [5671] = 5486, - [5672] = 5672, - [5673] = 5526, - [5674] = 5529, - [5675] = 5530, - [5676] = 5642, - [5677] = 5495, - [5678] = 5480, - [5679] = 5623, - [5680] = 5479, - [5681] = 5480, - [5682] = 5660, - [5683] = 5511, - [5684] = 5511, - [5685] = 5494, + [5668] = 5530, + [5669] = 5588, + [5670] = 5518, + [5671] = 5671, + [5672] = 5565, + [5673] = 5539, + [5674] = 5539, + [5675] = 5635, + [5676] = 5656, + [5677] = 5519, + [5678] = 5521, + [5679] = 5487, + [5680] = 5480, + [5681] = 5529, + [5682] = 5682, + [5683] = 5515, + [5684] = 5566, + [5685] = 5629, [5686] = 5686, - [5687] = 5569, - [5688] = 5660, - [5689] = 5550, - [5690] = 5511, - [5691] = 5691, - [5692] = 5656, - [5693] = 5551, - [5694] = 5500, - [5695] = 5506, - [5696] = 5660, - [5697] = 5511, - [5698] = 5569, - [5699] = 5534, - [5700] = 5516, - [5701] = 5701, - [5702] = 5526, + [5687] = 5565, + [5688] = 5489, + [5689] = 5689, + [5690] = 5634, + [5691] = 5530, + [5692] = 5645, + [5693] = 5682, + [5694] = 5490, + [5695] = 5528, + [5696] = 5548, + [5697] = 5682, + [5698] = 5515, + [5699] = 5478, + [5700] = 5532, + [5701] = 5487, + [5702] = 5491, [5703] = 5703, - [5704] = 5479, - [5705] = 5502, - [5706] = 5660, - [5707] = 5531, - [5708] = 5557, - [5709] = 5511, - [5710] = 5482, - [5711] = 5561, + [5704] = 5515, + [5705] = 5631, + [5706] = 5548, + [5707] = 5655, + [5708] = 5682, + [5709] = 5565, + [5710] = 5559, + [5711] = 5565, [5712] = 5712, - [5713] = 5572, - [5714] = 5514, - [5715] = 5569, - [5716] = 5716, - [5717] = 5480, - [5718] = 5499, - [5719] = 5551, + [5713] = 5507, + [5714] = 5561, + [5715] = 5570, + [5716] = 5565, + [5717] = 5572, + [5718] = 5655, + [5719] = 5525, [5720] = 5720, [5721] = 5569, - [5722] = 5480, - [5723] = 5723, - [5724] = 5625, - [5725] = 5519, - [5726] = 5629, - [5727] = 5488, - [5728] = 5478, - [5729] = 5729, - [5730] = 5532, - [5731] = 5731, - [5732] = 5491, - [5733] = 5733, - [5734] = 5519, - [5735] = 5526, - [5736] = 5526, - [5737] = 5510, - [5738] = 5529, - [5739] = 5529, - [5740] = 5530, - [5741] = 5550, - [5742] = 5530, - [5743] = 5492, - [5744] = 5550, - [5745] = 5500, - [5746] = 5551, - [5747] = 5483, - [5748] = 5667, - [5749] = 5493, - [5750] = 5551, - [5751] = 5576, - [5752] = 5506, - [5753] = 5506, - [5754] = 5557, - [5755] = 5524, - [5756] = 5510, - [5757] = 5561, - [5758] = 5509, - [5759] = 5572, - [5760] = 5557, - [5761] = 5561, + [5722] = 5572, + [5723] = 5501, + [5724] = 5724, + [5725] = 5611, + [5726] = 5570, + [5727] = 5682, + [5728] = 5629, + [5729] = 5515, + [5730] = 5501, + [5731] = 5569, + [5732] = 5732, + [5733] = 5629, + [5734] = 5478, + [5735] = 5518, + [5736] = 5631, + [5737] = 5488, + [5738] = 5519, + [5739] = 5565, + [5740] = 5489, + [5741] = 5521, + [5742] = 5551, + [5743] = 5529, + [5744] = 5572, + [5745] = 5490, + [5746] = 5491, + [5747] = 5525, + [5748] = 5518, + [5749] = 5492, + [5750] = 5502, + [5751] = 5530, + [5752] = 5533, + [5753] = 5548, + [5754] = 5519, + [5755] = 5478, + [5756] = 5493, + [5757] = 5537, + [5758] = 5507, + [5759] = 5521, + [5760] = 5561, + [5761] = 5529, [5762] = 5579, - [5763] = 5533, - [5764] = 5582, - [5765] = 5500, - [5766] = 5766, - [5767] = 5536, - [5768] = 5733, - [5769] = 5572, - [5770] = 5557, - [5771] = 5558, - [5772] = 5591, - [5773] = 5598, - [5774] = 5500, - [5775] = 5561, - [5776] = 5716, - [5777] = 5777, - [5778] = 5483, - [5779] = 5667, + [5763] = 5491, + [5764] = 5570, + [5765] = 5582, + [5766] = 5508, + [5767] = 5767, + [5768] = 5530, + [5769] = 5490, + [5770] = 5546, + [5771] = 5548, + [5772] = 5555, + [5773] = 5566, + [5774] = 5585, + [5775] = 5626, + [5776] = 5478, + [5777] = 5484, + [5778] = 5492, + [5779] = 5507, [5780] = 5488, - [5781] = 5781, - [5782] = 5576, - [5783] = 5478, - [5784] = 5629, - [5785] = 5482, - [5786] = 5552, - [5787] = 5623, + [5781] = 5561, + [5782] = 5782, + [5783] = 5489, + [5784] = 5518, + [5785] = 5559, + [5786] = 5646, + [5787] = 5488, [5788] = 5491, - [5789] = 5524, + [5789] = 5570, [5790] = 5492, [5791] = 5493, - [5792] = 5509, - [5793] = 5533, - [5794] = 5483, - [5795] = 5536, + [5792] = 5523, + [5793] = 5490, + [5794] = 5489, + [5795] = 5525, [5796] = 5796, - [5797] = 5501, - [5798] = 5667, - [5799] = 5558, + [5797] = 5525, + [5798] = 5523, + [5799] = 5502, [5800] = 5501, [5801] = 5628, - [5802] = 5501, - [5803] = 5629, - [5804] = 5591, - [5805] = 5598, - [5806] = 5576, - [5807] = 5524, - [5808] = 5808, - [5809] = 5733, - [5810] = 5509, - [5811] = 5495, - [5812] = 5488, - [5813] = 5533, - [5814] = 5536, - [5815] = 5482, - [5816] = 5629, + [5802] = 5802, + [5803] = 5489, + [5804] = 5502, + [5805] = 5501, + [5806] = 5533, + [5807] = 5537, + [5808] = 5533, + [5809] = 5631, + [5810] = 5720, + [5811] = 5537, + [5812] = 5546, + [5813] = 5546, + [5814] = 5555, + [5815] = 5559, + [5816] = 5655, [5817] = 5628, - [5818] = 5558, - [5819] = 5686, - [5820] = 5660, - [5821] = 5691, - [5822] = 5591, - [5823] = 5808, - [5824] = 5478, - [5825] = 5825, + [5818] = 5555, + [5819] = 5487, + [5820] = 5566, + [5821] = 5580, + [5822] = 5566, + [5823] = 5479, + [5824] = 5585, + [5825] = 5682, [5826] = 5826, - [5827] = 5482, + [5827] = 5559, [5828] = 5628, - [5829] = 5598, - [5830] = 5501, - [5831] = 5660, - [5832] = 5733, - [5833] = 5488, - [5834] = 5581, - [5835] = 5482, - [5836] = 5836, - [5837] = 5593, - [5838] = 5511, - [5839] = 5482, - [5840] = 5623, - [5841] = 5491, - [5842] = 5479, - [5843] = 5492, + [5829] = 5626, + [5830] = 5495, + [5831] = 5646, + [5832] = 5629, + [5833] = 5585, + [5834] = 5686, + [5835] = 5559, + [5836] = 5626, + [5837] = 5481, + [5838] = 5631, + [5839] = 5559, + [5840] = 5491, + [5841] = 5492, + [5842] = 5593, + [5843] = 5646, [5844] = 5493, - [5845] = 5733, - [5846] = 5638, - [5847] = 5701, - [5848] = 5491, - [5849] = 5623, + [5845] = 5493, + [5846] = 5655, + [5847] = 5638, + [5848] = 5515, + [5849] = 5649, [5850] = 5850, - [5851] = 5485, - [5852] = 5488, - [5853] = 5569, + [5851] = 5506, + [5852] = 5500, + [5853] = 5581, [5854] = 5628, [5855] = 5629, - [5856] = 5494, - [5857] = 5502, - [5858] = 5556, - [5859] = 5590, - [5860] = 5729, - [5861] = 5507, - [5862] = 5576, - [5863] = 5572, - [5864] = 5712, - [5865] = 5478, + [5856] = 5503, + [5857] = 5523, + [5858] = 5629, + [5859] = 5554, + [5860] = 5682, + [5861] = 5550, + [5862] = 5480, + [5863] = 5546, + [5864] = 5628, + [5865] = 5552, [5866] = 5826, - [5867] = 5481, - [5868] = 5495, - [5869] = 5500, - [5870] = 5502, - [5871] = 5871, - [5872] = 5850, - [5873] = 5520, - [5874] = 5623, - [5875] = 5519, - [5876] = 5667, + [5867] = 5499, + [5868] = 5501, + [5869] = 5631, + [5870] = 5537, + [5871] = 5712, + [5872] = 5490, + [5873] = 5515, + [5874] = 5500, + [5875] = 5503, + [5876] = 5850, [5877] = 5628, - [5878] = 5501, + [5878] = 5519, [5879] = 5879, - [5880] = 5556, - [5881] = 5588, + [5880] = 5517, + [5881] = 5881, }; static TSCharacterRange extras_character_set_1[] = { @@ -10429,37 +10429,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(97); ADVANCE_MAP( '!', 110, - '"', 129, + '"', 199, '#', 10, '$', 236, - '%', 181, - '&', 160, - '\'', 130, + '%', 176, + '&', 155, + '\'', 200, '(', 111, ')', 113, '*', 100, - '+', 173, + '+', 168, ',', 107, - '-', 177, - '.', 127, + '-', 172, + '.', 124, '/', 222, '0', 227, ':', 114, ';', 112, - '<', 186, + '<', 181, '=', 103, - '>', 124, + '>', 192, '?', 242, '@', 239, '[', 115, '\\', 55, ']', 116, - '^', 163, + '^', 158, '`', 220, '{', 106, - '|', 166, + '|', 161, '}', 108, - '~', 198, + '~', 196, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(94); @@ -10483,36 +10483,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 3: ADVANCE_MAP( '!', 110, - '"', 129, + '"', 199, '#', 38, - '%', 181, - '&', 160, - '\'', 130, + '%', 176, + '&', 155, + '\'', 200, '(', 111, ')', 113, '*', 100, - '+', 172, + '+', 167, ',', 107, - '-', 176, - '.', 127, - '/', 179, + '-', 171, + '.', 124, + '/', 174, '0', 227, ':', 114, ';', 112, - '<', 186, + '<', 181, '=', 103, - '>', 124, + '>', 192, '?', 242, '@', 239, '[', 115, '\\', 57, ']', 116, - '^', 163, + '^', 158, '`', 220, '{', 105, - '|', 165, + '|', 160, '}', 108, - '~', 198, + '~', 196, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(3); @@ -10521,33 +10521,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 4: ADVANCE_MAP( '!', 110, - '"', 129, + '"', 199, '#', 38, - '%', 181, - '&', 160, - '\'', 130, + '%', 176, + '&', 155, + '\'', 200, '(', 111, ')', 113, '*', 100, - '+', 172, + '+', 167, ',', 107, - '-', 176, - '.', 127, - '/', 179, + '-', 171, + '.', 124, + '/', 174, '0', 227, ':', 114, - '<', 186, + '<', 181, '=', 103, - '>', 124, + '>', 192, '?', 242, '@', 239, '[', 115, '\\', 57, - '^', 163, + '^', 158, '`', 220, '{', 106, - '|', 165, - '~', 198, + '|', 160, + '~', 196, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(4); @@ -10559,34 +10559,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 5: ADVANCE_MAP( '!', 110, - '"', 129, + '"', 199, '#', 38, - '%', 181, - '&', 160, - '\'', 130, + '%', 176, + '&', 155, + '\'', 200, '(', 111, ')', 113, '*', 100, - '+', 172, + '+', 167, ',', 107, - '-', 176, - '.', 128, - '/', 179, + '-', 171, + '.', 125, + '/', 174, '0', 227, ':', 114, ';', 112, - '<', 185, + '<', 180, '=', 103, - '>', 124, + '>', 192, '?', 242, '@', 239, '[', 115, '\\', 57, ']', 116, - '^', 163, + '^', 158, '`', 220, '{', 106, - '|', 166, + '|', 161, '}', 108, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); @@ -10597,32 +10597,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 6: ADVANCE_MAP( '!', 110, - '"', 129, - '%', 181, - '&', 160, - '\'', 130, + '"', 199, + '%', 176, + '&', 155, + '\'', 200, '(', 111, ')', 113, '*', 100, - '+', 172, + '+', 167, ',', 107, - '-', 176, - '.', 126, - '/', 179, + '-', 171, + '.', 123, + '/', 174, ':', 114, ';', 112, - '<', 185, + '<', 180, '=', 103, - '>', 124, + '>', 192, '?', 242, '@', 239, '[', 115, '\\', 57, ']', 116, - '^', 163, + '^', 158, '`', 220, '{', 105, - '|', 165, + '|', 160, '}', 108, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(6); @@ -10633,29 +10633,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 7: ADVANCE_MAP( '!', 110, - '%', 180, - '&', 161, + '%', 175, + '&', 156, '(', 111, ')', 113, '*', 101, - '+', 171, + '+', 166, ',', 107, - '-', 175, - '.', 126, - '/', 178, + '-', 170, + '.', 123, + '/', 173, ':', 114, ';', 112, - '<', 187, + '<', 182, '=', 102, - '>', 125, + '>', 193, '?', 243, '[', 115, '\\', 57, ']', 116, - '^', 162, + '^', 157, '`', 220, '{', 105, - '|', 168, + '|', 163, '}', 108, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(7); @@ -10666,29 +10666,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 8: ADVANCE_MAP( '!', 110, - '%', 180, - '&', 161, + '%', 175, + '&', 156, '(', 111, ')', 113, '*', 101, - '+', 171, + '+', 166, ',', 107, - '-', 175, - '.', 126, - '/', 178, + '-', 170, + '.', 123, + '/', 173, ':', 114, ';', 112, - '<', 187, + '<', 182, '=', 33, - '>', 125, + '>', 193, '?', 26, '[', 115, '\\', 57, ']', 116, - '^', 162, + '^', 157, '`', 220, '{', 105, - '|', 167, + '|', 162, '}', 108, ); if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(225); @@ -10700,29 +10700,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 9: ADVANCE_MAP( '!', 110, - '%', 180, - '&', 161, + '%', 175, + '&', 156, '(', 111, ')', 113, '*', 101, - '+', 171, + '+', 166, ',', 107, - '-', 175, - '.', 126, - '/', 178, + '-', 170, + '.', 123, + '/', 173, ':', 114, ';', 112, - '<', 187, + '<', 182, '=', 33, - '>', 125, + '>', 193, '?', 26, '[', 115, '\\', 57, ']', 116, - '^', 162, + '^', 157, '`', 220, '{', 105, - '|', 167, + '|', 162, '}', 108, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(9); @@ -10738,20 +10738,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 11: ADVANCE_MAP( '!', 109, - '"', 129, + '"', 199, '#', 38, - '&', 159, - '\'', 130, + '&', 154, + '\'', 200, '(', 111, ')', 113, '*', 99, - '+', 171, + '+', 166, ',', 107, - '-', 175, + '-', 170, '.', 25, - '/', 178, + '/', 173, '0', 227, - '<', 189, + '<', 184, '?', 240, '@', 239, '[', 115, @@ -10759,8 +10759,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ']', 116, '`', 220, '{', 106, - '|', 164, - '~', 198, + '|', 159, + '~', 196, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(11); @@ -10772,24 +10772,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 12: ADVANCE_MAP( '!', 109, - '"', 129, + '"', 199, '#', 38, - '&', 159, - '\'', 130, + '&', 154, + '\'', 200, '(', 111, ')', 113, '*', 99, - '+', 170, + '+', 165, ',', 107, - '-', 174, - '.', 127, + '-', 169, + '.', 124, '/', 22, '0', 227, ':', 114, ';', 112, - '<', 184, + '<', 179, '=', 104, - '>', 123, + '>', 191, '?', 240, '@', 239, '[', 115, @@ -10797,7 +10797,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ']', 116, '`', 220, '{', 106, - '|', 169, + '|', 164, '}', 108, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); @@ -10810,31 +10810,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 13: ADVANCE_MAP( '!', 109, - '"', 129, + '"', 199, '#', 38, - '&', 159, - '\'', 130, + '&', 154, + '\'', 200, '(', 111, ')', 113, '*', 99, - '+', 170, + '+', 165, ',', 107, - '-', 174, - '.', 127, + '-', 169, + '.', 124, '/', 22, '0', 227, ':', 114, ';', 112, - '<', 184, + '<', 179, '=', 104, - '>', 123, + '>', 191, '?', 240, '@', 239, '[', 115, '\\', 57, ']', 116, '{', 105, - '|', 169, + '|', 164, '}', 108, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); @@ -10848,23 +10848,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 14: ADVANCE_MAP( '!', 109, - '"', 129, + '"', 199, '#', 38, - '&', 159, - '\'', 130, + '&', 154, + '\'', 200, '(', 111, ')', 113, - '+', 171, + '+', 166, ',', 107, - '-', 175, - '.', 127, - '/', 178, + '-', 170, + '.', 124, + '/', 173, '0', 227, ':', 114, ';', 112, - '<', 189, + '<', 184, '=', 104, - '>', 123, + '>', 191, '?', 241, '@', 239, '[', 115, @@ -10872,9 +10872,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ']', 116, '`', 220, '{', 105, - '|', 169, + '|', 164, '}', 108, - '~', 198, + '~', 196, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(14); @@ -10884,26 +10884,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 15: ADVANCE_MAP( - '"', 129, - '&', 159, - '\'', 130, + '"', 199, + '&', 154, + '\'', 200, '(', 111, ')', 113, '*', 99, ',', 107, - '.', 126, + '.', 123, '/', 22, ':', 114, ';', 112, - '<', 184, + '<', 179, '=', 104, - '>', 123, + '>', 191, '?', 241, '[', 115, '\\', 57, ']', 116, '{', 105, - '|', 169, + '|', 164, '}', 108, ); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(15); @@ -10914,12 +10914,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || '~' < lookahead)) ADVANCE(237); END_STATE(); case 16: - if (lookahead == '"') ADVANCE(129); + if (lookahead == '"') ADVANCE(199); if (lookahead == '/') ADVANCE(22); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(16); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(129); + if (lookahead == '"') ADVANCE(199); if (lookahead == '/') ADVANCE(201); if (lookahead == '\\') ADVANCE(58); if (lookahead == '\n' || @@ -10951,12 +10951,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19); END_STATE(); case 20: - if (lookahead == '\'') ADVANCE(130); + if (lookahead == '\'') ADVANCE(200); if (lookahead == '/') ADVANCE(22); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(20); END_STATE(); case 21: - if (lookahead == '\'') ADVANCE(130); + if (lookahead == '\'') ADVANCE(200); if (lookahead == '/') ADVANCE(207); if (lookahead == '\\') ADVANCE(58); if (lookahead == '\n' || @@ -10982,11 +10982,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); END_STATE(); case 26: - if (lookahead == '.') ADVANCE(132); - if (lookahead == '?') ADVANCE(196); + if (lookahead == '.') ADVANCE(127); + if (lookahead == '?') ADVANCE(194); END_STATE(); case 27: - if (lookahead == '.') ADVANCE(148); + if (lookahead == '.') ADVANCE(143); END_STATE(); case 28: if (lookahead == '/') ADVANCE(222); @@ -11006,7 +11006,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(246); END_STATE(); case 33: - if (lookahead == '=') ADVANCE(191); + if (lookahead == '=') ADVANCE(186); END_STATE(); case 34: if (lookahead == '>') ADVANCE(121); @@ -11269,37 +11269,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(97); ADVANCE_MAP( '!', 110, - '"', 129, + '"', 199, '#', 10, '$', 236, - '%', 181, - '&', 160, - '\'', 130, + '%', 176, + '&', 155, + '\'', 200, '(', 111, ')', 113, '*', 100, - '+', 173, + '+', 168, ',', 107, - '-', 177, - '.', 127, - '/', 179, + '-', 172, + '.', 124, + '/', 174, '0', 227, ':', 114, ';', 112, - '<', 186, + '<', 181, '=', 103, - '>', 124, + '>', 192, '?', 242, '@', 239, '[', 115, '\\', 57, ']', 116, - '^', 163, + '^', 158, '`', 220, '{', 106, - '|', 166, + '|', 161, '}', 108, - '~', 198, + '~', 196, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(94); @@ -11309,36 +11309,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(97); ADVANCE_MAP( '!', 110, - '"', 129, + '"', 199, '#', 38, - '%', 180, - '&', 161, - '\'', 130, + '%', 175, + '&', 156, + '\'', 200, '(', 111, ')', 113, '*', 101, - '+', 171, + '+', 166, ',', 107, - '-', 175, - '.', 128, - '/', 178, + '-', 170, + '.', 125, + '/', 173, '0', 227, ':', 114, ';', 112, - '<', 188, + '<', 183, '=', 102, - '>', 125, + '>', 193, '?', 26, '@', 239, '[', 115, '\\', 57, ']', 116, - '^', 162, + '^', 157, '`', 220, '{', 105, - '|', 167, + '|', 162, '}', 108, - '~', 198, + '~', 196, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(95); @@ -11348,24 +11348,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(97); ADVANCE_MAP( '!', 109, - '"', 129, + '"', 199, '#', 10, - '&', 159, - '\'', 130, + '&', 154, + '\'', 200, '(', 111, ')', 113, '*', 99, - '+', 171, + '+', 166, ',', 107, - '-', 175, - '.', 127, - '/', 178, + '-', 170, + '.', 124, + '/', 173, '0', 227, ':', 114, ';', 112, - '<', 189, + '<', 184, '=', 104, - '>', 123, + '>', 191, '?', 240, '@', 239, '[', 115, @@ -11373,9 +11373,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ']', 116, '`', 220, '{', 105, - '|', 169, + '|', 164, '}', 108, - '~', 198, + '~', 196, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(228); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(96); @@ -11396,25 +11396,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 100: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(183); - if (lookahead == '=') ADVANCE(135); + if (lookahead == '*') ADVANCE(178); + if (lookahead == '=') ADVANCE(130); END_STATE(); case 101: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(182); + if (lookahead == '*') ADVANCE(177); END_STATE(); case 102: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(191); + if (lookahead == '=') ADVANCE(186); END_STATE(); case 103: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(191); - if (lookahead == '>') ADVANCE(131); + if (lookahead == '=') ADVANCE(186); + if (lookahead == '>') ADVANCE(126); END_STATE(); case 104: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(131); + if (lookahead == '>') ADVANCE(126); END_STATE(); case 105: ACCEPT_TOKEN(anon_sym_LBRACE); @@ -11434,7 +11434,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 110: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(193); + if (lookahead == '=') ADVANCE(188); END_STATE(); case 111: ACCEPT_TOKEN(anon_sym_LPAREN); @@ -11482,299 +11482,299 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_glimmer_closing_tag); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_GT); - END_STATE(); - case 124: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(195); - if (lookahead == '>') ADVANCE(153); - END_STATE(); - case 125: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(195); - if (lookahead == '>') ADVANCE(154); - END_STATE(); - case 126: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 127: + case 124: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(27); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); END_STATE(); - case 128: + case 125: ACCEPT_TOKEN(anon_sym_DOT); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); END_STATE(); - case 129: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 130: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 131: + case 126: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 132: + case 127: ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); - case 133: + case 128: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 134: + case 129: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 135: + case 130: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 136: + case 131: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 137: + case 132: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 138: + case 133: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 139: + case 134: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 140: + case 135: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 141: + case 136: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 142: + case 137: ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 143: + case 138: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 144: + case 139: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 145: + case 140: ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); - case 146: + case 141: ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); - case 147: + case 142: ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); - case 148: + case 143: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 149: + case 144: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 150: + case 145: ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(145); + if (lookahead == '=') ADVANCE(140); END_STATE(); - case 151: + case 146: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 152: + case 147: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(146); + if (lookahead == '=') ADVANCE(141); END_STATE(); - case 153: + case 148: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(141); - if (lookahead == '>') ADVANCE(156); + if (lookahead == '=') ADVANCE(136); + if (lookahead == '>') ADVANCE(151); END_STATE(); - case 154: + case 149: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(155); + if (lookahead == '>') ADVANCE(150); END_STATE(); - case 155: + case 150: ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); - case 156: + case 151: ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(142); + if (lookahead == '=') ADVANCE(137); END_STATE(); - case 157: + case 152: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 158: + case 153: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(143); + if (lookahead == '=') ADVANCE(138); END_STATE(); - case 159: + case 154: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 160: + case 155: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(150); - if (lookahead == '=') ADVANCE(139); + if (lookahead == '&') ADVANCE(145); + if (lookahead == '=') ADVANCE(134); END_STATE(); - case 161: + case 156: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(149); + if (lookahead == '&') ADVANCE(144); END_STATE(); - case 162: + case 157: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 163: + case 158: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(138); + if (lookahead == '=') ADVANCE(133); END_STATE(); - case 164: + case 159: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 165: + case 160: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(140); - if (lookahead == '|') ADVANCE(152); + if (lookahead == '=') ADVANCE(135); + if (lookahead == '|') ADVANCE(147); END_STATE(); - case 166: + case 161: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(140); - if (lookahead == '|') ADVANCE(152); + if (lookahead == '=') ADVANCE(135); + if (lookahead == '|') ADVANCE(147); if (lookahead == '}') ADVANCE(248); END_STATE(); - case 167: + case 162: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(151); + if (lookahead == '|') ADVANCE(146); END_STATE(); - case 168: + case 163: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(151); + if (lookahead == '|') ADVANCE(146); if (lookahead == '}') ADVANCE(248); END_STATE(); - case 169: + case 164: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '}') ADVANCE(248); END_STATE(); - case 170: + case 165: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 171: + case 166: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(199); + if (lookahead == '+') ADVANCE(197); END_STATE(); - case 172: + case 167: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(199); - if (lookahead == '=') ADVANCE(133); + if (lookahead == '+') ADVANCE(197); + if (lookahead == '=') ADVANCE(128); END_STATE(); - case 173: + case 168: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(199); - if (lookahead == '=') ADVANCE(133); + if (lookahead == '+') ADVANCE(197); + if (lookahead == '=') ADVANCE(128); if (lookahead == '?') ADVANCE(30); END_STATE(); - case 174: + case 169: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 175: + case 170: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(200); + if (lookahead == '-') ADVANCE(198); END_STATE(); - case 176: + case 171: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '=') ADVANCE(134); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '=') ADVANCE(129); END_STATE(); - case 177: + case 172: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(200); - if (lookahead == '=') ADVANCE(134); + if (lookahead == '-') ADVANCE(198); + if (lookahead == '=') ADVANCE(129); if (lookahead == '?') ADVANCE(31); END_STATE(); - case 178: + case 173: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(24); if (lookahead == '/') ADVANCE(219); END_STATE(); - case 179: + case 174: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(24); if (lookahead == '/') ADVANCE(219); - if (lookahead == '=') ADVANCE(136); + if (lookahead == '=') ADVANCE(131); END_STATE(); - case 180: + case 175: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 181: + case 176: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(137); + if (lookahead == '=') ADVANCE(132); END_STATE(); - case 182: + case 177: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 183: + case 178: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(144); + if (lookahead == '=') ADVANCE(139); END_STATE(); - case 184: + case 179: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 185: + case 180: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(158); - if (lookahead == '=') ADVANCE(190); + if (lookahead == '<') ADVANCE(153); + if (lookahead == '=') ADVANCE(185); END_STATE(); - case 186: + case 181: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(158); - if (lookahead == '=') ADVANCE(190); + if (lookahead == '<') ADVANCE(153); + if (lookahead == '=') ADVANCE(185); if (lookahead == 't') ADVANCE(42); END_STATE(); - case 187: + case 182: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(157); - if (lookahead == '=') ADVANCE(190); + if (lookahead == '<') ADVANCE(152); + if (lookahead == '=') ADVANCE(185); END_STATE(); - case 188: + case 183: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(157); - if (lookahead == '=') ADVANCE(190); + if (lookahead == '<') ADVANCE(152); + if (lookahead == '=') ADVANCE(185); if (lookahead == 't') ADVANCE(42); END_STATE(); - case 189: + case 184: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == 't') ADVANCE(42); END_STATE(); - case 190: + case 185: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 191: + case 186: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(192); + if (lookahead == '=') ADVANCE(187); END_STATE(); - case 192: + case 187: ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 193: + case 188: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(194); + if (lookahead == '=') ADVANCE(189); END_STATE(); - case 194: + case 189: ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 195: + case 190: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 196: + case 191: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(190); + if (lookahead == '>') ADVANCE(148); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(190); + if (lookahead == '>') ADVANCE(149); + END_STATE(); + case 194: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 197: + case 195: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(147); + if (lookahead == '=') ADVANCE(142); END_STATE(); - case 198: + case 196: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 199: + case 197: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 200: + case 198: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); + case 199: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 200: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); case 201: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead == '*') ADVANCE(203); @@ -12055,17 +12055,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 241: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(132); + if (lookahead == '.') ADVANCE(127); END_STATE(); case 242: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(132); - if (lookahead == '?') ADVANCE(197); + if (lookahead == '.') ADVANCE(127); + if (lookahead == '?') ADVANCE(195); END_STATE(); case 243: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(132); - if (lookahead == '?') ADVANCE(196); + if (lookahead == '.') ADVANCE(127); + if (lookahead == '?') ADVANCE(194); END_STATE(); case 244: ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); @@ -13941,9 +13941,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [706] = {.lex_state = 96, .external_lex_state = 2}, [707] = {.lex_state = 5, .external_lex_state = 4}, [708] = {.lex_state = 5, .external_lex_state = 4}, - [709] = {.lex_state = 5, .external_lex_state = 4}, + [709] = {.lex_state = 96, .external_lex_state = 2}, [710] = {.lex_state = 96, .external_lex_state = 2}, - [711] = {.lex_state = 96, .external_lex_state = 2}, + [711] = {.lex_state = 5, .external_lex_state = 4}, [712] = {.lex_state = 96, .external_lex_state = 2}, [713] = {.lex_state = 96, .external_lex_state = 2}, [714] = {.lex_state = 96, .external_lex_state = 2}, @@ -13960,83 +13960,83 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [725] = {.lex_state = 5, .external_lex_state = 3}, [726] = {.lex_state = 5, .external_lex_state = 3}, [727] = {.lex_state = 5, .external_lex_state = 3}, - [728] = {.lex_state = 5, .external_lex_state = 4}, + [728] = {.lex_state = 5, .external_lex_state = 3}, [729] = {.lex_state = 5, .external_lex_state = 3}, - [730] = {.lex_state = 5, .external_lex_state = 3}, + [730] = {.lex_state = 5, .external_lex_state = 4}, [731] = {.lex_state = 5, .external_lex_state = 4}, [732] = {.lex_state = 5, .external_lex_state = 4}, [733] = {.lex_state = 5, .external_lex_state = 4}, [734] = {.lex_state = 5, .external_lex_state = 4}, [735] = {.lex_state = 5, .external_lex_state = 4}, [736] = {.lex_state = 96, .external_lex_state = 5}, - [737] = {.lex_state = 6, .external_lex_state = 3}, + [737] = {.lex_state = 96, .external_lex_state = 2}, [738] = {.lex_state = 5, .external_lex_state = 3}, - [739] = {.lex_state = 5, .external_lex_state = 3}, - [740] = {.lex_state = 96, .external_lex_state = 2}, - [741] = {.lex_state = 96, .external_lex_state = 5}, - [742] = {.lex_state = 6, .external_lex_state = 3}, + [739] = {.lex_state = 96, .external_lex_state = 5}, + [740] = {.lex_state = 5, .external_lex_state = 3}, + [741] = {.lex_state = 6, .external_lex_state = 3}, + [742] = {.lex_state = 5, .external_lex_state = 3}, [743] = {.lex_state = 5, .external_lex_state = 3}, - [744] = {.lex_state = 5, .external_lex_state = 3}, + [744] = {.lex_state = 6, .external_lex_state = 3}, [745] = {.lex_state = 5, .external_lex_state = 3}, - [746] = {.lex_state = 96, .external_lex_state = 2}, + [746] = {.lex_state = 96, .external_lex_state = 5}, [747] = {.lex_state = 5, .external_lex_state = 3}, [748] = {.lex_state = 5, .external_lex_state = 4}, - [749] = {.lex_state = 96, .external_lex_state = 5}, + [749] = {.lex_state = 5, .external_lex_state = 3}, [750] = {.lex_state = 96, .external_lex_state = 5}, [751] = {.lex_state = 96, .external_lex_state = 5}, - [752] = {.lex_state = 96, .external_lex_state = 5}, + [752] = {.lex_state = 96, .external_lex_state = 2}, [753] = {.lex_state = 96, .external_lex_state = 5}, [754] = {.lex_state = 96, .external_lex_state = 5}, - [755] = {.lex_state = 5, .external_lex_state = 4}, + [755] = {.lex_state = 96, .external_lex_state = 5}, [756] = {.lex_state = 5, .external_lex_state = 4}, - [757] = {.lex_state = 96, .external_lex_state = 2}, - [758] = {.lex_state = 5, .external_lex_state = 4}, - [759] = {.lex_state = 5, .external_lex_state = 3}, + [757] = {.lex_state = 5, .external_lex_state = 4}, + [758] = {.lex_state = 5, .external_lex_state = 3}, + [759] = {.lex_state = 5, .external_lex_state = 4}, [760] = {.lex_state = 5, .external_lex_state = 4}, - [761] = {.lex_state = 5, .external_lex_state = 3}, - [762] = {.lex_state = 5, .external_lex_state = 3}, + [761] = {.lex_state = 96, .external_lex_state = 2}, + [762] = {.lex_state = 96, .external_lex_state = 2}, [763] = {.lex_state = 96, .external_lex_state = 2}, - [764] = {.lex_state = 96, .external_lex_state = 2}, + [764] = {.lex_state = 5, .external_lex_state = 3}, [765] = {.lex_state = 5, .external_lex_state = 3}, [766] = {.lex_state = 5, .external_lex_state = 3}, [767] = {.lex_state = 5, .external_lex_state = 3}, [768] = {.lex_state = 5, .external_lex_state = 3}, [769] = {.lex_state = 5, .external_lex_state = 3}, [770] = {.lex_state = 5, .external_lex_state = 3}, - [771] = {.lex_state = 5, .external_lex_state = 3}, - [772] = {.lex_state = 96, .external_lex_state = 2}, + [771] = {.lex_state = 96, .external_lex_state = 2}, + [772] = {.lex_state = 5, .external_lex_state = 3}, [773] = {.lex_state = 96, .external_lex_state = 5}, - [774] = {.lex_state = 96, .external_lex_state = 2}, + [774] = {.lex_state = 96, .external_lex_state = 5}, [775] = {.lex_state = 5, .external_lex_state = 3}, [776] = {.lex_state = 96, .external_lex_state = 5}, [777] = {.lex_state = 96, .external_lex_state = 5}, [778] = {.lex_state = 96, .external_lex_state = 5}, [779] = {.lex_state = 96, .external_lex_state = 5}, - [780] = {.lex_state = 96, .external_lex_state = 5}, + [780] = {.lex_state = 5, .external_lex_state = 3}, [781] = {.lex_state = 96, .external_lex_state = 5}, - [782] = {.lex_state = 5, .external_lex_state = 3}, + [782] = {.lex_state = 96, .external_lex_state = 2}, [783] = {.lex_state = 96, .external_lex_state = 5}, [784] = {.lex_state = 5, .external_lex_state = 3}, [785] = {.lex_state = 96, .external_lex_state = 2}, [786] = {.lex_state = 96, .external_lex_state = 2}, [787] = {.lex_state = 96, .external_lex_state = 5}, - [788] = {.lex_state = 96, .external_lex_state = 2}, - [789] = {.lex_state = 96, .external_lex_state = 2}, - [790] = {.lex_state = 96, .external_lex_state = 5}, - [791] = {.lex_state = 5, .external_lex_state = 3}, + [788] = {.lex_state = 96, .external_lex_state = 5}, + [789] = {.lex_state = 5, .external_lex_state = 3}, + [790] = {.lex_state = 5, .external_lex_state = 3}, + [791] = {.lex_state = 96, .external_lex_state = 5}, [792] = {.lex_state = 96, .external_lex_state = 2}, - [793] = {.lex_state = 5, .external_lex_state = 3}, - [794] = {.lex_state = 96, .external_lex_state = 5}, + [793] = {.lex_state = 96, .external_lex_state = 5}, + [794] = {.lex_state = 5, .external_lex_state = 3}, [795] = {.lex_state = 96, .external_lex_state = 5}, - [796] = {.lex_state = 96, .external_lex_state = 5}, - [797] = {.lex_state = 96, .external_lex_state = 5}, - [798] = {.lex_state = 5, .external_lex_state = 3}, + [796] = {.lex_state = 96, .external_lex_state = 2}, + [797] = {.lex_state = 5, .external_lex_state = 3}, + [798] = {.lex_state = 96, .external_lex_state = 2}, [799] = {.lex_state = 5, .external_lex_state = 3}, - [800] = {.lex_state = 5, .external_lex_state = 3}, - [801] = {.lex_state = 96, .external_lex_state = 2}, - [802] = {.lex_state = 96, .external_lex_state = 2}, + [800] = {.lex_state = 96, .external_lex_state = 2}, + [801] = {.lex_state = 5, .external_lex_state = 3}, + [802] = {.lex_state = 96, .external_lex_state = 5}, [803] = {.lex_state = 96, .external_lex_state = 5}, - [804] = {.lex_state = 5, .external_lex_state = 3}, + [804] = {.lex_state = 96, .external_lex_state = 2}, [805] = {.lex_state = 5, .external_lex_state = 3}, [806] = {.lex_state = 5, .external_lex_state = 3}, [807] = {.lex_state = 96, .external_lex_state = 2}, @@ -14072,8 +14072,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [837] = {.lex_state = 96, .external_lex_state = 2}, [838] = {.lex_state = 96, .external_lex_state = 2}, [839] = {.lex_state = 96, .external_lex_state = 2}, - [840] = {.lex_state = 12, .external_lex_state = 2}, - [841] = {.lex_state = 96, .external_lex_state = 2}, + [840] = {.lex_state = 96, .external_lex_state = 2}, + [841] = {.lex_state = 12, .external_lex_state = 2}, [842] = {.lex_state = 96, .external_lex_state = 2}, [843] = {.lex_state = 96, .external_lex_state = 2}, [844] = {.lex_state = 96, .external_lex_state = 2}, @@ -14384,15 +14384,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1149] = {.lex_state = 12, .external_lex_state = 2}, [1150] = {.lex_state = 12, .external_lex_state = 2}, [1151] = {.lex_state = 13, .external_lex_state = 2}, - [1152] = {.lex_state = 96, .external_lex_state = 2}, - [1153] = {.lex_state = 13, .external_lex_state = 2}, + [1152] = {.lex_state = 13, .external_lex_state = 2}, + [1153] = {.lex_state = 96, .external_lex_state = 2}, [1154] = {.lex_state = 13, .external_lex_state = 2}, [1155] = {.lex_state = 13, .external_lex_state = 2}, - [1156] = {.lex_state = 13, .external_lex_state = 2}, + [1156] = {.lex_state = 96, .external_lex_state = 2}, [1157] = {.lex_state = 13, .external_lex_state = 2}, [1158] = {.lex_state = 13, .external_lex_state = 2}, [1159] = {.lex_state = 13, .external_lex_state = 2}, - [1160] = {.lex_state = 96, .external_lex_state = 2}, + [1160] = {.lex_state = 13, .external_lex_state = 2}, [1161] = {.lex_state = 13, .external_lex_state = 2}, [1162] = {.lex_state = 96, .external_lex_state = 2}, [1163] = {.lex_state = 13, .external_lex_state = 2}, @@ -14403,236 +14403,236 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1168] = {.lex_state = 5, .external_lex_state = 4}, [1169] = {.lex_state = 5, .external_lex_state = 4}, [1170] = {.lex_state = 6, .external_lex_state = 4}, - [1171] = {.lex_state = 5, .external_lex_state = 4}, + [1171] = {.lex_state = 6, .external_lex_state = 4}, [1172] = {.lex_state = 5, .external_lex_state = 4}, [1173] = {.lex_state = 5, .external_lex_state = 4}, - [1174] = {.lex_state = 6, .external_lex_state = 4}, + [1174] = {.lex_state = 5, .external_lex_state = 4}, [1175] = {.lex_state = 5, .external_lex_state = 3}, [1176] = {.lex_state = 5, .external_lex_state = 3}, - [1177] = {.lex_state = 5, .external_lex_state = 3}, + [1177] = {.lex_state = 13, .external_lex_state = 2}, [1178] = {.lex_state = 5, .external_lex_state = 3}, [1179] = {.lex_state = 13, .external_lex_state = 2}, - [1180] = {.lex_state = 13, .external_lex_state = 2}, + [1180] = {.lex_state = 5, .external_lex_state = 3}, [1181] = {.lex_state = 5, .external_lex_state = 4}, - [1182] = {.lex_state = 5, .external_lex_state = 4}, + [1182] = {.lex_state = 5, .external_lex_state = 3}, [1183] = {.lex_state = 5, .external_lex_state = 4}, [1184] = {.lex_state = 5, .external_lex_state = 4}, [1185] = {.lex_state = 5, .external_lex_state = 4}, - [1186] = {.lex_state = 5, .external_lex_state = 4}, + [1186] = {.lex_state = 6, .external_lex_state = 4}, [1187] = {.lex_state = 6, .external_lex_state = 4}, - [1188] = {.lex_state = 6, .external_lex_state = 4}, + [1188] = {.lex_state = 5, .external_lex_state = 4}, [1189] = {.lex_state = 5, .external_lex_state = 3}, [1190] = {.lex_state = 5, .external_lex_state = 4}, [1191] = {.lex_state = 5, .external_lex_state = 4}, - [1192] = {.lex_state = 5, .external_lex_state = 3}, - [1193] = {.lex_state = 5, .external_lex_state = 4}, - [1194] = {.lex_state = 6, .external_lex_state = 3}, - [1195] = {.lex_state = 5, .external_lex_state = 3}, - [1196] = {.lex_state = 5, .external_lex_state = 3}, + [1192] = {.lex_state = 5, .external_lex_state = 4}, + [1193] = {.lex_state = 5, .external_lex_state = 3}, + [1194] = {.lex_state = 5, .external_lex_state = 3}, + [1195] = {.lex_state = 6, .external_lex_state = 3}, + [1196] = {.lex_state = 6, .external_lex_state = 3}, [1197] = {.lex_state = 6, .external_lex_state = 3}, [1198] = {.lex_state = 6, .external_lex_state = 3}, - [1199] = {.lex_state = 6, .external_lex_state = 3}, + [1199] = {.lex_state = 5, .external_lex_state = 3}, [1200] = {.lex_state = 6, .external_lex_state = 3}, [1201] = {.lex_state = 6, .external_lex_state = 3}, - [1202] = {.lex_state = 6, .external_lex_state = 3}, - [1203] = {.lex_state = 5, .external_lex_state = 3}, + [1202] = {.lex_state = 5, .external_lex_state = 4}, + [1203] = {.lex_state = 6, .external_lex_state = 3}, [1204] = {.lex_state = 6, .external_lex_state = 3}, [1205] = {.lex_state = 6, .external_lex_state = 3}, - [1206] = {.lex_state = 6, .external_lex_state = 3}, - [1207] = {.lex_state = 5, .external_lex_state = 3}, + [1206] = {.lex_state = 5, .external_lex_state = 3}, + [1207] = {.lex_state = 5, .external_lex_state = 4}, [1208] = {.lex_state = 5, .external_lex_state = 4}, - [1209] = {.lex_state = 5, .external_lex_state = 4}, + [1209] = {.lex_state = 6, .external_lex_state = 3}, [1210] = {.lex_state = 6, .external_lex_state = 3}, - [1211] = {.lex_state = 5, .external_lex_state = 3}, - [1212] = {.lex_state = 6, .external_lex_state = 3}, + [1211] = {.lex_state = 6, .external_lex_state = 3}, + [1212] = {.lex_state = 5, .external_lex_state = 3}, [1213] = {.lex_state = 5, .external_lex_state = 4}, - [1214] = {.lex_state = 5, .external_lex_state = 3}, + [1214] = {.lex_state = 5, .external_lex_state = 4}, [1215] = {.lex_state = 5, .external_lex_state = 4}, - [1216] = {.lex_state = 6, .external_lex_state = 3}, + [1216] = {.lex_state = 5, .external_lex_state = 4}, [1217] = {.lex_state = 5, .external_lex_state = 4}, - [1218] = {.lex_state = 6, .external_lex_state = 4}, - [1219] = {.lex_state = 5, .external_lex_state = 4}, + [1218] = {.lex_state = 5, .external_lex_state = 3}, + [1219] = {.lex_state = 5, .external_lex_state = 3}, [1220] = {.lex_state = 5, .external_lex_state = 4}, - [1221] = {.lex_state = 6, .external_lex_state = 3}, - [1222] = {.lex_state = 5, .external_lex_state = 4}, - [1223] = {.lex_state = 6, .external_lex_state = 4}, + [1221] = {.lex_state = 5, .external_lex_state = 4}, + [1222] = {.lex_state = 6, .external_lex_state = 4}, + [1223] = {.lex_state = 6, .external_lex_state = 3}, [1224] = {.lex_state = 5, .external_lex_state = 4}, [1225] = {.lex_state = 5, .external_lex_state = 4}, - [1226] = {.lex_state = 5, .external_lex_state = 4}, + [1226] = {.lex_state = 6, .external_lex_state = 4}, [1227] = {.lex_state = 5, .external_lex_state = 4}, [1228] = {.lex_state = 6, .external_lex_state = 3}, - [1229] = {.lex_state = 5, .external_lex_state = 4}, + [1229] = {.lex_state = 6, .external_lex_state = 3}, [1230] = {.lex_state = 5, .external_lex_state = 3}, - [1231] = {.lex_state = 5, .external_lex_state = 3}, - [1232] = {.lex_state = 5, .external_lex_state = 3}, - [1233] = {.lex_state = 5, .external_lex_state = 4}, + [1231] = {.lex_state = 5, .external_lex_state = 4}, + [1232] = {.lex_state = 5, .external_lex_state = 4}, + [1233] = {.lex_state = 5, .external_lex_state = 3}, [1234] = {.lex_state = 5, .external_lex_state = 3}, [1235] = {.lex_state = 5, .external_lex_state = 3}, [1236] = {.lex_state = 5, .external_lex_state = 3}, - [1237] = {.lex_state = 5, .external_lex_state = 4}, + [1237] = {.lex_state = 5, .external_lex_state = 3}, [1238] = {.lex_state = 5, .external_lex_state = 3}, - [1239] = {.lex_state = 5, .external_lex_state = 3}, - [1240] = {.lex_state = 5, .external_lex_state = 3}, + [1239] = {.lex_state = 5, .external_lex_state = 4}, + [1240] = {.lex_state = 5, .external_lex_state = 4}, [1241] = {.lex_state = 5, .external_lex_state = 3}, - [1242] = {.lex_state = 5, .external_lex_state = 4}, - [1243] = {.lex_state = 5, .external_lex_state = 3}, + [1242] = {.lex_state = 5, .external_lex_state = 3}, + [1243] = {.lex_state = 96, .external_lex_state = 2}, [1244] = {.lex_state = 5, .external_lex_state = 4}, [1245] = {.lex_state = 5, .external_lex_state = 3}, [1246] = {.lex_state = 5, .external_lex_state = 3}, - [1247] = {.lex_state = 96, .external_lex_state = 2}, + [1247] = {.lex_state = 5, .external_lex_state = 3}, [1248] = {.lex_state = 5, .external_lex_state = 3}, - [1249] = {.lex_state = 6, .external_lex_state = 3}, + [1249] = {.lex_state = 5, .external_lex_state = 4}, [1250] = {.lex_state = 5, .external_lex_state = 3}, - [1251] = {.lex_state = 5, .external_lex_state = 3}, + [1251] = {.lex_state = 5, .external_lex_state = 4}, [1252] = {.lex_state = 5, .external_lex_state = 3}, - [1253] = {.lex_state = 96, .external_lex_state = 2}, - [1254] = {.lex_state = 6, .external_lex_state = 3}, - [1255] = {.lex_state = 5, .external_lex_state = 3}, - [1256] = {.lex_state = 5, .external_lex_state = 3}, - [1257] = {.lex_state = 96, .external_lex_state = 2}, - [1258] = {.lex_state = 5, .external_lex_state = 4}, - [1259] = {.lex_state = 5, .external_lex_state = 3}, - [1260] = {.lex_state = 5, .external_lex_state = 3}, - [1261] = {.lex_state = 5, .external_lex_state = 3}, - [1262] = {.lex_state = 96, .external_lex_state = 2}, + [1253] = {.lex_state = 5, .external_lex_state = 3}, + [1254] = {.lex_state = 5, .external_lex_state = 3}, + [1255] = {.lex_state = 6, .external_lex_state = 3}, + [1256] = {.lex_state = 96, .external_lex_state = 2}, + [1257] = {.lex_state = 5, .external_lex_state = 3}, + [1258] = {.lex_state = 5, .external_lex_state = 3}, + [1259] = {.lex_state = 5, .external_lex_state = 4}, + [1260] = {.lex_state = 96, .external_lex_state = 2}, + [1261] = {.lex_state = 6, .external_lex_state = 3}, + [1262] = {.lex_state = 5, .external_lex_state = 3}, [1263] = {.lex_state = 5, .external_lex_state = 3}, [1264] = {.lex_state = 5, .external_lex_state = 3}, - [1265] = {.lex_state = 5, .external_lex_state = 4}, - [1266] = {.lex_state = 96, .external_lex_state = 2}, + [1265] = {.lex_state = 5, .external_lex_state = 3}, + [1266] = {.lex_state = 5, .external_lex_state = 3}, [1267] = {.lex_state = 5, .external_lex_state = 3}, [1268] = {.lex_state = 5, .external_lex_state = 3}, [1269] = {.lex_state = 5, .external_lex_state = 3}, [1270] = {.lex_state = 5, .external_lex_state = 3}, - [1271] = {.lex_state = 5, .external_lex_state = 3}, + [1271] = {.lex_state = 96, .external_lex_state = 2}, [1272] = {.lex_state = 5, .external_lex_state = 3}, - [1273] = {.lex_state = 5, .external_lex_state = 3}, - [1274] = {.lex_state = 5, .external_lex_state = 4}, - [1275] = {.lex_state = 5, .external_lex_state = 3}, + [1273] = {.lex_state = 5, .external_lex_state = 4}, + [1274] = {.lex_state = 5, .external_lex_state = 3}, + [1275] = {.lex_state = 96, .external_lex_state = 2}, [1276] = {.lex_state = 5, .external_lex_state = 3}, [1277] = {.lex_state = 5, .external_lex_state = 3}, - [1278] = {.lex_state = 5, .external_lex_state = 4}, + [1278] = {.lex_state = 5, .external_lex_state = 3}, [1279] = {.lex_state = 5, .external_lex_state = 3}, [1280] = {.lex_state = 5, .external_lex_state = 3}, - [1281] = {.lex_state = 5, .external_lex_state = 3}, - [1282] = {.lex_state = 5, .external_lex_state = 4}, - [1283] = {.lex_state = 5, .external_lex_state = 4}, - [1284] = {.lex_state = 96, .external_lex_state = 2}, - [1285] = {.lex_state = 5, .external_lex_state = 4}, - [1286] = {.lex_state = 96, .external_lex_state = 2}, + [1281] = {.lex_state = 96, .external_lex_state = 2}, + [1282] = {.lex_state = 5, .external_lex_state = 3}, + [1283] = {.lex_state = 96, .external_lex_state = 2}, + [1284] = {.lex_state = 5, .external_lex_state = 3}, + [1285] = {.lex_state = 96, .external_lex_state = 2}, + [1286] = {.lex_state = 5, .external_lex_state = 3}, [1287] = {.lex_state = 5, .external_lex_state = 4}, - [1288] = {.lex_state = 5, .external_lex_state = 3}, - [1289] = {.lex_state = 5, .external_lex_state = 3}, - [1290] = {.lex_state = 5, .external_lex_state = 4}, + [1288] = {.lex_state = 5, .external_lex_state = 4}, + [1289] = {.lex_state = 5, .external_lex_state = 4}, + [1290] = {.lex_state = 5, .external_lex_state = 3}, [1291] = {.lex_state = 5, .external_lex_state = 3}, - [1292] = {.lex_state = 6, .external_lex_state = 3}, + [1292] = {.lex_state = 5, .external_lex_state = 3}, [1293] = {.lex_state = 5, .external_lex_state = 3}, - [1294] = {.lex_state = 5, .external_lex_state = 4}, + [1294] = {.lex_state = 5, .external_lex_state = 3}, [1295] = {.lex_state = 5, .external_lex_state = 3}, - [1296] = {.lex_state = 5, .external_lex_state = 4}, - [1297] = {.lex_state = 96, .external_lex_state = 2}, - [1298] = {.lex_state = 5, .external_lex_state = 3}, - [1299] = {.lex_state = 96, .external_lex_state = 2}, - [1300] = {.lex_state = 5, .external_lex_state = 3}, - [1301] = {.lex_state = 5, .external_lex_state = 3}, + [1296] = {.lex_state = 5, .external_lex_state = 3}, + [1297] = {.lex_state = 5, .external_lex_state = 3}, + [1298] = {.lex_state = 5, .external_lex_state = 4}, + [1299] = {.lex_state = 5, .external_lex_state = 4}, + [1300] = {.lex_state = 5, .external_lex_state = 4}, + [1301] = {.lex_state = 96, .external_lex_state = 2}, [1302] = {.lex_state = 5, .external_lex_state = 3}, [1303] = {.lex_state = 5, .external_lex_state = 4}, - [1304] = {.lex_state = 5, .external_lex_state = 3}, - [1305] = {.lex_state = 5, .external_lex_state = 3}, + [1304] = {.lex_state = 5, .external_lex_state = 4}, + [1305] = {.lex_state = 6, .external_lex_state = 3}, [1306] = {.lex_state = 5, .external_lex_state = 3}, [1307] = {.lex_state = 5, .external_lex_state = 3}, [1308] = {.lex_state = 5, .external_lex_state = 4}, [1309] = {.lex_state = 5, .external_lex_state = 3}, - [1310] = {.lex_state = 5, .external_lex_state = 3}, - [1311] = {.lex_state = 5, .external_lex_state = 4}, - [1312] = {.lex_state = 6, .external_lex_state = 3}, - [1313] = {.lex_state = 5, .external_lex_state = 3}, - [1314] = {.lex_state = 5, .external_lex_state = 3}, + [1310] = {.lex_state = 5, .external_lex_state = 4}, + [1311] = {.lex_state = 5, .external_lex_state = 3}, + [1312] = {.lex_state = 5, .external_lex_state = 4}, + [1313] = {.lex_state = 5, .external_lex_state = 4}, + [1314] = {.lex_state = 5, .external_lex_state = 4}, [1315] = {.lex_state = 5, .external_lex_state = 3}, [1316] = {.lex_state = 5, .external_lex_state = 4}, [1317] = {.lex_state = 5, .external_lex_state = 4}, [1318] = {.lex_state = 5, .external_lex_state = 4}, [1319] = {.lex_state = 5, .external_lex_state = 4}, - [1320] = {.lex_state = 5, .external_lex_state = 3}, - [1321] = {.lex_state = 5, .external_lex_state = 4}, - [1322] = {.lex_state = 5, .external_lex_state = 4}, - [1323] = {.lex_state = 5, .external_lex_state = 4}, + [1320] = {.lex_state = 5, .external_lex_state = 4}, + [1321] = {.lex_state = 5, .external_lex_state = 3}, + [1322] = {.lex_state = 5, .external_lex_state = 3}, + [1323] = {.lex_state = 5, .external_lex_state = 3}, [1324] = {.lex_state = 5, .external_lex_state = 3}, - [1325] = {.lex_state = 5, .external_lex_state = 4}, - [1326] = {.lex_state = 5, .external_lex_state = 3}, - [1327] = {.lex_state = 5, .external_lex_state = 4}, + [1325] = {.lex_state = 5, .external_lex_state = 3}, + [1326] = {.lex_state = 5, .external_lex_state = 4}, + [1327] = {.lex_state = 5, .external_lex_state = 3}, [1328] = {.lex_state = 5, .external_lex_state = 3}, - [1329] = {.lex_state = 5, .external_lex_state = 4}, - [1330] = {.lex_state = 5, .external_lex_state = 4}, - [1331] = {.lex_state = 5, .external_lex_state = 4}, + [1329] = {.lex_state = 5, .external_lex_state = 3}, + [1330] = {.lex_state = 5, .external_lex_state = 3}, + [1331] = {.lex_state = 6, .external_lex_state = 3}, [1332] = {.lex_state = 5, .external_lex_state = 4}, [1333] = {.lex_state = 5, .external_lex_state = 4}, [1334] = {.lex_state = 5, .external_lex_state = 4}, [1335] = {.lex_state = 5, .external_lex_state = 4}, - [1336] = {.lex_state = 5, .external_lex_state = 3}, + [1336] = {.lex_state = 5, .external_lex_state = 4}, [1337] = {.lex_state = 5, .external_lex_state = 3}, - [1338] = {.lex_state = 5, .external_lex_state = 3}, + [1338] = {.lex_state = 5, .external_lex_state = 4}, [1339] = {.lex_state = 5, .external_lex_state = 4}, [1340] = {.lex_state = 5, .external_lex_state = 3}, - [1341] = {.lex_state = 5, .external_lex_state = 4}, + [1341] = {.lex_state = 5, .external_lex_state = 3}, [1342] = {.lex_state = 5, .external_lex_state = 4}, [1343] = {.lex_state = 5, .external_lex_state = 4}, - [1344] = {.lex_state = 5, .external_lex_state = 3}, + [1344] = {.lex_state = 5, .external_lex_state = 4}, [1345] = {.lex_state = 5, .external_lex_state = 4}, [1346] = {.lex_state = 5, .external_lex_state = 3}, [1347] = {.lex_state = 5, .external_lex_state = 4}, - [1348] = {.lex_state = 5, .external_lex_state = 3}, - [1349] = {.lex_state = 5, .external_lex_state = 4}, - [1350] = {.lex_state = 5, .external_lex_state = 4}, + [1348] = {.lex_state = 5, .external_lex_state = 4}, + [1349] = {.lex_state = 5, .external_lex_state = 3}, + [1350] = {.lex_state = 5, .external_lex_state = 3}, [1351] = {.lex_state = 5, .external_lex_state = 3}, - [1352] = {.lex_state = 6, .external_lex_state = 3}, - [1353] = {.lex_state = 5, .external_lex_state = 4}, + [1352] = {.lex_state = 5, .external_lex_state = 4}, + [1353] = {.lex_state = 5, .external_lex_state = 3}, [1354] = {.lex_state = 5, .external_lex_state = 3}, - [1355] = {.lex_state = 5, .external_lex_state = 3}, - [1356] = {.lex_state = 5, .external_lex_state = 4}, + [1355] = {.lex_state = 5, .external_lex_state = 4}, + [1356] = {.lex_state = 5, .external_lex_state = 3}, [1357] = {.lex_state = 5, .external_lex_state = 3}, [1358] = {.lex_state = 5, .external_lex_state = 3}, [1359] = {.lex_state = 5, .external_lex_state = 3}, [1360] = {.lex_state = 5, .external_lex_state = 3}, [1361] = {.lex_state = 5, .external_lex_state = 3}, [1362] = {.lex_state = 5, .external_lex_state = 3}, - [1363] = {.lex_state = 5, .external_lex_state = 3}, + [1363] = {.lex_state = 5, .external_lex_state = 4}, [1364] = {.lex_state = 5, .external_lex_state = 4}, - [1365] = {.lex_state = 5, .external_lex_state = 4}, - [1366] = {.lex_state = 5, .external_lex_state = 3}, - [1367] = {.lex_state = 6, .external_lex_state = 3}, - [1368] = {.lex_state = 5, .external_lex_state = 3}, + [1365] = {.lex_state = 5, .external_lex_state = 3}, + [1366] = {.lex_state = 5, .external_lex_state = 4}, + [1367] = {.lex_state = 5, .external_lex_state = 3}, + [1368] = {.lex_state = 6, .external_lex_state = 3}, [1369] = {.lex_state = 5, .external_lex_state = 3}, - [1370] = {.lex_state = 5, .external_lex_state = 3}, + [1370] = {.lex_state = 5, .external_lex_state = 4}, [1371] = {.lex_state = 5, .external_lex_state = 3}, [1372] = {.lex_state = 5, .external_lex_state = 3}, - [1373] = {.lex_state = 6, .external_lex_state = 3}, - [1374] = {.lex_state = 6, .external_lex_state = 3}, - [1375] = {.lex_state = 5, .external_lex_state = 3}, - [1376] = {.lex_state = 5, .external_lex_state = 3}, + [1373] = {.lex_state = 5, .external_lex_state = 3}, + [1374] = {.lex_state = 5, .external_lex_state = 3}, + [1375] = {.lex_state = 6, .external_lex_state = 3}, + [1376] = {.lex_state = 6, .external_lex_state = 3}, [1377] = {.lex_state = 5, .external_lex_state = 3}, - [1378] = {.lex_state = 5, .external_lex_state = 3}, - [1379] = {.lex_state = 12, .external_lex_state = 2}, - [1380] = {.lex_state = 5, .external_lex_state = 4}, - [1381] = {.lex_state = 5, .external_lex_state = 3}, + [1378] = {.lex_state = 6, .external_lex_state = 3}, + [1379] = {.lex_state = 5, .external_lex_state = 3}, + [1380] = {.lex_state = 5, .external_lex_state = 3}, + [1381] = {.lex_state = 12, .external_lex_state = 2}, [1382] = {.lex_state = 5, .external_lex_state = 3}, - [1383] = {.lex_state = 5, .external_lex_state = 3}, - [1384] = {.lex_state = 5, .external_lex_state = 3}, + [1383] = {.lex_state = 12, .external_lex_state = 2}, + [1384] = {.lex_state = 5, .external_lex_state = 4}, [1385] = {.lex_state = 5, .external_lex_state = 3}, [1386] = {.lex_state = 5, .external_lex_state = 3}, - [1387] = {.lex_state = 12, .external_lex_state = 2}, - [1388] = {.lex_state = 12, .external_lex_state = 2}, - [1389] = {.lex_state = 12, .external_lex_state = 2}, + [1387] = {.lex_state = 5, .external_lex_state = 4}, + [1388] = {.lex_state = 5, .external_lex_state = 3}, + [1389] = {.lex_state = 6, .external_lex_state = 3}, [1390] = {.lex_state = 5, .external_lex_state = 3}, - [1391] = {.lex_state = 6, .external_lex_state = 3}, - [1392] = {.lex_state = 5, .external_lex_state = 4}, - [1393] = {.lex_state = 5, .external_lex_state = 3}, + [1391] = {.lex_state = 12, .external_lex_state = 2}, + [1392] = {.lex_state = 5, .external_lex_state = 3}, + [1393] = {.lex_state = 12, .external_lex_state = 2}, [1394] = {.lex_state = 5, .external_lex_state = 3}, - [1395] = {.lex_state = 5, .external_lex_state = 3}, - [1396] = {.lex_state = 12, .external_lex_state = 2}, + [1395] = {.lex_state = 5, .external_lex_state = 4}, + [1396] = {.lex_state = 5, .external_lex_state = 4}, [1397] = {.lex_state = 5, .external_lex_state = 3}, - [1398] = {.lex_state = 5, .external_lex_state = 4}, - [1399] = {.lex_state = 5, .external_lex_state = 3}, - [1400] = {.lex_state = 5, .external_lex_state = 4}, + [1398] = {.lex_state = 5, .external_lex_state = 3}, + [1399] = {.lex_state = 12, .external_lex_state = 2}, + [1400] = {.lex_state = 5, .external_lex_state = 3}, [1401] = {.lex_state = 12, .external_lex_state = 2}, [1402] = {.lex_state = 5, .external_lex_state = 3}, [1403] = {.lex_state = 5, .external_lex_state = 3}, @@ -14648,52 +14648,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1413] = {.lex_state = 5, .external_lex_state = 3}, [1414] = {.lex_state = 5, .external_lex_state = 3}, [1415] = {.lex_state = 5, .external_lex_state = 3}, - [1416] = {.lex_state = 5, .external_lex_state = 3}, - [1417] = {.lex_state = 5, .external_lex_state = 4}, + [1416] = {.lex_state = 5, .external_lex_state = 4}, + [1417] = {.lex_state = 5, .external_lex_state = 3}, [1418] = {.lex_state = 5, .external_lex_state = 3}, [1419] = {.lex_state = 12, .external_lex_state = 2}, [1420] = {.lex_state = 5, .external_lex_state = 3}, [1421] = {.lex_state = 5, .external_lex_state = 3}, - [1422] = {.lex_state = 12, .external_lex_state = 2}, - [1423] = {.lex_state = 5, .external_lex_state = 3}, - [1424] = {.lex_state = 12, .external_lex_state = 2}, - [1425] = {.lex_state = 12, .external_lex_state = 2}, + [1422] = {.lex_state = 5, .external_lex_state = 3}, + [1423] = {.lex_state = 12, .external_lex_state = 2}, + [1424] = {.lex_state = 5, .external_lex_state = 3}, + [1425] = {.lex_state = 5, .external_lex_state = 3}, [1426] = {.lex_state = 5, .external_lex_state = 3}, [1427] = {.lex_state = 5, .external_lex_state = 3}, - [1428] = {.lex_state = 12, .external_lex_state = 2}, + [1428] = {.lex_state = 5, .external_lex_state = 3}, [1429] = {.lex_state = 12, .external_lex_state = 2}, - [1430] = {.lex_state = 5, .external_lex_state = 3}, - [1431] = {.lex_state = 5, .external_lex_state = 3}, - [1432] = {.lex_state = 5, .external_lex_state = 3}, - [1433] = {.lex_state = 12, .external_lex_state = 2}, - [1434] = {.lex_state = 5, .external_lex_state = 3}, - [1435] = {.lex_state = 12, .external_lex_state = 2}, - [1436] = {.lex_state = 12, .external_lex_state = 2}, - [1437] = {.lex_state = 5, .external_lex_state = 3}, - [1438] = {.lex_state = 5, .external_lex_state = 3}, + [1430] = {.lex_state = 12, .external_lex_state = 2}, + [1431] = {.lex_state = 12, .external_lex_state = 2}, + [1432] = {.lex_state = 12, .external_lex_state = 2}, + [1433] = {.lex_state = 5, .external_lex_state = 3}, + [1434] = {.lex_state = 12, .external_lex_state = 2}, + [1435] = {.lex_state = 5, .external_lex_state = 3}, + [1436] = {.lex_state = 5, .external_lex_state = 3}, + [1437] = {.lex_state = 12, .external_lex_state = 2}, + [1438] = {.lex_state = 12, .external_lex_state = 2}, [1439] = {.lex_state = 5, .external_lex_state = 3}, - [1440] = {.lex_state = 12, .external_lex_state = 2}, + [1440] = {.lex_state = 5, .external_lex_state = 3}, [1441] = {.lex_state = 12, .external_lex_state = 2}, [1442] = {.lex_state = 5, .external_lex_state = 3}, - [1443] = {.lex_state = 5, .external_lex_state = 3}, - [1444] = {.lex_state = 12, .external_lex_state = 2}, - [1445] = {.lex_state = 12, .external_lex_state = 2}, + [1443] = {.lex_state = 12, .external_lex_state = 2}, + [1444] = {.lex_state = 5, .external_lex_state = 3}, + [1445] = {.lex_state = 5, .external_lex_state = 3}, [1446] = {.lex_state = 5, .external_lex_state = 3}, - [1447] = {.lex_state = 5, .external_lex_state = 3}, + [1447] = {.lex_state = 12, .external_lex_state = 2}, [1448] = {.lex_state = 5, .external_lex_state = 3}, [1449] = {.lex_state = 5, .external_lex_state = 3}, [1450] = {.lex_state = 5, .external_lex_state = 3}, - [1451] = {.lex_state = 5, .external_lex_state = 3}, + [1451] = {.lex_state = 12, .external_lex_state = 2}, [1452] = {.lex_state = 5, .external_lex_state = 3}, [1453] = {.lex_state = 5, .external_lex_state = 3}, [1454] = {.lex_state = 5, .external_lex_state = 3}, - [1455] = {.lex_state = 12, .external_lex_state = 2}, - [1456] = {.lex_state = 12, .external_lex_state = 2}, + [1455] = {.lex_state = 5, .external_lex_state = 3}, + [1456] = {.lex_state = 5, .external_lex_state = 3}, [1457] = {.lex_state = 5, .external_lex_state = 3}, - [1458] = {.lex_state = 12, .external_lex_state = 2}, - [1459] = {.lex_state = 5, .external_lex_state = 3}, - [1460] = {.lex_state = 5, .external_lex_state = 3}, - [1461] = {.lex_state = 5, .external_lex_state = 3}, + [1458] = {.lex_state = 5, .external_lex_state = 3}, + [1459] = {.lex_state = 12, .external_lex_state = 2}, + [1460] = {.lex_state = 12, .external_lex_state = 2}, + [1461] = {.lex_state = 12, .external_lex_state = 2}, [1462] = {.lex_state = 12, .external_lex_state = 2}, [1463] = {.lex_state = 12, .external_lex_state = 2}, [1464] = {.lex_state = 5, .external_lex_state = 3}, @@ -14713,37 +14713,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1478] = {.lex_state = 12, .external_lex_state = 2}, [1479] = {.lex_state = 12, .external_lex_state = 2}, [1480] = {.lex_state = 12, .external_lex_state = 2}, - [1481] = {.lex_state = 12, .external_lex_state = 2}, - [1482] = {.lex_state = 13, .external_lex_state = 5}, + [1481] = {.lex_state = 13, .external_lex_state = 5}, + [1482] = {.lex_state = 12, .external_lex_state = 2}, [1483] = {.lex_state = 13, .external_lex_state = 5}, - [1484] = {.lex_state = 13, .external_lex_state = 5}, + [1484] = {.lex_state = 12, .external_lex_state = 2}, [1485] = {.lex_state = 12, .external_lex_state = 2}, - [1486] = {.lex_state = 13, .external_lex_state = 5}, - [1487] = {.lex_state = 12, .external_lex_state = 2}, - [1488] = {.lex_state = 12, .external_lex_state = 2}, + [1486] = {.lex_state = 12, .external_lex_state = 2}, + [1487] = {.lex_state = 13, .external_lex_state = 5}, + [1488] = {.lex_state = 13, .external_lex_state = 5}, [1489] = {.lex_state = 12, .external_lex_state = 2}, [1490] = {.lex_state = 12, .external_lex_state = 2}, [1491] = {.lex_state = 12, .external_lex_state = 2}, [1492] = {.lex_state = 12, .external_lex_state = 2}, - [1493] = {.lex_state = 13, .external_lex_state = 5}, + [1493] = {.lex_state = 12, .external_lex_state = 2}, [1494] = {.lex_state = 12, .external_lex_state = 2}, - [1495] = {.lex_state = 12, .external_lex_state = 2}, + [1495] = {.lex_state = 13, .external_lex_state = 5}, [1496] = {.lex_state = 12, .external_lex_state = 2}, [1497] = {.lex_state = 96, .external_lex_state = 2}, - [1498] = {.lex_state = 96, .external_lex_state = 2}, + [1498] = {.lex_state = 7, .external_lex_state = 3}, [1499] = {.lex_state = 96, .external_lex_state = 2}, [1500] = {.lex_state = 96, .external_lex_state = 2}, [1501] = {.lex_state = 96, .external_lex_state = 2}, - [1502] = {.lex_state = 7, .external_lex_state = 3}, + [1502] = {.lex_state = 96, .external_lex_state = 2}, [1503] = {.lex_state = 96, .external_lex_state = 2}, - [1504] = {.lex_state = 7, .external_lex_state = 4}, + [1504] = {.lex_state = 7, .external_lex_state = 3}, [1505] = {.lex_state = 7, .external_lex_state = 3}, - [1506] = {.lex_state = 7, .external_lex_state = 3}, + [1506] = {.lex_state = 13, .external_lex_state = 5}, [1507] = {.lex_state = 13, .external_lex_state = 5}, - [1508] = {.lex_state = 13, .external_lex_state = 5}, - [1509] = {.lex_state = 7, .external_lex_state = 3}, - [1510] = {.lex_state = 7, .external_lex_state = 3}, - [1511] = {.lex_state = 7, .external_lex_state = 4}, + [1508] = {.lex_state = 7, .external_lex_state = 3}, + [1509] = {.lex_state = 7, .external_lex_state = 4}, + [1510] = {.lex_state = 7, .external_lex_state = 4}, + [1511] = {.lex_state = 7, .external_lex_state = 3}, [1512] = {.lex_state = 7, .external_lex_state = 3}, [1513] = {.lex_state = 7, .external_lex_state = 3}, [1514] = {.lex_state = 7, .external_lex_state = 3}, @@ -14754,8 +14754,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1519] = {.lex_state = 7, .external_lex_state = 3}, [1520] = {.lex_state = 7, .external_lex_state = 3}, [1521] = {.lex_state = 7, .external_lex_state = 3}, - [1522] = {.lex_state = 7, .external_lex_state = 3}, - [1523] = {.lex_state = 96, .external_lex_state = 2}, + [1522] = {.lex_state = 96, .external_lex_state = 2}, + [1523] = {.lex_state = 7, .external_lex_state = 3}, [1524] = {.lex_state = 7, .external_lex_state = 3}, [1525] = {.lex_state = 7, .external_lex_state = 3}, [1526] = {.lex_state = 7, .external_lex_state = 3}, @@ -14836,29 +14836,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1601] = {.lex_state = 7, .external_lex_state = 3}, [1602] = {.lex_state = 7, .external_lex_state = 3}, [1603] = {.lex_state = 7, .external_lex_state = 3}, - [1604] = {.lex_state = 7, .external_lex_state = 4}, + [1604] = {.lex_state = 7, .external_lex_state = 3}, [1605] = {.lex_state = 7, .external_lex_state = 3}, [1606] = {.lex_state = 7, .external_lex_state = 3}, [1607] = {.lex_state = 7, .external_lex_state = 3}, - [1608] = {.lex_state = 7, .external_lex_state = 3}, + [1608] = {.lex_state = 7, .external_lex_state = 4}, [1609] = {.lex_state = 7, .external_lex_state = 4}, [1610] = {.lex_state = 7, .external_lex_state = 3}, - [1611] = {.lex_state = 7, .external_lex_state = 3}, + [1611] = {.lex_state = 7, .external_lex_state = 4}, [1612] = {.lex_state = 7, .external_lex_state = 3}, [1613] = {.lex_state = 7, .external_lex_state = 3}, [1614] = {.lex_state = 7, .external_lex_state = 3}, [1615] = {.lex_state = 7, .external_lex_state = 3}, [1616] = {.lex_state = 7, .external_lex_state = 3}, - [1617] = {.lex_state = 7, .external_lex_state = 3}, + [1617] = {.lex_state = 7, .external_lex_state = 4}, [1618] = {.lex_state = 7, .external_lex_state = 3}, [1619] = {.lex_state = 7, .external_lex_state = 3}, [1620] = {.lex_state = 7, .external_lex_state = 3}, [1621] = {.lex_state = 7, .external_lex_state = 3}, [1622] = {.lex_state = 7, .external_lex_state = 3}, [1623] = {.lex_state = 7, .external_lex_state = 3}, - [1624] = {.lex_state = 7, .external_lex_state = 4}, + [1624] = {.lex_state = 7, .external_lex_state = 3}, [1625] = {.lex_state = 7, .external_lex_state = 3}, - [1626] = {.lex_state = 7, .external_lex_state = 4}, + [1626] = {.lex_state = 7, .external_lex_state = 3}, [1627] = {.lex_state = 7, .external_lex_state = 3}, [1628] = {.lex_state = 7, .external_lex_state = 3}, [1629] = {.lex_state = 7, .external_lex_state = 3}, @@ -14941,8 +14941,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1706] = {.lex_state = 7, .external_lex_state = 3}, [1707] = {.lex_state = 7, .external_lex_state = 3}, [1708] = {.lex_state = 7, .external_lex_state = 3}, - [1709] = {.lex_state = 7, .external_lex_state = 3}, - [1710] = {.lex_state = 7, .external_lex_state = 4}, + [1709] = {.lex_state = 7, .external_lex_state = 4}, + [1710] = {.lex_state = 7, .external_lex_state = 3}, [1711] = {.lex_state = 7, .external_lex_state = 4}, [1712] = {.lex_state = 7, .external_lex_state = 4}, [1713] = {.lex_state = 7, .external_lex_state = 3}, @@ -14961,7 +14961,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1726] = {.lex_state = 7, .external_lex_state = 4}, [1727] = {.lex_state = 7, .external_lex_state = 3}, [1728] = {.lex_state = 7, .external_lex_state = 4}, - [1729] = {.lex_state = 7, .external_lex_state = 3}, + [1729] = {.lex_state = 12, .external_lex_state = 5}, [1730] = {.lex_state = 7, .external_lex_state = 4}, [1731] = {.lex_state = 7, .external_lex_state = 3}, [1732] = {.lex_state = 7, .external_lex_state = 4}, @@ -15005,7 +15005,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1770] = {.lex_state = 7, .external_lex_state = 4}, [1771] = {.lex_state = 7, .external_lex_state = 3}, [1772] = {.lex_state = 12, .external_lex_state = 5}, - [1773] = {.lex_state = 12, .external_lex_state = 5}, + [1773] = {.lex_state = 7, .external_lex_state = 3}, [1774] = {.lex_state = 12, .external_lex_state = 5}, [1775] = {.lex_state = 12, .external_lex_state = 5}, [1776] = {.lex_state = 7, .external_lex_state = 4}, @@ -15021,7 +15021,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1786] = {.lex_state = 12, .external_lex_state = 5}, [1787] = {.lex_state = 7, .external_lex_state = 4}, [1788] = {.lex_state = 7, .external_lex_state = 4}, - [1789] = {.lex_state = 7, .external_lex_state = 4}, + [1789] = {.lex_state = 7, .external_lex_state = 3}, [1790] = {.lex_state = 7, .external_lex_state = 4}, [1791] = {.lex_state = 12, .external_lex_state = 5}, [1792] = {.lex_state = 7, .external_lex_state = 4}, @@ -15045,7 +15045,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1810] = {.lex_state = 7, .external_lex_state = 4}, [1811] = {.lex_state = 7, .external_lex_state = 4}, [1812] = {.lex_state = 7, .external_lex_state = 4}, - [1813] = {.lex_state = 7, .external_lex_state = 3}, + [1813] = {.lex_state = 7, .external_lex_state = 4}, [1814] = {.lex_state = 7, .external_lex_state = 4}, [1815] = {.lex_state = 7, .external_lex_state = 4}, [1816] = {.lex_state = 7, .external_lex_state = 4}, @@ -15115,10 +15115,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1880] = {.lex_state = 7, .external_lex_state = 4}, [1881] = {.lex_state = 7, .external_lex_state = 4}, [1882] = {.lex_state = 7, .external_lex_state = 4}, - [1883] = {.lex_state = 7, .external_lex_state = 4}, - [1884] = {.lex_state = 7, .external_lex_state = 4}, - [1885] = {.lex_state = 7, .external_lex_state = 3}, - [1886] = {.lex_state = 7, .external_lex_state = 3}, + [1883] = {.lex_state = 7, .external_lex_state = 3}, + [1884] = {.lex_state = 7, .external_lex_state = 3}, + [1885] = {.lex_state = 7, .external_lex_state = 4}, + [1886] = {.lex_state = 7, .external_lex_state = 4}, [1887] = {.lex_state = 7, .external_lex_state = 3}, [1888] = {.lex_state = 7, .external_lex_state = 3}, [1889] = {.lex_state = 7, .external_lex_state = 3}, @@ -15128,8 +15128,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1893] = {.lex_state = 7, .external_lex_state = 4}, [1894] = {.lex_state = 7, .external_lex_state = 3}, [1895] = {.lex_state = 7, .external_lex_state = 3}, - [1896] = {.lex_state = 7, .external_lex_state = 4}, - [1897] = {.lex_state = 7, .external_lex_state = 3}, + [1896] = {.lex_state = 7, .external_lex_state = 3}, + [1897] = {.lex_state = 7, .external_lex_state = 4}, [1898] = {.lex_state = 7, .external_lex_state = 3}, [1899] = {.lex_state = 7, .external_lex_state = 3}, [1900] = {.lex_state = 7, .external_lex_state = 3}, @@ -15138,17 +15138,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1903] = {.lex_state = 7, .external_lex_state = 3}, [1904] = {.lex_state = 7, .external_lex_state = 3}, [1905] = {.lex_state = 7, .external_lex_state = 4}, - [1906] = {.lex_state = 7, .external_lex_state = 3}, + [1906] = {.lex_state = 12, .external_lex_state = 5}, [1907] = {.lex_state = 7, .external_lex_state = 3}, [1908] = {.lex_state = 7, .external_lex_state = 3}, - [1909] = {.lex_state = 7, .external_lex_state = 4}, + [1909] = {.lex_state = 7, .external_lex_state = 3}, [1910] = {.lex_state = 7, .external_lex_state = 4}, [1911] = {.lex_state = 7, .external_lex_state = 4}, [1912] = {.lex_state = 7, .external_lex_state = 4}, - [1913] = {.lex_state = 7, .external_lex_state = 3}, + [1913] = {.lex_state = 7, .external_lex_state = 4}, [1914] = {.lex_state = 7, .external_lex_state = 3}, - [1915] = {.lex_state = 7, .external_lex_state = 4}, - [1916] = {.lex_state = 12, .external_lex_state = 5}, + [1915] = {.lex_state = 7, .external_lex_state = 3}, + [1916] = {.lex_state = 7, .external_lex_state = 4}, [1917] = {.lex_state = 12, .external_lex_state = 2}, [1918] = {.lex_state = 7, .external_lex_state = 4}, [1919] = {.lex_state = 7, .external_lex_state = 3}, @@ -15164,7 +15164,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1929] = {.lex_state = 7, .external_lex_state = 4}, [1930] = {.lex_state = 7, .external_lex_state = 3}, [1931] = {.lex_state = 7, .external_lex_state = 4}, - [1932] = {.lex_state = 7, .external_lex_state = 4}, + [1932] = {.lex_state = 12, .external_lex_state = 5}, [1933] = {.lex_state = 7, .external_lex_state = 3}, [1934] = {.lex_state = 7, .external_lex_state = 3}, [1935] = {.lex_state = 7, .external_lex_state = 4}, @@ -15190,11 +15190,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1955] = {.lex_state = 7, .external_lex_state = 3}, [1956] = {.lex_state = 7, .external_lex_state = 4}, [1957] = {.lex_state = 7, .external_lex_state = 4}, - [1958] = {.lex_state = 7, .external_lex_state = 4}, - [1959] = {.lex_state = 7, .external_lex_state = 3}, + [1958] = {.lex_state = 7, .external_lex_state = 3}, + [1959] = {.lex_state = 7, .external_lex_state = 4}, [1960] = {.lex_state = 7, .external_lex_state = 3}, [1961] = {.lex_state = 7, .external_lex_state = 4}, - [1962] = {.lex_state = 12, .external_lex_state = 5}, + [1962] = {.lex_state = 7, .external_lex_state = 4}, [1963] = {.lex_state = 7, .external_lex_state = 4}, [1964] = {.lex_state = 96, .external_lex_state = 2}, [1965] = {.lex_state = 7, .external_lex_state = 4}, @@ -15348,86 +15348,86 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2113] = {.lex_state = 7, .external_lex_state = 3}, [2114] = {.lex_state = 7, .external_lex_state = 4}, [2115] = {.lex_state = 7, .external_lex_state = 4}, - [2116] = {.lex_state = 7, .external_lex_state = 3}, - [2117] = {.lex_state = 7, .external_lex_state = 4}, + [2116] = {.lex_state = 7, .external_lex_state = 4}, + [2117] = {.lex_state = 7, .external_lex_state = 3}, [2118] = {.lex_state = 7, .external_lex_state = 4}, - [2119] = {.lex_state = 12, .external_lex_state = 5}, - [2120] = {.lex_state = 7, .external_lex_state = 4}, + [2119] = {.lex_state = 7, .external_lex_state = 4}, + [2120] = {.lex_state = 12, .external_lex_state = 5}, [2121] = {.lex_state = 7, .external_lex_state = 4}, - [2122] = {.lex_state = 12, .external_lex_state = 5}, + [2122] = {.lex_state = 7, .external_lex_state = 4}, [2123] = {.lex_state = 12, .external_lex_state = 5}, - [2124] = {.lex_state = 7, .external_lex_state = 3}, - [2125] = {.lex_state = 7, .external_lex_state = 4}, + [2124] = {.lex_state = 12, .external_lex_state = 5}, + [2125] = {.lex_state = 7, .external_lex_state = 3}, [2126] = {.lex_state = 7, .external_lex_state = 3}, [2127] = {.lex_state = 7, .external_lex_state = 4}, - [2128] = {.lex_state = 7, .external_lex_state = 3}, - [2129] = {.lex_state = 7, .external_lex_state = 4}, + [2128] = {.lex_state = 7, .external_lex_state = 4}, + [2129] = {.lex_state = 7, .external_lex_state = 3}, [2130] = {.lex_state = 7, .external_lex_state = 4}, [2131] = {.lex_state = 7, .external_lex_state = 4}, [2132] = {.lex_state = 7, .external_lex_state = 4}, [2133] = {.lex_state = 7, .external_lex_state = 4}, [2134] = {.lex_state = 7, .external_lex_state = 4}, [2135] = {.lex_state = 7, .external_lex_state = 4}, - [2136] = {.lex_state = 7, .external_lex_state = 3}, - [2137] = {.lex_state = 7, .external_lex_state = 4}, - [2138] = {.lex_state = 12, .external_lex_state = 2}, - [2139] = {.lex_state = 7, .external_lex_state = 3}, - [2140] = {.lex_state = 12, .external_lex_state = 2}, + [2136] = {.lex_state = 7, .external_lex_state = 4}, + [2137] = {.lex_state = 12, .external_lex_state = 2}, + [2138] = {.lex_state = 7, .external_lex_state = 3}, + [2139] = {.lex_state = 12, .external_lex_state = 2}, + [2140] = {.lex_state = 7, .external_lex_state = 3}, [2141] = {.lex_state = 7, .external_lex_state = 4}, [2142] = {.lex_state = 7, .external_lex_state = 3}, [2143] = {.lex_state = 7, .external_lex_state = 3}, [2144] = {.lex_state = 7, .external_lex_state = 3}, [2145] = {.lex_state = 7, .external_lex_state = 3}, [2146] = {.lex_state = 7, .external_lex_state = 3}, - [2147] = {.lex_state = 7, .external_lex_state = 3}, - [2148] = {.lex_state = 12, .external_lex_state = 2}, - [2149] = {.lex_state = 7, .external_lex_state = 3}, - [2150] = {.lex_state = 12, .external_lex_state = 2}, + [2147] = {.lex_state = 12, .external_lex_state = 2}, + [2148] = {.lex_state = 7, .external_lex_state = 4}, + [2149] = {.lex_state = 12, .external_lex_state = 2}, + [2150] = {.lex_state = 12, .external_lex_state = 5}, [2151] = {.lex_state = 12, .external_lex_state = 5}, - [2152] = {.lex_state = 12, .external_lex_state = 5}, - [2153] = {.lex_state = 7, .external_lex_state = 3}, + [2152] = {.lex_state = 7, .external_lex_state = 3}, + [2153] = {.lex_state = 7, .external_lex_state = 4}, [2154] = {.lex_state = 7, .external_lex_state = 3}, - [2155] = {.lex_state = 96, .external_lex_state = 2}, - [2156] = {.lex_state = 12, .external_lex_state = 5}, + [2155] = {.lex_state = 7, .external_lex_state = 3}, + [2156] = {.lex_state = 96, .external_lex_state = 2}, [2157] = {.lex_state = 12, .external_lex_state = 5}, - [2158] = {.lex_state = 7, .external_lex_state = 3}, + [2158] = {.lex_state = 12, .external_lex_state = 5}, [2159] = {.lex_state = 7, .external_lex_state = 3}, - [2160] = {.lex_state = 7, .external_lex_state = 4}, - [2161] = {.lex_state = 7, .external_lex_state = 4}, + [2160] = {.lex_state = 7, .external_lex_state = 3}, + [2161] = {.lex_state = 7, .external_lex_state = 3}, [2162] = {.lex_state = 7, .external_lex_state = 4}, - [2163] = {.lex_state = 12, .external_lex_state = 5}, + [2163] = {.lex_state = 7, .external_lex_state = 4}, [2164] = {.lex_state = 12, .external_lex_state = 5}, [2165] = {.lex_state = 12, .external_lex_state = 5}, [2166] = {.lex_state = 12, .external_lex_state = 5}, - [2167] = {.lex_state = 7, .external_lex_state = 4}, + [2167] = {.lex_state = 12, .external_lex_state = 5}, [2168] = {.lex_state = 12, .external_lex_state = 5}, [2169] = {.lex_state = 12, .external_lex_state = 5}, [2170] = {.lex_state = 7, .external_lex_state = 4}, [2171] = {.lex_state = 7, .external_lex_state = 4}, - [2172] = {.lex_state = 7, .external_lex_state = 4}, + [2172] = {.lex_state = 8, .external_lex_state = 4}, [2173] = {.lex_state = 7, .external_lex_state = 4}, - [2174] = {.lex_state = 12, .external_lex_state = 5}, + [2174] = {.lex_state = 7, .external_lex_state = 4}, [2175] = {.lex_state = 7, .external_lex_state = 3}, - [2176] = {.lex_state = 8, .external_lex_state = 4}, - [2177] = {.lex_state = 7, .external_lex_state = 3}, + [2176] = {.lex_state = 12, .external_lex_state = 5}, + [2177] = {.lex_state = 7, .external_lex_state = 4}, [2178] = {.lex_state = 7, .external_lex_state = 3}, [2179] = {.lex_state = 7, .external_lex_state = 3}, [2180] = {.lex_state = 7, .external_lex_state = 3}, - [2181] = {.lex_state = 7, .external_lex_state = 4}, - [2182] = {.lex_state = 7, .external_lex_state = 3}, - [2183] = {.lex_state = 7, .external_lex_state = 4}, + [2181] = {.lex_state = 7, .external_lex_state = 3}, + [2182] = {.lex_state = 7, .external_lex_state = 4}, + [2183] = {.lex_state = 7, .external_lex_state = 3}, [2184] = {.lex_state = 7, .external_lex_state = 4}, [2185] = {.lex_state = 7, .external_lex_state = 4}, [2186] = {.lex_state = 7, .external_lex_state = 4}, - [2187] = {.lex_state = 7, .external_lex_state = 3}, - [2188] = {.lex_state = 7, .external_lex_state = 4}, + [2187] = {.lex_state = 7, .external_lex_state = 4}, + [2188] = {.lex_state = 7, .external_lex_state = 3}, [2189] = {.lex_state = 7, .external_lex_state = 4}, [2190] = {.lex_state = 7, .external_lex_state = 4}, [2191] = {.lex_state = 7, .external_lex_state = 4}, - [2192] = {.lex_state = 7, .external_lex_state = 3}, - [2193] = {.lex_state = 7, .external_lex_state = 4}, - [2194] = {.lex_state = 7, .external_lex_state = 3}, - [2195] = {.lex_state = 7, .external_lex_state = 4}, + [2192] = {.lex_state = 7, .external_lex_state = 4}, + [2193] = {.lex_state = 7, .external_lex_state = 3}, + [2194] = {.lex_state = 7, .external_lex_state = 4}, + [2195] = {.lex_state = 7, .external_lex_state = 3}, [2196] = {.lex_state = 7, .external_lex_state = 4}, [2197] = {.lex_state = 7, .external_lex_state = 4}, [2198] = {.lex_state = 7, .external_lex_state = 4}, @@ -15444,19 +15444,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2209] = {.lex_state = 7, .external_lex_state = 4}, [2210] = {.lex_state = 7, .external_lex_state = 4}, [2211] = {.lex_state = 7, .external_lex_state = 4}, - [2212] = {.lex_state = 12, .external_lex_state = 5}, + [2212] = {.lex_state = 7, .external_lex_state = 4}, [2213] = {.lex_state = 12, .external_lex_state = 5}, - [2214] = {.lex_state = 7, .external_lex_state = 3}, - [2215] = {.lex_state = 7, .external_lex_state = 4}, + [2214] = {.lex_state = 12, .external_lex_state = 5}, + [2215] = {.lex_state = 7, .external_lex_state = 3}, [2216] = {.lex_state = 7, .external_lex_state = 4}, [2217] = {.lex_state = 7, .external_lex_state = 4}, - [2218] = {.lex_state = 12, .external_lex_state = 5}, + [2218] = {.lex_state = 7, .external_lex_state = 4}, [2219] = {.lex_state = 12, .external_lex_state = 5}, [2220] = {.lex_state = 12, .external_lex_state = 5}, - [2221] = {.lex_state = 7, .external_lex_state = 3}, - [2222] = {.lex_state = 7, .external_lex_state = 4}, + [2221] = {.lex_state = 12, .external_lex_state = 5}, + [2222] = {.lex_state = 12, .external_lex_state = 5}, [2223] = {.lex_state = 7, .external_lex_state = 4}, - [2224] = {.lex_state = 12, .external_lex_state = 5}, + [2224] = {.lex_state = 7, .external_lex_state = 3}, [2225] = {.lex_state = 7, .external_lex_state = 4}, [2226] = {.lex_state = 12, .external_lex_state = 5}, [2227] = {.lex_state = 12, .external_lex_state = 5}, @@ -15464,8 +15464,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2229] = {.lex_state = 12, .external_lex_state = 5}, [2230] = {.lex_state = 12, .external_lex_state = 5}, [2231] = {.lex_state = 12, .external_lex_state = 5}, - [2232] = {.lex_state = 7, .external_lex_state = 4}, - [2233] = {.lex_state = 7, .external_lex_state = 3}, + [2232] = {.lex_state = 7, .external_lex_state = 3}, + [2233] = {.lex_state = 7, .external_lex_state = 4}, [2234] = {.lex_state = 7, .external_lex_state = 4}, [2235] = {.lex_state = 7, .external_lex_state = 4}, [2236] = {.lex_state = 7, .external_lex_state = 3}, @@ -15475,19 +15475,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2240] = {.lex_state = 7, .external_lex_state = 4}, [2241] = {.lex_state = 7, .external_lex_state = 3}, [2242] = {.lex_state = 7, .external_lex_state = 4}, - [2243] = {.lex_state = 7, .external_lex_state = 4}, + [2243] = {.lex_state = 7, .external_lex_state = 3}, [2244] = {.lex_state = 7, .external_lex_state = 4}, [2245] = {.lex_state = 7, .external_lex_state = 4}, [2246] = {.lex_state = 12, .external_lex_state = 5}, [2247] = {.lex_state = 12, .external_lex_state = 5}, - [2248] = {.lex_state = 7, .external_lex_state = 3}, + [2248] = {.lex_state = 7, .external_lex_state = 4}, [2249] = {.lex_state = 7, .external_lex_state = 4}, - [2250] = {.lex_state = 7, .external_lex_state = 3}, + [2250] = {.lex_state = 7, .external_lex_state = 4}, [2251] = {.lex_state = 7, .external_lex_state = 3}, [2252] = {.lex_state = 7, .external_lex_state = 3}, [2253] = {.lex_state = 7, .external_lex_state = 3}, - [2254] = {.lex_state = 7, .external_lex_state = 4}, - [2255] = {.lex_state = 7, .external_lex_state = 3}, + [2254] = {.lex_state = 7, .external_lex_state = 3}, + [2255] = {.lex_state = 7, .external_lex_state = 4}, [2256] = {.lex_state = 7, .external_lex_state = 3}, [2257] = {.lex_state = 7, .external_lex_state = 3}, [2258] = {.lex_state = 7, .external_lex_state = 3}, @@ -15496,31 +15496,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2261] = {.lex_state = 7, .external_lex_state = 4}, [2262] = {.lex_state = 7, .external_lex_state = 4}, [2263] = {.lex_state = 7, .external_lex_state = 4}, - [2264] = {.lex_state = 12, .external_lex_state = 5}, + [2264] = {.lex_state = 7, .external_lex_state = 4}, [2265] = {.lex_state = 7, .external_lex_state = 3}, [2266] = {.lex_state = 7, .external_lex_state = 4}, - [2267] = {.lex_state = 12, .external_lex_state = 2}, + [2267] = {.lex_state = 12, .external_lex_state = 5}, [2268] = {.lex_state = 12, .external_lex_state = 2}, - [2269] = {.lex_state = 7, .external_lex_state = 4}, - [2270] = {.lex_state = 7, .external_lex_state = 3}, + [2269] = {.lex_state = 12, .external_lex_state = 2}, + [2270] = {.lex_state = 7, .external_lex_state = 4}, [2271] = {.lex_state = 7, .external_lex_state = 3}, - [2272] = {.lex_state = 12, .external_lex_state = 2}, + [2272] = {.lex_state = 7, .external_lex_state = 3}, [2273] = {.lex_state = 7, .external_lex_state = 4}, [2274] = {.lex_state = 12, .external_lex_state = 5}, [2275] = {.lex_state = 12, .external_lex_state = 2}, - [2276] = {.lex_state = 7, .external_lex_state = 4}, + [2276] = {.lex_state = 12, .external_lex_state = 2}, [2277] = {.lex_state = 7, .external_lex_state = 4}, [2278] = {.lex_state = 7, .external_lex_state = 4}, [2279] = {.lex_state = 7, .external_lex_state = 4}, [2280] = {.lex_state = 7, .external_lex_state = 4}, [2281] = {.lex_state = 7, .external_lex_state = 3}, [2282] = {.lex_state = 12, .external_lex_state = 5}, - [2283] = {.lex_state = 7, .external_lex_state = 3}, + [2283] = {.lex_state = 7, .external_lex_state = 4}, [2284] = {.lex_state = 7, .external_lex_state = 3}, - [2285] = {.lex_state = 12, .external_lex_state = 5}, - [2286] = {.lex_state = 7, .external_lex_state = 3}, - [2287] = {.lex_state = 12, .external_lex_state = 5}, - [2288] = {.lex_state = 7, .external_lex_state = 4}, + [2285] = {.lex_state = 7, .external_lex_state = 3}, + [2286] = {.lex_state = 12, .external_lex_state = 5}, + [2287] = {.lex_state = 7, .external_lex_state = 3}, + [2288] = {.lex_state = 12, .external_lex_state = 5}, [2289] = {.lex_state = 7, .external_lex_state = 4}, [2290] = {.lex_state = 7, .external_lex_state = 4}, [2291] = {.lex_state = 7, .external_lex_state = 4}, @@ -15529,7 +15529,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2294] = {.lex_state = 7, .external_lex_state = 4}, [2295] = {.lex_state = 7, .external_lex_state = 4}, [2296] = {.lex_state = 7, .external_lex_state = 4}, - [2297] = {.lex_state = 7, .external_lex_state = 3}, + [2297] = {.lex_state = 7, .external_lex_state = 4}, [2298] = {.lex_state = 7, .external_lex_state = 3}, [2299] = {.lex_state = 7, .external_lex_state = 3}, [2300] = {.lex_state = 7, .external_lex_state = 3}, @@ -15538,52 +15538,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2303] = {.lex_state = 7, .external_lex_state = 3}, [2304] = {.lex_state = 7, .external_lex_state = 3}, [2305] = {.lex_state = 7, .external_lex_state = 3}, - [2306] = {.lex_state = 7, .external_lex_state = 4}, - [2307] = {.lex_state = 12, .external_lex_state = 5}, + [2306] = {.lex_state = 7, .external_lex_state = 3}, + [2307] = {.lex_state = 7, .external_lex_state = 4}, [2308] = {.lex_state = 12, .external_lex_state = 5}, - [2309] = {.lex_state = 7, .external_lex_state = 3}, - [2310] = {.lex_state = 12, .external_lex_state = 5}, - [2311] = {.lex_state = 7, .external_lex_state = 4}, + [2309] = {.lex_state = 12, .external_lex_state = 5}, + [2310] = {.lex_state = 7, .external_lex_state = 3}, + [2311] = {.lex_state = 12, .external_lex_state = 5}, [2312] = {.lex_state = 7, .external_lex_state = 4}, [2313] = {.lex_state = 7, .external_lex_state = 4}, - [2314] = {.lex_state = 12, .external_lex_state = 5}, - [2315] = {.lex_state = 7, .external_lex_state = 4}, - [2316] = {.lex_state = 12, .external_lex_state = 5}, + [2314] = {.lex_state = 7, .external_lex_state = 4}, + [2315] = {.lex_state = 12, .external_lex_state = 5}, + [2316] = {.lex_state = 7, .external_lex_state = 4}, [2317] = {.lex_state = 12, .external_lex_state = 5}, [2318] = {.lex_state = 12, .external_lex_state = 5}, - [2319] = {.lex_state = 7, .external_lex_state = 3}, - [2320] = {.lex_state = 7, .external_lex_state = 4}, - [2321] = {.lex_state = 12, .external_lex_state = 5}, + [2319] = {.lex_state = 12, .external_lex_state = 5}, + [2320] = {.lex_state = 7, .external_lex_state = 3}, + [2321] = {.lex_state = 7, .external_lex_state = 4}, [2322] = {.lex_state = 12, .external_lex_state = 5}, - [2323] = {.lex_state = 7, .external_lex_state = 3}, - [2324] = {.lex_state = 96, .external_lex_state = 2}, - [2325] = {.lex_state = 7, .external_lex_state = 4}, + [2323] = {.lex_state = 12, .external_lex_state = 5}, + [2324] = {.lex_state = 7, .external_lex_state = 3}, + [2325] = {.lex_state = 96, .external_lex_state = 2}, [2326] = {.lex_state = 7, .external_lex_state = 4}, [2327] = {.lex_state = 7, .external_lex_state = 4}, - [2328] = {.lex_state = 7, .external_lex_state = 3}, - [2329] = {.lex_state = 7, .external_lex_state = 4}, + [2328] = {.lex_state = 7, .external_lex_state = 4}, + [2329] = {.lex_state = 7, .external_lex_state = 3}, [2330] = {.lex_state = 7, .external_lex_state = 4}, [2331] = {.lex_state = 7, .external_lex_state = 4}, [2332] = {.lex_state = 7, .external_lex_state = 4}, [2333] = {.lex_state = 7, .external_lex_state = 4}, - [2334] = {.lex_state = 12, .external_lex_state = 2}, + [2334] = {.lex_state = 7, .external_lex_state = 4}, [2335] = {.lex_state = 12, .external_lex_state = 2}, [2336] = {.lex_state = 7, .external_lex_state = 3}, - [2337] = {.lex_state = 7, .external_lex_state = 3}, + [2337] = {.lex_state = 12, .external_lex_state = 2}, [2338] = {.lex_state = 7, .external_lex_state = 3}, [2339] = {.lex_state = 7, .external_lex_state = 3}, - [2340] = {.lex_state = 7, .external_lex_state = 4}, + [2340] = {.lex_state = 7, .external_lex_state = 3}, [2341] = {.lex_state = 7, .external_lex_state = 3}, [2342] = {.lex_state = 7, .external_lex_state = 3}, - [2343] = {.lex_state = 12, .external_lex_state = 5}, - [2344] = {.lex_state = 7, .external_lex_state = 4}, + [2343] = {.lex_state = 7, .external_lex_state = 3}, + [2344] = {.lex_state = 12, .external_lex_state = 5}, [2345] = {.lex_state = 12, .external_lex_state = 2}, - [2346] = {.lex_state = 12, .external_lex_state = 2}, - [2347] = {.lex_state = 7, .external_lex_state = 3}, - [2348] = {.lex_state = 8, .external_lex_state = 4}, - [2349] = {.lex_state = 7, .external_lex_state = 4}, + [2346] = {.lex_state = 7, .external_lex_state = 4}, + [2347] = {.lex_state = 12, .external_lex_state = 2}, + [2348] = {.lex_state = 7, .external_lex_state = 3}, + [2349] = {.lex_state = 8, .external_lex_state = 4}, [2350] = {.lex_state = 7, .external_lex_state = 4}, - [2351] = {.lex_state = 7, .external_lex_state = 3}, + [2351] = {.lex_state = 7, .external_lex_state = 4}, [2352] = {.lex_state = 7, .external_lex_state = 3}, [2353] = {.lex_state = 7, .external_lex_state = 3}, [2354] = {.lex_state = 7, .external_lex_state = 4}, @@ -15594,11 +15594,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2359] = {.lex_state = 7, .external_lex_state = 4}, [2360] = {.lex_state = 12, .external_lex_state = 5}, [2361] = {.lex_state = 7, .external_lex_state = 3}, - [2362] = {.lex_state = 7, .external_lex_state = 4}, - [2363] = {.lex_state = 7, .external_lex_state = 3}, + [2362] = {.lex_state = 7, .external_lex_state = 3}, + [2363] = {.lex_state = 12, .external_lex_state = 5}, [2364] = {.lex_state = 7, .external_lex_state = 3}, - [2365] = {.lex_state = 7, .external_lex_state = 3}, - [2366] = {.lex_state = 7, .external_lex_state = 3}, + [2365] = {.lex_state = 12, .external_lex_state = 5}, + [2366] = {.lex_state = 12, .external_lex_state = 5}, [2367] = {.lex_state = 7, .external_lex_state = 3}, [2368] = {.lex_state = 7, .external_lex_state = 3}, [2369] = {.lex_state = 7, .external_lex_state = 3}, @@ -15622,10 +15622,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2387] = {.lex_state = 7, .external_lex_state = 3}, [2388] = {.lex_state = 7, .external_lex_state = 3}, [2389] = {.lex_state = 7, .external_lex_state = 3}, - [2390] = {.lex_state = 7, .external_lex_state = 4}, + [2390] = {.lex_state = 7, .external_lex_state = 3}, [2391] = {.lex_state = 7, .external_lex_state = 3}, [2392] = {.lex_state = 7, .external_lex_state = 3}, - [2393] = {.lex_state = 7, .external_lex_state = 3}, + [2393] = {.lex_state = 7, .external_lex_state = 4}, [2394] = {.lex_state = 7, .external_lex_state = 3}, [2395] = {.lex_state = 7, .external_lex_state = 3}, [2396] = {.lex_state = 7, .external_lex_state = 3}, @@ -15649,79 +15649,79 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2414] = {.lex_state = 7, .external_lex_state = 3}, [2415] = {.lex_state = 7, .external_lex_state = 3}, [2416] = {.lex_state = 7, .external_lex_state = 3}, - [2417] = {.lex_state = 7, .external_lex_state = 4}, - [2418] = {.lex_state = 12, .external_lex_state = 5}, - [2419] = {.lex_state = 12, .external_lex_state = 2}, - [2420] = {.lex_state = 12, .external_lex_state = 5}, - [2421] = {.lex_state = 96, .external_lex_state = 2}, - [2422] = {.lex_state = 7, .external_lex_state = 3}, - [2423] = {.lex_state = 7, .external_lex_state = 3}, - [2424] = {.lex_state = 7, .external_lex_state = 4}, - [2425] = {.lex_state = 7, .external_lex_state = 4}, - [2426] = {.lex_state = 12, .external_lex_state = 5}, - [2427] = {.lex_state = 12, .external_lex_state = 5}, - [2428] = {.lex_state = 7, .external_lex_state = 3}, + [2417] = {.lex_state = 7, .external_lex_state = 3}, + [2418] = {.lex_state = 7, .external_lex_state = 3}, + [2419] = {.lex_state = 7, .external_lex_state = 3}, + [2420] = {.lex_state = 7, .external_lex_state = 4}, + [2421] = {.lex_state = 12, .external_lex_state = 2}, + [2422] = {.lex_state = 12, .external_lex_state = 5}, + [2423] = {.lex_state = 7, .external_lex_state = 4}, + [2424] = {.lex_state = 96, .external_lex_state = 2}, + [2425] = {.lex_state = 7, .external_lex_state = 3}, + [2426] = {.lex_state = 7, .external_lex_state = 3}, + [2427] = {.lex_state = 7, .external_lex_state = 4}, + [2428] = {.lex_state = 7, .external_lex_state = 4}, [2429] = {.lex_state = 12, .external_lex_state = 5}, [2430] = {.lex_state = 12, .external_lex_state = 2}, - [2431] = {.lex_state = 7, .external_lex_state = 4}, + [2431] = {.lex_state = 12, .external_lex_state = 5}, [2432] = {.lex_state = 8, .external_lex_state = 3}, [2433] = {.lex_state = 7, .external_lex_state = 4}, [2434] = {.lex_state = 7, .external_lex_state = 4}, [2435] = {.lex_state = 7, .external_lex_state = 3}, - [2436] = {.lex_state = 12, .external_lex_state = 2}, - [2437] = {.lex_state = 12, .external_lex_state = 5}, + [2436] = {.lex_state = 7, .external_lex_state = 3}, + [2437] = {.lex_state = 7, .external_lex_state = 3}, [2438] = {.lex_state = 7, .external_lex_state = 3}, [2439] = {.lex_state = 7, .external_lex_state = 3}, [2440] = {.lex_state = 7, .external_lex_state = 3}, [2441] = {.lex_state = 7, .external_lex_state = 3}, - [2442] = {.lex_state = 7, .external_lex_state = 4}, - [2443] = {.lex_state = 12, .external_lex_state = 5}, - [2444] = {.lex_state = 7, .external_lex_state = 3}, - [2445] = {.lex_state = 12, .external_lex_state = 2}, + [2442] = {.lex_state = 7, .external_lex_state = 3}, + [2443] = {.lex_state = 7, .external_lex_state = 3}, + [2444] = {.lex_state = 7, .external_lex_state = 4}, + [2445] = {.lex_state = 12, .external_lex_state = 5}, [2446] = {.lex_state = 12, .external_lex_state = 5}, - [2447] = {.lex_state = 12, .external_lex_state = 5}, - [2448] = {.lex_state = 12, .external_lex_state = 5}, - [2449] = {.lex_state = 7, .external_lex_state = 3}, - [2450] = {.lex_state = 7, .external_lex_state = 3}, + [2447] = {.lex_state = 12, .external_lex_state = 2}, + [2448] = {.lex_state = 7, .external_lex_state = 3}, + [2449] = {.lex_state = 12, .external_lex_state = 5}, + [2450] = {.lex_state = 12, .external_lex_state = 5}, [2451] = {.lex_state = 7, .external_lex_state = 3}, [2452] = {.lex_state = 7, .external_lex_state = 3}, [2453] = {.lex_state = 7, .external_lex_state = 3}, [2454] = {.lex_state = 7, .external_lex_state = 3}, - [2455] = {.lex_state = 12, .external_lex_state = 5}, - [2456] = {.lex_state = 12, .external_lex_state = 2}, - [2457] = {.lex_state = 7, .external_lex_state = 4}, - [2458] = {.lex_state = 7, .external_lex_state = 3}, - [2459] = {.lex_state = 7, .external_lex_state = 3}, - [2460] = {.lex_state = 7, .external_lex_state = 3}, - [2461] = {.lex_state = 7, .external_lex_state = 3}, - [2462] = {.lex_state = 12, .external_lex_state = 5}, + [2455] = {.lex_state = 7, .external_lex_state = 3}, + [2456] = {.lex_state = 12, .external_lex_state = 5}, + [2457] = {.lex_state = 12, .external_lex_state = 5}, + [2458] = {.lex_state = 12, .external_lex_state = 2}, + [2459] = {.lex_state = 7, .external_lex_state = 4}, + [2460] = {.lex_state = 12, .external_lex_state = 5}, + [2461] = {.lex_state = 12, .external_lex_state = 5}, + [2462] = {.lex_state = 7, .external_lex_state = 3}, [2463] = {.lex_state = 7, .external_lex_state = 3}, [2464] = {.lex_state = 7, .external_lex_state = 3}, [2465] = {.lex_state = 7, .external_lex_state = 3}, - [2466] = {.lex_state = 7, .external_lex_state = 3}, - [2467] = {.lex_state = 12, .external_lex_state = 5}, - [2468] = {.lex_state = 7, .external_lex_state = 4}, - [2469] = {.lex_state = 96, .external_lex_state = 2}, - [2470] = {.lex_state = 7, .external_lex_state = 4}, + [2466] = {.lex_state = 7, .external_lex_state = 4}, + [2467] = {.lex_state = 7, .external_lex_state = 3}, + [2468] = {.lex_state = 12, .external_lex_state = 2}, + [2469] = {.lex_state = 7, .external_lex_state = 3}, + [2470] = {.lex_state = 7, .external_lex_state = 3}, [2471] = {.lex_state = 12, .external_lex_state = 2}, - [2472] = {.lex_state = 7, .external_lex_state = 3}, - [2473] = {.lex_state = 12, .external_lex_state = 5}, + [2472] = {.lex_state = 12, .external_lex_state = 5}, + [2473] = {.lex_state = 96, .external_lex_state = 2}, [2474] = {.lex_state = 12, .external_lex_state = 5}, [2475] = {.lex_state = 7, .external_lex_state = 3}, [2476] = {.lex_state = 12, .external_lex_state = 5}, - [2477] = {.lex_state = 12, .external_lex_state = 2}, + [2477] = {.lex_state = 7, .external_lex_state = 3}, [2478] = {.lex_state = 12, .external_lex_state = 5}, [2479] = {.lex_state = 12, .external_lex_state = 5}, - [2480] = {.lex_state = 7, .external_lex_state = 3}, - [2481] = {.lex_state = 12, .external_lex_state = 5}, - [2482] = {.lex_state = 7, .external_lex_state = 3}, - [2483] = {.lex_state = 12, .external_lex_state = 2}, - [2484] = {.lex_state = 12, .external_lex_state = 5}, - [2485] = {.lex_state = 12, .external_lex_state = 5}, - [2486] = {.lex_state = 7, .external_lex_state = 3}, - [2487] = {.lex_state = 7, .external_lex_state = 3}, - [2488] = {.lex_state = 12, .external_lex_state = 5}, - [2489] = {.lex_state = 7, .external_lex_state = 3}, + [2480] = {.lex_state = 12, .external_lex_state = 5}, + [2481] = {.lex_state = 12, .external_lex_state = 2}, + [2482] = {.lex_state = 12, .external_lex_state = 5}, + [2483] = {.lex_state = 12, .external_lex_state = 5}, + [2484] = {.lex_state = 7, .external_lex_state = 3}, + [2485] = {.lex_state = 7, .external_lex_state = 3}, + [2486] = {.lex_state = 12, .external_lex_state = 2}, + [2487] = {.lex_state = 7, .external_lex_state = 4}, + [2488] = {.lex_state = 7, .external_lex_state = 3}, + [2489] = {.lex_state = 12, .external_lex_state = 5}, [2490] = {.lex_state = 7, .external_lex_state = 3}, [2491] = {.lex_state = 7, .external_lex_state = 3}, [2492] = {.lex_state = 7, .external_lex_state = 3}, @@ -15748,13 +15748,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2513] = {.lex_state = 7, .external_lex_state = 3}, [2514] = {.lex_state = 7, .external_lex_state = 3}, [2515] = {.lex_state = 7, .external_lex_state = 3}, - [2516] = {.lex_state = 7, .external_lex_state = 4}, - [2517] = {.lex_state = 7, .external_lex_state = 3}, + [2516] = {.lex_state = 7, .external_lex_state = 3}, + [2517] = {.lex_state = 7, .external_lex_state = 4}, [2518] = {.lex_state = 7, .external_lex_state = 3}, [2519] = {.lex_state = 7, .external_lex_state = 3}, [2520] = {.lex_state = 7, .external_lex_state = 3}, [2521] = {.lex_state = 7, .external_lex_state = 3}, - [2522] = {.lex_state = 12, .external_lex_state = 5}, + [2522] = {.lex_state = 7, .external_lex_state = 3}, [2523] = {.lex_state = 12, .external_lex_state = 5}, [2524] = {.lex_state = 7, .external_lex_state = 3}, [2525] = {.lex_state = 7, .external_lex_state = 3}, @@ -15763,16 +15763,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2528] = {.lex_state = 7, .external_lex_state = 3}, [2529] = {.lex_state = 7, .external_lex_state = 3}, [2530] = {.lex_state = 96, .external_lex_state = 5}, - [2531] = {.lex_state = 96, .external_lex_state = 5}, + [2531] = {.lex_state = 7, .external_lex_state = 3}, [2532] = {.lex_state = 96, .external_lex_state = 5}, - [2533] = {.lex_state = 12, .external_lex_state = 5}, + [2533] = {.lex_state = 96, .external_lex_state = 5}, [2534] = {.lex_state = 7, .external_lex_state = 3}, - [2535] = {.lex_state = 12, .external_lex_state = 5}, - [2536] = {.lex_state = 12, .external_lex_state = 2}, - [2537] = {.lex_state = 12, .external_lex_state = 2}, - [2538] = {.lex_state = 7, .external_lex_state = 3}, + [2535] = {.lex_state = 7, .external_lex_state = 3}, + [2536] = {.lex_state = 7, .external_lex_state = 3}, + [2537] = {.lex_state = 7, .external_lex_state = 3}, + [2538] = {.lex_state = 12, .external_lex_state = 2}, [2539] = {.lex_state = 7, .external_lex_state = 3}, - [2540] = {.lex_state = 7, .external_lex_state = 3}, + [2540] = {.lex_state = 12, .external_lex_state = 2}, [2541] = {.lex_state = 7, .external_lex_state = 3}, [2542] = {.lex_state = 7, .external_lex_state = 3}, [2543] = {.lex_state = 7, .external_lex_state = 3}, @@ -15780,32 +15780,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2545] = {.lex_state = 7, .external_lex_state = 3}, [2546] = {.lex_state = 7, .external_lex_state = 3}, [2547] = {.lex_state = 7, .external_lex_state = 3}, - [2548] = {.lex_state = 96, .external_lex_state = 5}, - [2549] = {.lex_state = 96, .external_lex_state = 5}, + [2548] = {.lex_state = 7, .external_lex_state = 3}, + [2549] = {.lex_state = 7, .external_lex_state = 3}, [2550] = {.lex_state = 7, .external_lex_state = 3}, - [2551] = {.lex_state = 96, .external_lex_state = 5}, - [2552] = {.lex_state = 96, .external_lex_state = 5}, - [2553] = {.lex_state = 7, .external_lex_state = 3}, - [2554] = {.lex_state = 7, .external_lex_state = 3}, + [2551] = {.lex_state = 7, .external_lex_state = 3}, + [2552] = {.lex_state = 7, .external_lex_state = 3}, + [2553] = {.lex_state = 96, .external_lex_state = 5}, + [2554] = {.lex_state = 96, .external_lex_state = 5}, [2555] = {.lex_state = 7, .external_lex_state = 3}, - [2556] = {.lex_state = 7, .external_lex_state = 3}, - [2557] = {.lex_state = 7, .external_lex_state = 3}, + [2556] = {.lex_state = 96, .external_lex_state = 5}, + [2557] = {.lex_state = 96, .external_lex_state = 5}, [2558] = {.lex_state = 7, .external_lex_state = 3}, - [2559] = {.lex_state = 12, .external_lex_state = 2}, + [2559] = {.lex_state = 7, .external_lex_state = 3}, [2560] = {.lex_state = 7, .external_lex_state = 3}, [2561] = {.lex_state = 7, .external_lex_state = 3}, - [2562] = {.lex_state = 12, .external_lex_state = 2}, + [2562] = {.lex_state = 7, .external_lex_state = 3}, [2563] = {.lex_state = 7, .external_lex_state = 3}, [2564] = {.lex_state = 7, .external_lex_state = 3}, - [2565] = {.lex_state = 7, .external_lex_state = 3}, + [2565] = {.lex_state = 12, .external_lex_state = 2}, [2566] = {.lex_state = 7, .external_lex_state = 3}, [2567] = {.lex_state = 7, .external_lex_state = 3}, - [2568] = {.lex_state = 7, .external_lex_state = 3}, + [2568] = {.lex_state = 12, .external_lex_state = 2}, [2569] = {.lex_state = 7, .external_lex_state = 3}, [2570] = {.lex_state = 7, .external_lex_state = 3}, [2571] = {.lex_state = 7, .external_lex_state = 3}, [2572] = {.lex_state = 7, .external_lex_state = 3}, - [2573] = {.lex_state = 96, .external_lex_state = 5}, + [2573] = {.lex_state = 7, .external_lex_state = 3}, [2574] = {.lex_state = 7, .external_lex_state = 3}, [2575] = {.lex_state = 7, .external_lex_state = 3}, [2576] = {.lex_state = 7, .external_lex_state = 3}, @@ -15813,69 +15813,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2578] = {.lex_state = 7, .external_lex_state = 3}, [2579] = {.lex_state = 7, .external_lex_state = 3}, [2580] = {.lex_state = 7, .external_lex_state = 3}, - [2581] = {.lex_state = 7, .external_lex_state = 3}, - [2582] = {.lex_state = 7, .external_lex_state = 4}, + [2581] = {.lex_state = 96, .external_lex_state = 2}, + [2582] = {.lex_state = 7, .external_lex_state = 3}, [2583] = {.lex_state = 7, .external_lex_state = 3}, [2584] = {.lex_state = 7, .external_lex_state = 3}, [2585] = {.lex_state = 7, .external_lex_state = 3}, [2586] = {.lex_state = 7, .external_lex_state = 3}, - [2587] = {.lex_state = 7, .external_lex_state = 3}, - [2588] = {.lex_state = 7, .external_lex_state = 3}, + [2587] = {.lex_state = 12, .external_lex_state = 2}, + [2588] = {.lex_state = 7, .external_lex_state = 4}, [2589] = {.lex_state = 7, .external_lex_state = 3}, - [2590] = {.lex_state = 96, .external_lex_state = 5}, + [2590] = {.lex_state = 7, .external_lex_state = 3}, [2591] = {.lex_state = 7, .external_lex_state = 3}, - [2592] = {.lex_state = 96, .external_lex_state = 2}, - [2593] = {.lex_state = 7, .external_lex_state = 3}, + [2592] = {.lex_state = 7, .external_lex_state = 3}, + [2593] = {.lex_state = 96, .external_lex_state = 5}, [2594] = {.lex_state = 7, .external_lex_state = 3}, [2595] = {.lex_state = 7, .external_lex_state = 3}, - [2596] = {.lex_state = 7, .external_lex_state = 3}, + [2596] = {.lex_state = 96, .external_lex_state = 5}, [2597] = {.lex_state = 7, .external_lex_state = 3}, [2598] = {.lex_state = 7, .external_lex_state = 3}, - [2599] = {.lex_state = 7, .external_lex_state = 3}, + [2599] = {.lex_state = 96, .external_lex_state = 2}, [2600] = {.lex_state = 7, .external_lex_state = 3}, - [2601] = {.lex_state = 12, .external_lex_state = 2}, - [2602] = {.lex_state = 96, .external_lex_state = 2}, + [2601] = {.lex_state = 96, .external_lex_state = 2}, + [2602] = {.lex_state = 7, .external_lex_state = 3}, [2603] = {.lex_state = 7, .external_lex_state = 3}, - [2604] = {.lex_state = 96, .external_lex_state = 2}, + [2604] = {.lex_state = 7, .external_lex_state = 3}, [2605] = {.lex_state = 7, .external_lex_state = 3}, [2606] = {.lex_state = 7, .external_lex_state = 3}, - [2607] = {.lex_state = 7, .external_lex_state = 3}, + [2607] = {.lex_state = 12, .external_lex_state = 5}, [2608] = {.lex_state = 7, .external_lex_state = 3}, [2609] = {.lex_state = 7, .external_lex_state = 3}, - [2610] = {.lex_state = 7, .external_lex_state = 3}, + [2610] = {.lex_state = 12, .external_lex_state = 5}, [2611] = {.lex_state = 96, .external_lex_state = 5}, [2612] = {.lex_state = 7, .external_lex_state = 3}, - [2613] = {.lex_state = 96, .external_lex_state = 5}, - [2614] = {.lex_state = 96, .external_lex_state = 5}, - [2615] = {.lex_state = 7, .external_lex_state = 3}, + [2613] = {.lex_state = 7, .external_lex_state = 3}, + [2614] = {.lex_state = 12, .external_lex_state = 2}, + [2615] = {.lex_state = 12, .external_lex_state = 2}, [2616] = {.lex_state = 12, .external_lex_state = 2}, [2617] = {.lex_state = 96, .external_lex_state = 5}, - [2618] = {.lex_state = 12, .external_lex_state = 2}, - [2619] = {.lex_state = 12, .external_lex_state = 2}, + [2618] = {.lex_state = 96, .external_lex_state = 5}, + [2619] = {.lex_state = 96, .external_lex_state = 5}, [2620] = {.lex_state = 12, .external_lex_state = 2}, - [2621] = {.lex_state = 12, .external_lex_state = 2}, + [2621] = {.lex_state = 96, .external_lex_state = 5}, [2622] = {.lex_state = 12, .external_lex_state = 2}, - [2623] = {.lex_state = 96, .external_lex_state = 5}, - [2624] = {.lex_state = 96, .external_lex_state = 5}, - [2625] = {.lex_state = 7, .external_lex_state = 3}, + [2623] = {.lex_state = 12, .external_lex_state = 2}, + [2624] = {.lex_state = 12, .external_lex_state = 2}, + [2625] = {.lex_state = 12, .external_lex_state = 2}, [2626] = {.lex_state = 12, .external_lex_state = 2}, - [2627] = {.lex_state = 96, .external_lex_state = 5}, - [2628] = {.lex_state = 12, .external_lex_state = 2}, - [2629] = {.lex_state = 96, .external_lex_state = 5}, - [2630] = {.lex_state = 12, .external_lex_state = 2}, - [2631] = {.lex_state = 8, .external_lex_state = 3}, - [2632] = {.lex_state = 96, .external_lex_state = 5}, - [2633] = {.lex_state = 96, .external_lex_state = 5}, - [2634] = {.lex_state = 12, .external_lex_state = 2}, - [2635] = {.lex_state = 12, .external_lex_state = 2}, - [2636] = {.lex_state = 96, .external_lex_state = 5}, - [2637] = {.lex_state = 96, .external_lex_state = 5}, + [2627] = {.lex_state = 12, .external_lex_state = 2}, + [2628] = {.lex_state = 96, .external_lex_state = 5}, + [2629] = {.lex_state = 12, .external_lex_state = 2}, + [2630] = {.lex_state = 8, .external_lex_state = 3}, + [2631] = {.lex_state = 96, .external_lex_state = 5}, + [2632] = {.lex_state = 12, .external_lex_state = 2}, + [2633] = {.lex_state = 12, .external_lex_state = 2}, + [2634] = {.lex_state = 96, .external_lex_state = 5}, + [2635] = {.lex_state = 96, .external_lex_state = 5}, + [2636] = {.lex_state = 12, .external_lex_state = 2}, + [2637] = {.lex_state = 12, .external_lex_state = 2}, [2638] = {.lex_state = 7, .external_lex_state = 3}, [2639] = {.lex_state = 96, .external_lex_state = 5}, - [2640] = {.lex_state = 12, .external_lex_state = 2}, - [2641] = {.lex_state = 12, .external_lex_state = 2}, - [2642] = {.lex_state = 12, .external_lex_state = 2}, - [2643] = {.lex_state = 96, .external_lex_state = 5}, + [2640] = {.lex_state = 96, .external_lex_state = 5}, + [2641] = {.lex_state = 96, .external_lex_state = 5}, + [2642] = {.lex_state = 96, .external_lex_state = 5}, + [2643] = {.lex_state = 7, .external_lex_state = 3}, [2644] = {.lex_state = 96, .external_lex_state = 5}, [2645] = {.lex_state = 96, .external_lex_state = 5}, [2646] = {.lex_state = 7, .external_lex_state = 3}, @@ -15883,24 +15883,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2648] = {.lex_state = 7, .external_lex_state = 3}, [2649] = {.lex_state = 7, .external_lex_state = 3}, [2650] = {.lex_state = 12, .external_lex_state = 2}, - [2651] = {.lex_state = 12, .external_lex_state = 2}, + [2651] = {.lex_state = 96, .external_lex_state = 5}, [2652] = {.lex_state = 12, .external_lex_state = 5}, - [2653] = {.lex_state = 12, .external_lex_state = 5}, - [2654] = {.lex_state = 7, .external_lex_state = 3}, + [2653] = {.lex_state = 7, .external_lex_state = 3}, + [2654] = {.lex_state = 12, .external_lex_state = 5}, [2655] = {.lex_state = 12, .external_lex_state = 5}, [2656] = {.lex_state = 12, .external_lex_state = 5}, [2657] = {.lex_state = 12, .external_lex_state = 5}, [2658] = {.lex_state = 12, .external_lex_state = 5}, [2659] = {.lex_state = 12, .external_lex_state = 5}, [2660] = {.lex_state = 7, .external_lex_state = 3}, - [2661] = {.lex_state = 12, .external_lex_state = 5}, - [2662] = {.lex_state = 12, .external_lex_state = 5}, - [2663] = {.lex_state = 12, .external_lex_state = 2}, - [2664] = {.lex_state = 12, .external_lex_state = 5}, - [2665] = {.lex_state = 7, .external_lex_state = 3}, + [2661] = {.lex_state = 7, .external_lex_state = 3}, + [2662] = {.lex_state = 7, .external_lex_state = 3}, + [2663] = {.lex_state = 12, .external_lex_state = 5}, + [2664] = {.lex_state = 7, .external_lex_state = 3}, + [2665] = {.lex_state = 12, .external_lex_state = 5}, [2666] = {.lex_state = 7, .external_lex_state = 3}, - [2667] = {.lex_state = 7, .external_lex_state = 3}, - [2668] = {.lex_state = 12, .external_lex_state = 5}, + [2667] = {.lex_state = 12, .external_lex_state = 5}, + [2668] = {.lex_state = 12, .external_lex_state = 2}, [2669] = {.lex_state = 12, .external_lex_state = 5}, [2670] = {.lex_state = 12, .external_lex_state = 5}, [2671] = {.lex_state = 12, .external_lex_state = 5}, @@ -15911,18 +15911,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2676] = {.lex_state = 12, .external_lex_state = 5}, [2677] = {.lex_state = 12, .external_lex_state = 5}, [2678] = {.lex_state = 12, .external_lex_state = 5}, - [2679] = {.lex_state = 7, .external_lex_state = 3}, + [2679] = {.lex_state = 12, .external_lex_state = 5}, [2680] = {.lex_state = 12, .external_lex_state = 5}, [2681] = {.lex_state = 12, .external_lex_state = 5}, [2682] = {.lex_state = 12, .external_lex_state = 5}, [2683] = {.lex_state = 12, .external_lex_state = 5}, [2684] = {.lex_state = 12, .external_lex_state = 5}, [2685] = {.lex_state = 12, .external_lex_state = 5}, - [2686] = {.lex_state = 7, .external_lex_state = 3}, + [2686] = {.lex_state = 12, .external_lex_state = 2}, [2687] = {.lex_state = 12, .external_lex_state = 5}, [2688] = {.lex_state = 12, .external_lex_state = 5}, - [2689] = {.lex_state = 12, .external_lex_state = 5}, - [2690] = {.lex_state = 12, .external_lex_state = 2}, + [2689] = {.lex_state = 12, .external_lex_state = 2}, + [2690] = {.lex_state = 12, .external_lex_state = 5}, [2691] = {.lex_state = 12, .external_lex_state = 5}, [2692] = {.lex_state = 12, .external_lex_state = 5}, [2693] = {.lex_state = 12, .external_lex_state = 5}, @@ -15932,24 +15932,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2697] = {.lex_state = 12, .external_lex_state = 5}, [2698] = {.lex_state = 12, .external_lex_state = 5}, [2699] = {.lex_state = 12, .external_lex_state = 5}, - [2700] = {.lex_state = 7, .external_lex_state = 3}, + [2700] = {.lex_state = 12, .external_lex_state = 5}, [2701] = {.lex_state = 12, .external_lex_state = 5}, [2702] = {.lex_state = 12, .external_lex_state = 5}, [2703] = {.lex_state = 12, .external_lex_state = 5}, [2704] = {.lex_state = 12, .external_lex_state = 5}, - [2705] = {.lex_state = 12, .external_lex_state = 5}, + [2705] = {.lex_state = 7, .external_lex_state = 3}, [2706] = {.lex_state = 7, .external_lex_state = 3}, - [2707] = {.lex_state = 12, .external_lex_state = 5}, - [2708] = {.lex_state = 12, .external_lex_state = 2}, + [2707] = {.lex_state = 7, .external_lex_state = 3}, + [2708] = {.lex_state = 12, .external_lex_state = 5}, [2709] = {.lex_state = 12, .external_lex_state = 5}, - [2710] = {.lex_state = 12, .external_lex_state = 5}, + [2710] = {.lex_state = 7, .external_lex_state = 3}, [2711] = {.lex_state = 12, .external_lex_state = 5}, [2712] = {.lex_state = 12, .external_lex_state = 5}, - [2713] = {.lex_state = 7, .external_lex_state = 3}, - [2714] = {.lex_state = 7, .external_lex_state = 3}, + [2713] = {.lex_state = 12, .external_lex_state = 5}, + [2714] = {.lex_state = 12, .external_lex_state = 5}, [2715] = {.lex_state = 12, .external_lex_state = 5}, [2716] = {.lex_state = 12, .external_lex_state = 5}, - [2717] = {.lex_state = 12, .external_lex_state = 5}, + [2717] = {.lex_state = 7, .external_lex_state = 3}, [2718] = {.lex_state = 12, .external_lex_state = 2}, [2719] = {.lex_state = 12, .external_lex_state = 2}, [2720] = {.lex_state = 7, .external_lex_state = 3}, @@ -15965,7 +15965,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2730] = {.lex_state = 12, .external_lex_state = 2}, [2731] = {.lex_state = 12, .external_lex_state = 2}, [2732] = {.lex_state = 96, .external_lex_state = 2}, - [2733] = {.lex_state = 12, .external_lex_state = 2}, + [2733] = {.lex_state = 96, .external_lex_state = 2}, [2734] = {.lex_state = 12, .external_lex_state = 2}, [2735] = {.lex_state = 12, .external_lex_state = 2}, [2736] = {.lex_state = 12, .external_lex_state = 2}, @@ -15974,7 +15974,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2739] = {.lex_state = 12, .external_lex_state = 2}, [2740] = {.lex_state = 12, .external_lex_state = 2}, [2741] = {.lex_state = 12, .external_lex_state = 2}, - [2742] = {.lex_state = 96, .external_lex_state = 2}, + [2742] = {.lex_state = 12, .external_lex_state = 2}, [2743] = {.lex_state = 12, .external_lex_state = 2}, [2744] = {.lex_state = 12, .external_lex_state = 2}, [2745] = {.lex_state = 12, .external_lex_state = 2}, @@ -15993,8 +15993,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2758] = {.lex_state = 12, .external_lex_state = 2}, [2759] = {.lex_state = 12, .external_lex_state = 2}, [2760] = {.lex_state = 12, .external_lex_state = 2}, - [2761] = {.lex_state = 96, .external_lex_state = 2}, - [2762] = {.lex_state = 12, .external_lex_state = 2}, + [2761] = {.lex_state = 12, .external_lex_state = 2}, + [2762] = {.lex_state = 96, .external_lex_state = 2}, [2763] = {.lex_state = 12, .external_lex_state = 2}, [2764] = {.lex_state = 12, .external_lex_state = 2}, [2765] = {.lex_state = 12, .external_lex_state = 2}, @@ -16035,7 +16035,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2800] = {.lex_state = 96, .external_lex_state = 2}, [2801] = {.lex_state = 96, .external_lex_state = 2}, [2802] = {.lex_state = 96, .external_lex_state = 2}, - [2803] = {.lex_state = 12, .external_lex_state = 2}, + [2803] = {.lex_state = 96, .external_lex_state = 2}, [2804] = {.lex_state = 96, .external_lex_state = 2}, [2805] = {.lex_state = 96, .external_lex_state = 2}, [2806] = {.lex_state = 96, .external_lex_state = 2}, @@ -16045,7 +16045,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2810] = {.lex_state = 96, .external_lex_state = 2}, [2811] = {.lex_state = 96, .external_lex_state = 2}, [2812] = {.lex_state = 96, .external_lex_state = 2}, - [2813] = {.lex_state = 96, .external_lex_state = 2}, + [2813] = {.lex_state = 12, .external_lex_state = 2}, [2814] = {.lex_state = 96, .external_lex_state = 2}, [2815] = {.lex_state = 96, .external_lex_state = 2}, [2816] = {.lex_state = 96, .external_lex_state = 2}, @@ -16151,35 +16151,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2916] = {.lex_state = 15, .external_lex_state = 2}, [2917] = {.lex_state = 13, .external_lex_state = 5}, [2918] = {.lex_state = 13, .external_lex_state = 5}, - [2919] = {.lex_state = 14, .external_lex_state = 2}, + [2919] = {.lex_state = 96, .external_lex_state = 2}, [2920] = {.lex_state = 13, .external_lex_state = 2}, [2921] = {.lex_state = 96, .external_lex_state = 2}, [2922] = {.lex_state = 14, .external_lex_state = 2}, [2923] = {.lex_state = 96, .external_lex_state = 2}, - [2924] = {.lex_state = 14, .external_lex_state = 2}, - [2925] = {.lex_state = 96, .external_lex_state = 2}, - [2926] = {.lex_state = 15, .external_lex_state = 5}, + [2924] = {.lex_state = 13, .external_lex_state = 2}, + [2925] = {.lex_state = 14, .external_lex_state = 2}, + [2926] = {.lex_state = 13, .external_lex_state = 2}, [2927] = {.lex_state = 14, .external_lex_state = 2}, - [2928] = {.lex_state = 15, .external_lex_state = 2}, + [2928] = {.lex_state = 13, .external_lex_state = 2}, [2929] = {.lex_state = 96, .external_lex_state = 2}, - [2930] = {.lex_state = 13, .external_lex_state = 2}, - [2931] = {.lex_state = 15, .external_lex_state = 5}, - [2932] = {.lex_state = 13, .external_lex_state = 2}, + [2930] = {.lex_state = 96, .external_lex_state = 2}, + [2931] = {.lex_state = 15, .external_lex_state = 2}, + [2932] = {.lex_state = 14, .external_lex_state = 2}, [2933] = {.lex_state = 96, .external_lex_state = 2}, - [2934] = {.lex_state = 13, .external_lex_state = 2}, - [2935] = {.lex_state = 14, .external_lex_state = 2}, - [2936] = {.lex_state = 96, .external_lex_state = 2}, + [2934] = {.lex_state = 15, .external_lex_state = 5}, + [2935] = {.lex_state = 15, .external_lex_state = 5}, + [2936] = {.lex_state = 14, .external_lex_state = 2}, [2937] = {.lex_state = 15, .external_lex_state = 5}, [2938] = {.lex_state = 96, .external_lex_state = 2}, [2939] = {.lex_state = 96, .external_lex_state = 2}, [2940] = {.lex_state = 96, .external_lex_state = 2}, - [2941] = {.lex_state = 13, .external_lex_state = 2}, + [2941] = {.lex_state = 96, .external_lex_state = 2}, [2942] = {.lex_state = 96, .external_lex_state = 2}, [2943] = {.lex_state = 96, .external_lex_state = 2}, - [2944] = {.lex_state = 96, .external_lex_state = 2}, + [2944] = {.lex_state = 13, .external_lex_state = 2}, [2945] = {.lex_state = 96, .external_lex_state = 2}, - [2946] = {.lex_state = 15, .external_lex_state = 5}, - [2947] = {.lex_state = 15, .external_lex_state = 5}, + [2946] = {.lex_state = 96, .external_lex_state = 2}, + [2947] = {.lex_state = 96, .external_lex_state = 2}, [2948] = {.lex_state = 96, .external_lex_state = 2}, [2949] = {.lex_state = 96, .external_lex_state = 2}, [2950] = {.lex_state = 96, .external_lex_state = 2}, @@ -16187,566 +16187,566 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2952] = {.lex_state = 96, .external_lex_state = 2}, [2953] = {.lex_state = 96, .external_lex_state = 2}, [2954] = {.lex_state = 96, .external_lex_state = 2}, - [2955] = {.lex_state = 15, .external_lex_state = 6}, - [2956] = {.lex_state = 15, .external_lex_state = 6}, - [2957] = {.lex_state = 15, .external_lex_state = 6}, - [2958] = {.lex_state = 4, .external_lex_state = 2}, + [2955] = {.lex_state = 96, .external_lex_state = 2}, + [2956] = {.lex_state = 15, .external_lex_state = 5}, + [2957] = {.lex_state = 15, .external_lex_state = 5}, + [2958] = {.lex_state = 15, .external_lex_state = 5}, [2959] = {.lex_state = 96, .external_lex_state = 2}, - [2960] = {.lex_state = 96, .external_lex_state = 2}, + [2960] = {.lex_state = 15, .external_lex_state = 5}, [2961] = {.lex_state = 96, .external_lex_state = 2}, - [2962] = {.lex_state = 96, .external_lex_state = 2}, - [2963] = {.lex_state = 15, .external_lex_state = 5}, - [2964] = {.lex_state = 96, .external_lex_state = 2}, + [2962] = {.lex_state = 15, .external_lex_state = 5}, + [2963] = {.lex_state = 96, .external_lex_state = 2}, + [2964] = {.lex_state = 15, .external_lex_state = 5}, [2965] = {.lex_state = 15, .external_lex_state = 5}, - [2966] = {.lex_state = 96, .external_lex_state = 2}, + [2966] = {.lex_state = 15, .external_lex_state = 5}, [2967] = {.lex_state = 15, .external_lex_state = 5}, [2968] = {.lex_state = 15, .external_lex_state = 5}, - [2969] = {.lex_state = 4, .external_lex_state = 2}, + [2969] = {.lex_state = 15, .external_lex_state = 5}, [2970] = {.lex_state = 15, .external_lex_state = 5}, - [2971] = {.lex_state = 15, .external_lex_state = 5}, + [2971] = {.lex_state = 96, .external_lex_state = 2}, [2972] = {.lex_state = 15, .external_lex_state = 5}, [2973] = {.lex_state = 15, .external_lex_state = 5}, [2974] = {.lex_state = 96, .external_lex_state = 2}, - [2975] = {.lex_state = 15, .external_lex_state = 5}, - [2976] = {.lex_state = 15, .external_lex_state = 5}, + [2975] = {.lex_state = 96, .external_lex_state = 2}, + [2976] = {.lex_state = 96, .external_lex_state = 2}, [2977] = {.lex_state = 96, .external_lex_state = 2}, - [2978] = {.lex_state = 96, .external_lex_state = 2}, - [2979] = {.lex_state = 96, .external_lex_state = 2}, - [2980] = {.lex_state = 96, .external_lex_state = 2}, - [2981] = {.lex_state = 15, .external_lex_state = 5}, - [2982] = {.lex_state = 15, .external_lex_state = 5}, - [2983] = {.lex_state = 15, .external_lex_state = 5}, - [2984] = {.lex_state = 4, .external_lex_state = 2}, + [2978] = {.lex_state = 13, .external_lex_state = 5}, + [2979] = {.lex_state = 15, .external_lex_state = 6}, + [2980] = {.lex_state = 15, .external_lex_state = 6}, + [2981] = {.lex_state = 15, .external_lex_state = 6}, + [2982] = {.lex_state = 4, .external_lex_state = 2}, + [2983] = {.lex_state = 96, .external_lex_state = 2}, + [2984] = {.lex_state = 96, .external_lex_state = 2}, [2985] = {.lex_state = 96, .external_lex_state = 2}, - [2986] = {.lex_state = 15, .external_lex_state = 5}, + [2986] = {.lex_state = 96, .external_lex_state = 2}, [2987] = {.lex_state = 96, .external_lex_state = 2}, - [2988] = {.lex_state = 96, .external_lex_state = 2}, - [2989] = {.lex_state = 96, .external_lex_state = 2}, - [2990] = {.lex_state = 96, .external_lex_state = 2}, - [2991] = {.lex_state = 96, .external_lex_state = 2}, - [2992] = {.lex_state = 96, .external_lex_state = 2}, - [2993] = {.lex_state = 96, .external_lex_state = 2}, - [2994] = {.lex_state = 96, .external_lex_state = 2}, - [2995] = {.lex_state = 96, .external_lex_state = 2}, - [2996] = {.lex_state = 96, .external_lex_state = 2}, + [2988] = {.lex_state = 15, .external_lex_state = 5}, + [2989] = {.lex_state = 15, .external_lex_state = 5}, + [2990] = {.lex_state = 15, .external_lex_state = 5}, + [2991] = {.lex_state = 15, .external_lex_state = 5}, + [2992] = {.lex_state = 15, .external_lex_state = 5}, + [2993] = {.lex_state = 4, .external_lex_state = 2}, + [2994] = {.lex_state = 15, .external_lex_state = 5}, + [2995] = {.lex_state = 15, .external_lex_state = 5}, + [2996] = {.lex_state = 15, .external_lex_state = 5}, [2997] = {.lex_state = 96, .external_lex_state = 2}, [2998] = {.lex_state = 96, .external_lex_state = 2}, [2999] = {.lex_state = 96, .external_lex_state = 2}, [3000] = {.lex_state = 96, .external_lex_state = 2}, - [3001] = {.lex_state = 4, .external_lex_state = 2}, + [3001] = {.lex_state = 96, .external_lex_state = 2}, [3002] = {.lex_state = 96, .external_lex_state = 2}, - [3003] = {.lex_state = 96, .external_lex_state = 2}, - [3004] = {.lex_state = 96, .external_lex_state = 2}, + [3003] = {.lex_state = 15, .external_lex_state = 5}, + [3004] = {.lex_state = 4, .external_lex_state = 2}, [3005] = {.lex_state = 96, .external_lex_state = 2}, - [3006] = {.lex_state = 4, .external_lex_state = 2}, - [3007] = {.lex_state = 15, .external_lex_state = 5}, - [3008] = {.lex_state = 15, .external_lex_state = 5}, - [3009] = {.lex_state = 15, .external_lex_state = 5}, - [3010] = {.lex_state = 4, .external_lex_state = 2}, + [3006] = {.lex_state = 96, .external_lex_state = 2}, + [3007] = {.lex_state = 96, .external_lex_state = 2}, + [3008] = {.lex_state = 96, .external_lex_state = 2}, + [3009] = {.lex_state = 96, .external_lex_state = 2}, + [3010] = {.lex_state = 15, .external_lex_state = 5}, [3011] = {.lex_state = 15, .external_lex_state = 5}, - [3012] = {.lex_state = 4, .external_lex_state = 2}, - [3013] = {.lex_state = 96, .external_lex_state = 2}, - [3014] = {.lex_state = 96, .external_lex_state = 2}, - [3015] = {.lex_state = 96, .external_lex_state = 2}, - [3016] = {.lex_state = 96, .external_lex_state = 2}, + [3012] = {.lex_state = 96, .external_lex_state = 2}, + [3013] = {.lex_state = 15, .external_lex_state = 5}, + [3014] = {.lex_state = 15, .external_lex_state = 5}, + [3015] = {.lex_state = 15, .external_lex_state = 5}, + [3016] = {.lex_state = 15, .external_lex_state = 5}, [3017] = {.lex_state = 96, .external_lex_state = 2}, - [3018] = {.lex_state = 96, .external_lex_state = 2}, + [3018] = {.lex_state = 15, .external_lex_state = 5}, [3019] = {.lex_state = 15, .external_lex_state = 5}, - [3020] = {.lex_state = 96, .external_lex_state = 2}, + [3020] = {.lex_state = 15, .external_lex_state = 5}, [3021] = {.lex_state = 15, .external_lex_state = 5}, - [3022] = {.lex_state = 15, .external_lex_state = 5}, - [3023] = {.lex_state = 15, .external_lex_state = 5}, - [3024] = {.lex_state = 15, .external_lex_state = 5}, + [3022] = {.lex_state = 96, .external_lex_state = 2}, + [3023] = {.lex_state = 4, .external_lex_state = 2}, + [3024] = {.lex_state = 96, .external_lex_state = 2}, [3025] = {.lex_state = 96, .external_lex_state = 2}, - [3026] = {.lex_state = 15, .external_lex_state = 5}, - [3027] = {.lex_state = 13, .external_lex_state = 5}, - [3028] = {.lex_state = 15, .external_lex_state = 5}, + [3026] = {.lex_state = 96, .external_lex_state = 2}, + [3027] = {.lex_state = 96, .external_lex_state = 2}, + [3028] = {.lex_state = 4, .external_lex_state = 2}, [3029] = {.lex_state = 96, .external_lex_state = 2}, - [3030] = {.lex_state = 96, .external_lex_state = 2}, - [3031] = {.lex_state = 96, .external_lex_state = 2}, + [3030] = {.lex_state = 4, .external_lex_state = 2}, + [3031] = {.lex_state = 4, .external_lex_state = 2}, [3032] = {.lex_state = 96, .external_lex_state = 2}, - [3033] = {.lex_state = 4, .external_lex_state = 2}, - [3034] = {.lex_state = 15, .external_lex_state = 5}, + [3033] = {.lex_state = 96, .external_lex_state = 2}, + [3034] = {.lex_state = 96, .external_lex_state = 2}, [3035] = {.lex_state = 96, .external_lex_state = 2}, - [3036] = {.lex_state = 4, .external_lex_state = 2}, - [3037] = {.lex_state = 4, .external_lex_state = 2}, - [3038] = {.lex_state = 15, .external_lex_state = 5}, - [3039] = {.lex_state = 15, .external_lex_state = 5}, - [3040] = {.lex_state = 15, .external_lex_state = 5}, - [3041] = {.lex_state = 96, .external_lex_state = 2}, - [3042] = {.lex_state = 96, .external_lex_state = 2}, - [3043] = {.lex_state = 15, .external_lex_state = 5}, - [3044] = {.lex_state = 15, .external_lex_state = 5}, - [3045] = {.lex_state = 15, .external_lex_state = 5}, - [3046] = {.lex_state = 96, .external_lex_state = 2}, - [3047] = {.lex_state = 12, .external_lex_state = 5}, - [3048] = {.lex_state = 96, .external_lex_state = 2}, - [3049] = {.lex_state = 96, .external_lex_state = 2}, + [3036] = {.lex_state = 96, .external_lex_state = 2}, + [3037] = {.lex_state = 96, .external_lex_state = 2}, + [3038] = {.lex_state = 96, .external_lex_state = 2}, + [3039] = {.lex_state = 96, .external_lex_state = 2}, + [3040] = {.lex_state = 96, .external_lex_state = 2}, + [3041] = {.lex_state = 4, .external_lex_state = 2}, + [3042] = {.lex_state = 4, .external_lex_state = 2}, + [3043] = {.lex_state = 4, .external_lex_state = 2}, + [3044] = {.lex_state = 96, .external_lex_state = 2}, + [3045] = {.lex_state = 96, .external_lex_state = 2}, + [3046] = {.lex_state = 15, .external_lex_state = 5}, + [3047] = {.lex_state = 96, .external_lex_state = 2}, + [3048] = {.lex_state = 12, .external_lex_state = 5}, + [3049] = {.lex_state = 12, .external_lex_state = 5}, [3050] = {.lex_state = 12, .external_lex_state = 5}, [3051] = {.lex_state = 12, .external_lex_state = 5}, - [3052] = {.lex_state = 96, .external_lex_state = 2}, + [3052] = {.lex_state = 12, .external_lex_state = 5}, [3053] = {.lex_state = 12, .external_lex_state = 5}, - [3054] = {.lex_state = 12, .external_lex_state = 5}, + [3054] = {.lex_state = 96, .external_lex_state = 2}, [3055] = {.lex_state = 12, .external_lex_state = 5}, - [3056] = {.lex_state = 12, .external_lex_state = 5}, + [3056] = {.lex_state = 96, .external_lex_state = 2}, [3057] = {.lex_state = 12, .external_lex_state = 5}, [3058] = {.lex_state = 12, .external_lex_state = 5}, [3059] = {.lex_state = 12, .external_lex_state = 5}, - [3060] = {.lex_state = 96, .external_lex_state = 2}, + [3060] = {.lex_state = 12, .external_lex_state = 5}, [3061] = {.lex_state = 96, .external_lex_state = 2}, - [3062] = {.lex_state = 96, .external_lex_state = 2}, + [3062] = {.lex_state = 12, .external_lex_state = 5}, [3063] = {.lex_state = 12, .external_lex_state = 5}, [3064] = {.lex_state = 96, .external_lex_state = 2}, - [3065] = {.lex_state = 96, .external_lex_state = 2}, - [3066] = {.lex_state = 12, .external_lex_state = 5}, - [3067] = {.lex_state = 12, .external_lex_state = 5}, + [3065] = {.lex_state = 12, .external_lex_state = 5}, + [3066] = {.lex_state = 96, .external_lex_state = 2}, + [3067] = {.lex_state = 13, .external_lex_state = 5}, [3068] = {.lex_state = 12, .external_lex_state = 5}, - [3069] = {.lex_state = 12, .external_lex_state = 5}, + [3069] = {.lex_state = 96, .external_lex_state = 2}, [3070] = {.lex_state = 12, .external_lex_state = 5}, [3071] = {.lex_state = 12, .external_lex_state = 5}, [3072] = {.lex_state = 12, .external_lex_state = 5}, - [3073] = {.lex_state = 96, .external_lex_state = 5}, - [3074] = {.lex_state = 12, .external_lex_state = 5}, + [3073] = {.lex_state = 12, .external_lex_state = 5}, + [3074] = {.lex_state = 96, .external_lex_state = 2}, [3075] = {.lex_state = 12, .external_lex_state = 5}, - [3076] = {.lex_state = 12, .external_lex_state = 5}, + [3076] = {.lex_state = 96, .external_lex_state = 2}, [3077] = {.lex_state = 12, .external_lex_state = 5}, - [3078] = {.lex_state = 96, .external_lex_state = 2}, + [3078] = {.lex_state = 12, .external_lex_state = 5}, [3079] = {.lex_state = 12, .external_lex_state = 5}, - [3080] = {.lex_state = 12, .external_lex_state = 5}, - [3081] = {.lex_state = 12, .external_lex_state = 5}, - [3082] = {.lex_state = 13, .external_lex_state = 5}, - [3083] = {.lex_state = 96, .external_lex_state = 2}, + [3080] = {.lex_state = 96, .external_lex_state = 2}, + [3081] = {.lex_state = 96, .external_lex_state = 5}, + [3082] = {.lex_state = 12, .external_lex_state = 5}, + [3083] = {.lex_state = 12, .external_lex_state = 5}, [3084] = {.lex_state = 12, .external_lex_state = 5}, [3085] = {.lex_state = 12, .external_lex_state = 5}, [3086] = {.lex_state = 12, .external_lex_state = 5}, [3087] = {.lex_state = 96, .external_lex_state = 2}, - [3088] = {.lex_state = 96, .external_lex_state = 5}, - [3089] = {.lex_state = 15, .external_lex_state = 6}, - [3090] = {.lex_state = 15, .external_lex_state = 6}, - [3091] = {.lex_state = 15, .external_lex_state = 6}, + [3088] = {.lex_state = 96, .external_lex_state = 2}, + [3089] = {.lex_state = 96, .external_lex_state = 2}, + [3090] = {.lex_state = 13, .external_lex_state = 5}, + [3091] = {.lex_state = 14, .external_lex_state = 5}, [3092] = {.lex_state = 15, .external_lex_state = 6}, [3093] = {.lex_state = 15, .external_lex_state = 6}, [3094] = {.lex_state = 15, .external_lex_state = 6}, - [3095] = {.lex_state = 15, .external_lex_state = 6}, + [3095] = {.lex_state = 96, .external_lex_state = 5}, [3096] = {.lex_state = 15, .external_lex_state = 6}, - [3097] = {.lex_state = 15, .external_lex_state = 6}, - [3098] = {.lex_state = 12, .external_lex_state = 5}, - [3099] = {.lex_state = 12, .external_lex_state = 2}, - [3100] = {.lex_state = 13, .external_lex_state = 6}, - [3101] = {.lex_state = 15, .external_lex_state = 6}, - [3102] = {.lex_state = 96, .external_lex_state = 2}, - [3103] = {.lex_state = 14, .external_lex_state = 5}, - [3104] = {.lex_state = 13, .external_lex_state = 5}, + [3097] = {.lex_state = 12, .external_lex_state = 5}, + [3098] = {.lex_state = 15, .external_lex_state = 6}, + [3099] = {.lex_state = 15, .external_lex_state = 6}, + [3100] = {.lex_state = 15, .external_lex_state = 6}, + [3101] = {.lex_state = 96, .external_lex_state = 5}, + [3102] = {.lex_state = 96, .external_lex_state = 5}, + [3103] = {.lex_state = 15, .external_lex_state = 6}, + [3104] = {.lex_state = 15, .external_lex_state = 6}, [3105] = {.lex_state = 15, .external_lex_state = 6}, - [3106] = {.lex_state = 14, .external_lex_state = 5}, - [3107] = {.lex_state = 12, .external_lex_state = 5}, + [3106] = {.lex_state = 15, .external_lex_state = 6}, + [3107] = {.lex_state = 96, .external_lex_state = 5}, [3108] = {.lex_state = 12, .external_lex_state = 5}, - [3109] = {.lex_state = 15, .external_lex_state = 6}, - [3110] = {.lex_state = 12, .external_lex_state = 5}, + [3109] = {.lex_state = 96, .external_lex_state = 2}, + [3110] = {.lex_state = 96, .external_lex_state = 5}, [3111] = {.lex_state = 15, .external_lex_state = 6}, - [3112] = {.lex_state = 96, .external_lex_state = 2}, + [3112] = {.lex_state = 15, .external_lex_state = 6}, [3113] = {.lex_state = 15, .external_lex_state = 6}, - [3114] = {.lex_state = 15, .external_lex_state = 6}, - [3115] = {.lex_state = 96, .external_lex_state = 5}, - [3116] = {.lex_state = 15, .external_lex_state = 6}, - [3117] = {.lex_state = 12, .external_lex_state = 5}, - [3118] = {.lex_state = 15, .external_lex_state = 6}, - [3119] = {.lex_state = 96, .external_lex_state = 5}, - [3120] = {.lex_state = 96, .external_lex_state = 5}, - [3121] = {.lex_state = 96, .external_lex_state = 2}, + [3114] = {.lex_state = 12, .external_lex_state = 5}, + [3115] = {.lex_state = 12, .external_lex_state = 2}, + [3116] = {.lex_state = 96, .external_lex_state = 2}, + [3117] = {.lex_state = 14, .external_lex_state = 5}, + [3118] = {.lex_state = 12, .external_lex_state = 5}, + [3119] = {.lex_state = 15, .external_lex_state = 6}, + [3120] = {.lex_state = 15, .external_lex_state = 6}, + [3121] = {.lex_state = 15, .external_lex_state = 6}, [3122] = {.lex_state = 15, .external_lex_state = 6}, - [3123] = {.lex_state = 14, .external_lex_state = 5}, - [3124] = {.lex_state = 12, .external_lex_state = 5}, - [3125] = {.lex_state = 14, .external_lex_state = 5}, + [3123] = {.lex_state = 15, .external_lex_state = 6}, + [3124] = {.lex_state = 96, .external_lex_state = 2}, + [3125] = {.lex_state = 96, .external_lex_state = 2}, [3126] = {.lex_state = 15, .external_lex_state = 6}, [3127] = {.lex_state = 15, .external_lex_state = 6}, [3128] = {.lex_state = 14, .external_lex_state = 5}, - [3129] = {.lex_state = 96, .external_lex_state = 2}, + [3129] = {.lex_state = 15, .external_lex_state = 6}, [3130] = {.lex_state = 15, .external_lex_state = 6}, - [3131] = {.lex_state = 13, .external_lex_state = 5}, + [3131] = {.lex_state = 15, .external_lex_state = 6}, [3132] = {.lex_state = 15, .external_lex_state = 6}, - [3133] = {.lex_state = 12, .external_lex_state = 5}, - [3134] = {.lex_state = 14, .external_lex_state = 5}, - [3135] = {.lex_state = 12, .external_lex_state = 5}, - [3136] = {.lex_state = 13, .external_lex_state = 5}, + [3133] = {.lex_state = 15, .external_lex_state = 6}, + [3134] = {.lex_state = 15, .external_lex_state = 6}, + [3135] = {.lex_state = 15, .external_lex_state = 6}, + [3136] = {.lex_state = 15, .external_lex_state = 6}, [3137] = {.lex_state = 15, .external_lex_state = 6}, - [3138] = {.lex_state = 96, .external_lex_state = 2}, - [3139] = {.lex_state = 96, .external_lex_state = 2}, + [3138] = {.lex_state = 15, .external_lex_state = 6}, + [3139] = {.lex_state = 15, .external_lex_state = 6}, [3140] = {.lex_state = 15, .external_lex_state = 6}, - [3141] = {.lex_state = 96, .external_lex_state = 5}, - [3142] = {.lex_state = 15, .external_lex_state = 6}, + [3141] = {.lex_state = 12, .external_lex_state = 5}, + [3142] = {.lex_state = 12, .external_lex_state = 5}, [3143] = {.lex_state = 14, .external_lex_state = 5}, - [3144] = {.lex_state = 15, .external_lex_state = 6}, - [3145] = {.lex_state = 96, .external_lex_state = 2}, - [3146] = {.lex_state = 96, .external_lex_state = 5}, - [3147] = {.lex_state = 15, .external_lex_state = 6}, - [3148] = {.lex_state = 15, .external_lex_state = 6}, - [3149] = {.lex_state = 96, .external_lex_state = 2}, - [3150] = {.lex_state = 15, .external_lex_state = 6}, - [3151] = {.lex_state = 15, .external_lex_state = 6}, - [3152] = {.lex_state = 15, .external_lex_state = 6}, - [3153] = {.lex_state = 96, .external_lex_state = 2}, - [3154] = {.lex_state = 14, .external_lex_state = 5}, - [3155] = {.lex_state = 15, .external_lex_state = 6}, - [3156] = {.lex_state = 12, .external_lex_state = 5}, - [3157] = {.lex_state = 15, .external_lex_state = 6}, + [3144] = {.lex_state = 12, .external_lex_state = 5}, + [3145] = {.lex_state = 12, .external_lex_state = 5}, + [3146] = {.lex_state = 14, .external_lex_state = 5}, + [3147] = {.lex_state = 14, .external_lex_state = 5}, + [3148] = {.lex_state = 96, .external_lex_state = 2}, + [3149] = {.lex_state = 13, .external_lex_state = 6}, + [3150] = {.lex_state = 96, .external_lex_state = 2}, + [3151] = {.lex_state = 14, .external_lex_state = 5}, + [3152] = {.lex_state = 96, .external_lex_state = 2}, + [3153] = {.lex_state = 13, .external_lex_state = 5}, + [3154] = {.lex_state = 96, .external_lex_state = 2}, + [3155] = {.lex_state = 96, .external_lex_state = 5}, + [3156] = {.lex_state = 13, .external_lex_state = 5}, + [3157] = {.lex_state = 12, .external_lex_state = 5}, [3158] = {.lex_state = 12, .external_lex_state = 5}, - [3159] = {.lex_state = 96, .external_lex_state = 2}, + [3159] = {.lex_state = 14, .external_lex_state = 5}, [3160] = {.lex_state = 15, .external_lex_state = 6}, - [3161] = {.lex_state = 12, .external_lex_state = 2}, - [3162] = {.lex_state = 12, .external_lex_state = 5}, + [3161] = {.lex_state = 12, .external_lex_state = 5}, + [3162] = {.lex_state = 96, .external_lex_state = 5}, [3163] = {.lex_state = 12, .external_lex_state = 5}, - [3164] = {.lex_state = 96, .external_lex_state = 5}, + [3164] = {.lex_state = 12, .external_lex_state = 5}, [3165] = {.lex_state = 12, .external_lex_state = 5}, [3166] = {.lex_state = 12, .external_lex_state = 5}, [3167] = {.lex_state = 12, .external_lex_state = 5}, - [3168] = {.lex_state = 96, .external_lex_state = 5}, - [3169] = {.lex_state = 96, .external_lex_state = 5}, - [3170] = {.lex_state = 12, .external_lex_state = 5}, - [3171] = {.lex_state = 15, .external_lex_state = 2}, - [3172] = {.lex_state = 15, .external_lex_state = 2}, - [3173] = {.lex_state = 96, .external_lex_state = 2}, - [3174] = {.lex_state = 15, .external_lex_state = 2}, - [3175] = {.lex_state = 96, .external_lex_state = 5}, + [3168] = {.lex_state = 15, .external_lex_state = 2}, + [3169] = {.lex_state = 12, .external_lex_state = 5}, + [3170] = {.lex_state = 96, .external_lex_state = 5}, + [3171] = {.lex_state = 96, .external_lex_state = 5}, + [3172] = {.lex_state = 12, .external_lex_state = 5}, + [3173] = {.lex_state = 12, .external_lex_state = 5}, + [3174] = {.lex_state = 12, .external_lex_state = 5}, + [3175] = {.lex_state = 12, .external_lex_state = 5}, [3176] = {.lex_state = 12, .external_lex_state = 5}, [3177] = {.lex_state = 12, .external_lex_state = 5}, [3178] = {.lex_state = 12, .external_lex_state = 5}, [3179] = {.lex_state = 12, .external_lex_state = 5}, [3180] = {.lex_state = 12, .external_lex_state = 5}, [3181] = {.lex_state = 12, .external_lex_state = 5}, - [3182] = {.lex_state = 96, .external_lex_state = 5}, + [3182] = {.lex_state = 12, .external_lex_state = 5}, [3183] = {.lex_state = 12, .external_lex_state = 5}, - [3184] = {.lex_state = 96, .external_lex_state = 5}, - [3185] = {.lex_state = 12, .external_lex_state = 5}, - [3186] = {.lex_state = 96, .external_lex_state = 5}, - [3187] = {.lex_state = 12, .external_lex_state = 5}, + [3184] = {.lex_state = 12, .external_lex_state = 5}, + [3185] = {.lex_state = 96, .external_lex_state = 2}, + [3186] = {.lex_state = 12, .external_lex_state = 5}, + [3187] = {.lex_state = 96, .external_lex_state = 6}, [3188] = {.lex_state = 12, .external_lex_state = 5}, - [3189] = {.lex_state = 12, .external_lex_state = 5}, - [3190] = {.lex_state = 96, .external_lex_state = 5}, - [3191] = {.lex_state = 12, .external_lex_state = 5}, - [3192] = {.lex_state = 12, .external_lex_state = 5}, - [3193] = {.lex_state = 12, .external_lex_state = 5}, - [3194] = {.lex_state = 12, .external_lex_state = 5}, + [3189] = {.lex_state = 96, .external_lex_state = 5}, + [3190] = {.lex_state = 12, .external_lex_state = 2}, + [3191] = {.lex_state = 96, .external_lex_state = 5}, + [3192] = {.lex_state = 12, .external_lex_state = 2}, + [3193] = {.lex_state = 12, .external_lex_state = 2}, + [3194] = {.lex_state = 96, .external_lex_state = 5}, [3195] = {.lex_state = 12, .external_lex_state = 5}, [3196] = {.lex_state = 12, .external_lex_state = 5}, - [3197] = {.lex_state = 12, .external_lex_state = 5}, + [3197] = {.lex_state = 96, .external_lex_state = 5}, [3198] = {.lex_state = 12, .external_lex_state = 5}, [3199] = {.lex_state = 12, .external_lex_state = 5}, - [3200] = {.lex_state = 96, .external_lex_state = 6}, + [3200] = {.lex_state = 96, .external_lex_state = 5}, [3201] = {.lex_state = 12, .external_lex_state = 5}, - [3202] = {.lex_state = 12, .external_lex_state = 5}, - [3203] = {.lex_state = 12, .external_lex_state = 5}, + [3202] = {.lex_state = 96, .external_lex_state = 5}, + [3203] = {.lex_state = 96, .external_lex_state = 5}, [3204] = {.lex_state = 12, .external_lex_state = 5}, - [3205] = {.lex_state = 12, .external_lex_state = 2}, - [3206] = {.lex_state = 12, .external_lex_state = 5}, - [3207] = {.lex_state = 12, .external_lex_state = 2}, - [3208] = {.lex_state = 96, .external_lex_state = 5}, - [3209] = {.lex_state = 96, .external_lex_state = 5}, - [3210] = {.lex_state = 12, .external_lex_state = 5}, + [3205] = {.lex_state = 12, .external_lex_state = 5}, + [3206] = {.lex_state = 15, .external_lex_state = 2}, + [3207] = {.lex_state = 12, .external_lex_state = 5}, + [3208] = {.lex_state = 12, .external_lex_state = 5}, + [3209] = {.lex_state = 12, .external_lex_state = 5}, + [3210] = {.lex_state = 15, .external_lex_state = 2}, [3211] = {.lex_state = 12, .external_lex_state = 5}, [3212] = {.lex_state = 12, .external_lex_state = 5}, - [3213] = {.lex_state = 96, .external_lex_state = 5}, + [3213] = {.lex_state = 13, .external_lex_state = 6}, [3214] = {.lex_state = 12, .external_lex_state = 5}, [3215] = {.lex_state = 12, .external_lex_state = 5}, [3216] = {.lex_state = 12, .external_lex_state = 5}, - [3217] = {.lex_state = 13, .external_lex_state = 6}, + [3217] = {.lex_state = 96, .external_lex_state = 2}, [3218] = {.lex_state = 12, .external_lex_state = 5}, - [3219] = {.lex_state = 12, .external_lex_state = 5}, - [3220] = {.lex_state = 96, .external_lex_state = 2}, + [3219] = {.lex_state = 96, .external_lex_state = 5}, + [3220] = {.lex_state = 12, .external_lex_state = 5}, [3221] = {.lex_state = 14, .external_lex_state = 6}, [3222] = {.lex_state = 96, .external_lex_state = 5}, [3223] = {.lex_state = 96, .external_lex_state = 5}, [3224] = {.lex_state = 96, .external_lex_state = 5}, [3225] = {.lex_state = 96, .external_lex_state = 5}, [3226] = {.lex_state = 96, .external_lex_state = 5}, - [3227] = {.lex_state = 14, .external_lex_state = 6}, + [3227] = {.lex_state = 96, .external_lex_state = 5}, [3228] = {.lex_state = 96, .external_lex_state = 5}, [3229] = {.lex_state = 96, .external_lex_state = 5}, - [3230] = {.lex_state = 13, .external_lex_state = 6}, - [3231] = {.lex_state = 14, .external_lex_state = 6}, - [3232] = {.lex_state = 14, .external_lex_state = 6}, - [3233] = {.lex_state = 96, .external_lex_state = 5}, - [3234] = {.lex_state = 96, .external_lex_state = 6}, + [3230] = {.lex_state = 96, .external_lex_state = 5}, + [3231] = {.lex_state = 96, .external_lex_state = 5}, + [3232] = {.lex_state = 96, .external_lex_state = 5}, + [3233] = {.lex_state = 13, .external_lex_state = 6}, + [3234] = {.lex_state = 96, .external_lex_state = 5}, [3235] = {.lex_state = 96, .external_lex_state = 5}, - [3236] = {.lex_state = 12, .external_lex_state = 5}, + [3236] = {.lex_state = 96, .external_lex_state = 2}, [3237] = {.lex_state = 96, .external_lex_state = 5}, [3238] = {.lex_state = 96, .external_lex_state = 5}, - [3239] = {.lex_state = 96, .external_lex_state = 5}, - [3240] = {.lex_state = 14, .external_lex_state = 6}, - [3241] = {.lex_state = 96, .external_lex_state = 6}, + [3239] = {.lex_state = 14, .external_lex_state = 6}, + [3240] = {.lex_state = 96, .external_lex_state = 5}, + [3241] = {.lex_state = 14, .external_lex_state = 6}, [3242] = {.lex_state = 96, .external_lex_state = 5}, - [3243] = {.lex_state = 13, .external_lex_state = 6}, + [3243] = {.lex_state = 96, .external_lex_state = 5}, [3244] = {.lex_state = 96, .external_lex_state = 5}, - [3245] = {.lex_state = 96, .external_lex_state = 6}, - [3246] = {.lex_state = 96, .external_lex_state = 6}, + [3245] = {.lex_state = 13, .external_lex_state = 6}, + [3246] = {.lex_state = 96, .external_lex_state = 5}, [3247] = {.lex_state = 96, .external_lex_state = 5}, - [3248] = {.lex_state = 96, .external_lex_state = 5}, - [3249] = {.lex_state = 96, .external_lex_state = 6}, - [3250] = {.lex_state = 12, .external_lex_state = 2}, + [3248] = {.lex_state = 96, .external_lex_state = 6}, + [3249] = {.lex_state = 14, .external_lex_state = 6}, + [3250] = {.lex_state = 96, .external_lex_state = 5}, [3251] = {.lex_state = 96, .external_lex_state = 5}, - [3252] = {.lex_state = 13, .external_lex_state = 6}, - [3253] = {.lex_state = 12, .external_lex_state = 5}, - [3254] = {.lex_state = 96, .external_lex_state = 5}, + [3252] = {.lex_state = 96, .external_lex_state = 5}, + [3253] = {.lex_state = 96, .external_lex_state = 5}, + [3254] = {.lex_state = 14, .external_lex_state = 6}, [3255] = {.lex_state = 96, .external_lex_state = 5}, [3256] = {.lex_state = 96, .external_lex_state = 5}, [3257] = {.lex_state = 96, .external_lex_state = 5}, [3258] = {.lex_state = 96, .external_lex_state = 5}, - [3259] = {.lex_state = 96, .external_lex_state = 5}, + [3259] = {.lex_state = 12, .external_lex_state = 5}, [3260] = {.lex_state = 96, .external_lex_state = 5}, - [3261] = {.lex_state = 14, .external_lex_state = 6}, - [3262] = {.lex_state = 96, .external_lex_state = 5}, - [3263] = {.lex_state = 96, .external_lex_state = 5}, - [3264] = {.lex_state = 96, .external_lex_state = 5}, + [3261] = {.lex_state = 96, .external_lex_state = 5}, + [3262] = {.lex_state = 12, .external_lex_state = 5}, + [3263] = {.lex_state = 96, .external_lex_state = 6}, + [3264] = {.lex_state = 96, .external_lex_state = 6}, [3265] = {.lex_state = 96, .external_lex_state = 5}, [3266] = {.lex_state = 96, .external_lex_state = 5}, - [3267] = {.lex_state = 96, .external_lex_state = 5}, + [3267] = {.lex_state = 96, .external_lex_state = 6}, [3268] = {.lex_state = 96, .external_lex_state = 5}, - [3269] = {.lex_state = 96, .external_lex_state = 5}, + [3269] = {.lex_state = 13, .external_lex_state = 6}, [3270] = {.lex_state = 96, .external_lex_state = 5}, [3271] = {.lex_state = 96, .external_lex_state = 5}, - [3272] = {.lex_state = 96, .external_lex_state = 5}, + [3272] = {.lex_state = 96, .external_lex_state = 6}, [3273] = {.lex_state = 96, .external_lex_state = 5}, [3274] = {.lex_state = 96, .external_lex_state = 5}, [3275] = {.lex_state = 96, .external_lex_state = 5}, [3276] = {.lex_state = 96, .external_lex_state = 5}, - [3277] = {.lex_state = 96, .external_lex_state = 5}, - [3278] = {.lex_state = 96, .external_lex_state = 2}, - [3279] = {.lex_state = 12, .external_lex_state = 5}, - [3280] = {.lex_state = 96, .external_lex_state = 5}, - [3281] = {.lex_state = 96, .external_lex_state = 5}, + [3277] = {.lex_state = 12, .external_lex_state = 2}, + [3278] = {.lex_state = 96, .external_lex_state = 5}, + [3279] = {.lex_state = 96, .external_lex_state = 5}, + [3280] = {.lex_state = 14, .external_lex_state = 6}, + [3281] = {.lex_state = 12, .external_lex_state = 5}, [3282] = {.lex_state = 96, .external_lex_state = 5}, [3283] = {.lex_state = 96, .external_lex_state = 5}, [3284] = {.lex_state = 96, .external_lex_state = 5}, [3285] = {.lex_state = 96, .external_lex_state = 5}, [3286] = {.lex_state = 96, .external_lex_state = 5}, - [3287] = {.lex_state = 14, .external_lex_state = 6}, + [3287] = {.lex_state = 96, .external_lex_state = 5}, [3288] = {.lex_state = 96, .external_lex_state = 5}, [3289] = {.lex_state = 96, .external_lex_state = 5}, [3290] = {.lex_state = 14, .external_lex_state = 6}, - [3291] = {.lex_state = 96, .external_lex_state = 5}, - [3292] = {.lex_state = 96, .external_lex_state = 6}, - [3293] = {.lex_state = 13, .external_lex_state = 2}, + [3291] = {.lex_state = 96, .external_lex_state = 6}, + [3292] = {.lex_state = 14, .external_lex_state = 6}, + [3293] = {.lex_state = 96, .external_lex_state = 5}, [3294] = {.lex_state = 13, .external_lex_state = 2}, - [3295] = {.lex_state = 96, .external_lex_state = 6}, - [3296] = {.lex_state = 96, .external_lex_state = 6}, - [3297] = {.lex_state = 96, .external_lex_state = 6}, - [3298] = {.lex_state = 96, .external_lex_state = 2}, - [3299] = {.lex_state = 12, .external_lex_state = 5}, + [3295] = {.lex_state = 96, .external_lex_state = 2}, + [3296] = {.lex_state = 96, .external_lex_state = 2}, + [3297] = {.lex_state = 13, .external_lex_state = 2}, + [3298] = {.lex_state = 96, .external_lex_state = 6}, + [3299] = {.lex_state = 96, .external_lex_state = 2}, [3300] = {.lex_state = 96, .external_lex_state = 6}, - [3301] = {.lex_state = 96, .external_lex_state = 5}, + [3301] = {.lex_state = 96, .external_lex_state = 6}, [3302] = {.lex_state = 13, .external_lex_state = 2}, - [3303] = {.lex_state = 96, .external_lex_state = 2}, - [3304] = {.lex_state = 13, .external_lex_state = 2}, - [3305] = {.lex_state = 96, .external_lex_state = 6}, - [3306] = {.lex_state = 96, .external_lex_state = 6}, - [3307] = {.lex_state = 96, .external_lex_state = 5}, - [3308] = {.lex_state = 96, .external_lex_state = 5}, - [3309] = {.lex_state = 96, .external_lex_state = 5}, - [3310] = {.lex_state = 13, .external_lex_state = 2}, - [3311] = {.lex_state = 96, .external_lex_state = 2}, + [3303] = {.lex_state = 13, .external_lex_state = 2}, + [3304] = {.lex_state = 96, .external_lex_state = 2}, + [3305] = {.lex_state = 13, .external_lex_state = 2}, + [3306] = {.lex_state = 13, .external_lex_state = 2}, + [3307] = {.lex_state = 13, .external_lex_state = 2}, + [3308] = {.lex_state = 12, .external_lex_state = 2}, + [3309] = {.lex_state = 13, .external_lex_state = 2}, + [3310] = {.lex_state = 96, .external_lex_state = 6}, + [3311] = {.lex_state = 13, .external_lex_state = 2}, [3312] = {.lex_state = 96, .external_lex_state = 5}, - [3313] = {.lex_state = 13, .external_lex_state = 2}, - [3314] = {.lex_state = 13, .external_lex_state = 2}, + [3313] = {.lex_state = 96, .external_lex_state = 6}, + [3314] = {.lex_state = 96, .external_lex_state = 6}, [3315] = {.lex_state = 96, .external_lex_state = 2}, - [3316] = {.lex_state = 96, .external_lex_state = 6}, - [3317] = {.lex_state = 12, .external_lex_state = 2}, + [3316] = {.lex_state = 12, .external_lex_state = 5}, + [3317] = {.lex_state = 96, .external_lex_state = 5}, [3318] = {.lex_state = 96, .external_lex_state = 6}, - [3319] = {.lex_state = 13, .external_lex_state = 2}, - [3320] = {.lex_state = 13, .external_lex_state = 2}, - [3321] = {.lex_state = 13, .external_lex_state = 2}, - [3322] = {.lex_state = 96, .external_lex_state = 2}, + [3319] = {.lex_state = 96, .external_lex_state = 6}, + [3320] = {.lex_state = 96, .external_lex_state = 5}, + [3321] = {.lex_state = 96, .external_lex_state = 5}, + [3322] = {.lex_state = 13, .external_lex_state = 2}, [3323] = {.lex_state = 13, .external_lex_state = 2}, [3324] = {.lex_state = 96, .external_lex_state = 5}, [3325] = {.lex_state = 96, .external_lex_state = 5}, - [3326] = {.lex_state = 96, .external_lex_state = 5}, - [3327] = {.lex_state = 96, .external_lex_state = 5}, - [3328] = {.lex_state = 96, .external_lex_state = 6}, - [3329] = {.lex_state = 96, .external_lex_state = 5}, - [3330] = {.lex_state = 96, .external_lex_state = 2}, - [3331] = {.lex_state = 96, .external_lex_state = 5}, - [3332] = {.lex_state = 96, .external_lex_state = 6}, - [3333] = {.lex_state = 11, .external_lex_state = 2}, - [3334] = {.lex_state = 96, .external_lex_state = 2}, - [3335] = {.lex_state = 96, .external_lex_state = 2}, - [3336] = {.lex_state = 96, .external_lex_state = 6}, - [3337] = {.lex_state = 96, .external_lex_state = 6}, - [3338] = {.lex_state = 96, .external_lex_state = 5}, - [3339] = {.lex_state = 96, .external_lex_state = 5}, - [3340] = {.lex_state = 96, .external_lex_state = 5}, - [3341] = {.lex_state = 96, .external_lex_state = 5}, + [3326] = {.lex_state = 96, .external_lex_state = 6}, + [3327] = {.lex_state = 96, .external_lex_state = 6}, + [3328] = {.lex_state = 11, .external_lex_state = 2}, + [3329] = {.lex_state = 96, .external_lex_state = 6}, + [3330] = {.lex_state = 96, .external_lex_state = 6}, + [3331] = {.lex_state = 13, .external_lex_state = 2}, + [3332] = {.lex_state = 96, .external_lex_state = 2}, + [3333] = {.lex_state = 96, .external_lex_state = 6}, + [3334] = {.lex_state = 96, .external_lex_state = 6}, + [3335] = {.lex_state = 96, .external_lex_state = 5}, + [3336] = {.lex_state = 96, .external_lex_state = 5}, + [3337] = {.lex_state = 96, .external_lex_state = 2}, + [3338] = {.lex_state = 96, .external_lex_state = 6}, + [3339] = {.lex_state = 96, .external_lex_state = 6}, + [3340] = {.lex_state = 96, .external_lex_state = 6}, + [3341] = {.lex_state = 96, .external_lex_state = 6}, [3342] = {.lex_state = 96, .external_lex_state = 6}, [3343] = {.lex_state = 96, .external_lex_state = 6}, [3344] = {.lex_state = 96, .external_lex_state = 6}, - [3345] = {.lex_state = 96, .external_lex_state = 5}, - [3346] = {.lex_state = 96, .external_lex_state = 6}, + [3345] = {.lex_state = 13, .external_lex_state = 2}, + [3346] = {.lex_state = 12, .external_lex_state = 2}, [3347] = {.lex_state = 96, .external_lex_state = 6}, [3348] = {.lex_state = 96, .external_lex_state = 2}, - [3349] = {.lex_state = 96, .external_lex_state = 5}, - [3350] = {.lex_state = 96, .external_lex_state = 6}, - [3351] = {.lex_state = 12, .external_lex_state = 2}, - [3352] = {.lex_state = 96, .external_lex_state = 6}, - [3353] = {.lex_state = 12, .external_lex_state = 2}, + [3349] = {.lex_state = 12, .external_lex_state = 2}, + [3350] = {.lex_state = 96, .external_lex_state = 5}, + [3351] = {.lex_state = 96, .external_lex_state = 5}, + [3352] = {.lex_state = 11, .external_lex_state = 2}, + [3353] = {.lex_state = 96, .external_lex_state = 5}, [3354] = {.lex_state = 96, .external_lex_state = 6}, - [3355] = {.lex_state = 96, .external_lex_state = 2}, - [3356] = {.lex_state = 96, .external_lex_state = 6}, - [3357] = {.lex_state = 96, .external_lex_state = 5}, - [3358] = {.lex_state = 96, .external_lex_state = 6}, + [3355] = {.lex_state = 96, .external_lex_state = 6}, + [3356] = {.lex_state = 13, .external_lex_state = 2}, + [3357] = {.lex_state = 96, .external_lex_state = 6}, + [3358] = {.lex_state = 96, .external_lex_state = 5}, [3359] = {.lex_state = 96, .external_lex_state = 6}, - [3360] = {.lex_state = 12, .external_lex_state = 2}, - [3361] = {.lex_state = 13, .external_lex_state = 2}, - [3362] = {.lex_state = 96, .external_lex_state = 6}, - [3363] = {.lex_state = 13, .external_lex_state = 2}, - [3364] = {.lex_state = 96, .external_lex_state = 5}, + [3360] = {.lex_state = 96, .external_lex_state = 5}, + [3361] = {.lex_state = 96, .external_lex_state = 5}, + [3362] = {.lex_state = 96, .external_lex_state = 2}, + [3363] = {.lex_state = 96, .external_lex_state = 5}, + [3364] = {.lex_state = 96, .external_lex_state = 6}, [3365] = {.lex_state = 96, .external_lex_state = 6}, [3366] = {.lex_state = 96, .external_lex_state = 6}, - [3367] = {.lex_state = 96, .external_lex_state = 5}, - [3368] = {.lex_state = 96, .external_lex_state = 5}, + [3367] = {.lex_state = 96, .external_lex_state = 6}, + [3368] = {.lex_state = 96, .external_lex_state = 6}, [3369] = {.lex_state = 96, .external_lex_state = 6}, - [3370] = {.lex_state = 96, .external_lex_state = 5}, - [3371] = {.lex_state = 96, .external_lex_state = 6}, - [3372] = {.lex_state = 96, .external_lex_state = 6}, - [3373] = {.lex_state = 12, .external_lex_state = 2}, + [3370] = {.lex_state = 96, .external_lex_state = 6}, + [3371] = {.lex_state = 13, .external_lex_state = 2}, + [3372] = {.lex_state = 96, .external_lex_state = 5}, + [3373] = {.lex_state = 96, .external_lex_state = 5}, [3374] = {.lex_state = 96, .external_lex_state = 6}, - [3375] = {.lex_state = 96, .external_lex_state = 2}, - [3376] = {.lex_state = 13, .external_lex_state = 2}, - [3377] = {.lex_state = 96, .external_lex_state = 5}, - [3378] = {.lex_state = 96, .external_lex_state = 6}, - [3379] = {.lex_state = 96, .external_lex_state = 2}, + [3375] = {.lex_state = 96, .external_lex_state = 5}, + [3376] = {.lex_state = 96, .external_lex_state = 5}, + [3377] = {.lex_state = 96, .external_lex_state = 2}, + [3378] = {.lex_state = 96, .external_lex_state = 5}, + [3379] = {.lex_state = 96, .external_lex_state = 6}, [3380] = {.lex_state = 96, .external_lex_state = 6}, - [3381] = {.lex_state = 13, .external_lex_state = 2}, - [3382] = {.lex_state = 13, .external_lex_state = 2}, + [3381] = {.lex_state = 96, .external_lex_state = 6}, + [3382] = {.lex_state = 96, .external_lex_state = 6}, [3383] = {.lex_state = 96, .external_lex_state = 6}, [3384] = {.lex_state = 96, .external_lex_state = 6}, [3385] = {.lex_state = 96, .external_lex_state = 6}, - [3386] = {.lex_state = 13, .external_lex_state = 2}, - [3387] = {.lex_state = 11, .external_lex_state = 2}, - [3388] = {.lex_state = 96, .external_lex_state = 6}, - [3389] = {.lex_state = 96, .external_lex_state = 6}, - [3390] = {.lex_state = 96, .external_lex_state = 2}, - [3391] = {.lex_state = 13, .external_lex_state = 2}, - [3392] = {.lex_state = 13, .external_lex_state = 2}, - [3393] = {.lex_state = 96, .external_lex_state = 5}, - [3394] = {.lex_state = 96, .external_lex_state = 6}, - [3395] = {.lex_state = 13, .external_lex_state = 2}, - [3396] = {.lex_state = 96, .external_lex_state = 6}, - [3397] = {.lex_state = 96, .external_lex_state = 5}, - [3398] = {.lex_state = 96, .external_lex_state = 2}, + [3386] = {.lex_state = 96, .external_lex_state = 5}, + [3387] = {.lex_state = 96, .external_lex_state = 5}, + [3388] = {.lex_state = 96, .external_lex_state = 5}, + [3389] = {.lex_state = 96, .external_lex_state = 5}, + [3390] = {.lex_state = 96, .external_lex_state = 6}, + [3391] = {.lex_state = 96, .external_lex_state = 5}, + [3392] = {.lex_state = 96, .external_lex_state = 6}, + [3393] = {.lex_state = 96, .external_lex_state = 6}, + [3394] = {.lex_state = 96, .external_lex_state = 5}, + [3395] = {.lex_state = 96, .external_lex_state = 5}, + [3396] = {.lex_state = 13, .external_lex_state = 2}, + [3397] = {.lex_state = 96, .external_lex_state = 6}, + [3398] = {.lex_state = 96, .external_lex_state = 5}, [3399] = {.lex_state = 96, .external_lex_state = 6}, [3400] = {.lex_state = 96, .external_lex_state = 5}, - [3401] = {.lex_state = 96, .external_lex_state = 6}, + [3401] = {.lex_state = 96, .external_lex_state = 5}, [3402] = {.lex_state = 96, .external_lex_state = 6}, [3403] = {.lex_state = 96, .external_lex_state = 5}, [3404] = {.lex_state = 96, .external_lex_state = 6}, - [3405] = {.lex_state = 96, .external_lex_state = 5}, + [3405] = {.lex_state = 96, .external_lex_state = 6}, [3406] = {.lex_state = 96, .external_lex_state = 5}, - [3407] = {.lex_state = 12, .external_lex_state = 2}, - [3408] = {.lex_state = 13, .external_lex_state = 2}, - [3409] = {.lex_state = 96, .external_lex_state = 5}, - [3410] = {.lex_state = 96, .external_lex_state = 2}, + [3407] = {.lex_state = 96, .external_lex_state = 6}, + [3408] = {.lex_state = 96, .external_lex_state = 6}, + [3409] = {.lex_state = 96, .external_lex_state = 6}, + [3410] = {.lex_state = 96, .external_lex_state = 5}, [3411] = {.lex_state = 96, .external_lex_state = 5}, - [3412] = {.lex_state = 96, .external_lex_state = 6}, - [3413] = {.lex_state = 96, .external_lex_state = 5}, + [3412] = {.lex_state = 12, .external_lex_state = 2}, + [3413] = {.lex_state = 96, .external_lex_state = 6}, [3414] = {.lex_state = 12, .external_lex_state = 2}, - [3415] = {.lex_state = 96, .external_lex_state = 6}, + [3415] = {.lex_state = 96, .external_lex_state = 2}, [3416] = {.lex_state = 96, .external_lex_state = 5}, - [3417] = {.lex_state = 96, .external_lex_state = 5}, - [3418] = {.lex_state = 96, .external_lex_state = 5}, + [3417] = {.lex_state = 13, .external_lex_state = 2}, + [3418] = {.lex_state = 13, .external_lex_state = 2}, [3419] = {.lex_state = 13, .external_lex_state = 2}, [3420] = {.lex_state = 13, .external_lex_state = 2}, - [3421] = {.lex_state = 96, .external_lex_state = 5}, + [3421] = {.lex_state = 11, .external_lex_state = 2}, [3422] = {.lex_state = 96, .external_lex_state = 6}, [3423] = {.lex_state = 96, .external_lex_state = 6}, - [3424] = {.lex_state = 96, .external_lex_state = 5}, - [3425] = {.lex_state = 96, .external_lex_state = 5}, + [3424] = {.lex_state = 96, .external_lex_state = 6}, + [3425] = {.lex_state = 96, .external_lex_state = 6}, [3426] = {.lex_state = 96, .external_lex_state = 6}, - [3427] = {.lex_state = 96, .external_lex_state = 5}, - [3428] = {.lex_state = 12, .external_lex_state = 2}, - [3429] = {.lex_state = 11, .external_lex_state = 2}, - [3430] = {.lex_state = 96, .external_lex_state = 5}, + [3427] = {.lex_state = 96, .external_lex_state = 6}, + [3428] = {.lex_state = 96, .external_lex_state = 6}, + [3429] = {.lex_state = 13, .external_lex_state = 2}, + [3430] = {.lex_state = 13, .external_lex_state = 2}, [3431] = {.lex_state = 96, .external_lex_state = 5}, [3432] = {.lex_state = 96, .external_lex_state = 6}, - [3433] = {.lex_state = 96, .external_lex_state = 5}, - [3434] = {.lex_state = 96, .external_lex_state = 6}, - [3435] = {.lex_state = 96, .external_lex_state = 5}, + [3433] = {.lex_state = 12, .external_lex_state = 2}, + [3434] = {.lex_state = 96, .external_lex_state = 5}, + [3435] = {.lex_state = 96, .external_lex_state = 2}, [3436] = {.lex_state = 13, .external_lex_state = 2}, - [3437] = {.lex_state = 96, .external_lex_state = 6}, + [3437] = {.lex_state = 12, .external_lex_state = 2}, [3438] = {.lex_state = 96, .external_lex_state = 5}, - [3439] = {.lex_state = 96, .external_lex_state = 6}, - [3440] = {.lex_state = 96, .external_lex_state = 5}, - [3441] = {.lex_state = 12, .external_lex_state = 2}, + [3439] = {.lex_state = 96, .external_lex_state = 5}, + [3440] = {.lex_state = 13, .external_lex_state = 2}, + [3441] = {.lex_state = 96, .external_lex_state = 5}, [3442] = {.lex_state = 96, .external_lex_state = 6}, - [3443] = {.lex_state = 13, .external_lex_state = 2}, - [3444] = {.lex_state = 96, .external_lex_state = 5}, - [3445] = {.lex_state = 96, .external_lex_state = 6}, - [3446] = {.lex_state = 96, .external_lex_state = 5}, - [3447] = {.lex_state = 96, .external_lex_state = 6}, - [3448] = {.lex_state = 13, .external_lex_state = 2}, - [3449] = {.lex_state = 96, .external_lex_state = 6}, - [3450] = {.lex_state = 96, .external_lex_state = 5}, - [3451] = {.lex_state = 96, .external_lex_state = 6}, + [3443] = {.lex_state = 96, .external_lex_state = 5}, + [3444] = {.lex_state = 12, .external_lex_state = 2}, + [3445] = {.lex_state = 96, .external_lex_state = 2}, + [3446] = {.lex_state = 96, .external_lex_state = 6}, + [3447] = {.lex_state = 96, .external_lex_state = 5}, + [3448] = {.lex_state = 12, .external_lex_state = 2}, + [3449] = {.lex_state = 13, .external_lex_state = 2}, + [3450] = {.lex_state = 13, .external_lex_state = 2}, + [3451] = {.lex_state = 96, .external_lex_state = 5}, [3452] = {.lex_state = 13, .external_lex_state = 2}, [3453] = {.lex_state = 13, .external_lex_state = 2}, [3454] = {.lex_state = 96, .external_lex_state = 5}, - [3455] = {.lex_state = 13, .external_lex_state = 2}, - [3456] = {.lex_state = 96, .external_lex_state = 5}, + [3455] = {.lex_state = 96, .external_lex_state = 5}, + [3456] = {.lex_state = 96, .external_lex_state = 2}, [3457] = {.lex_state = 13, .external_lex_state = 2}, - [3458] = {.lex_state = 96, .external_lex_state = 6}, - [3459] = {.lex_state = 96, .external_lex_state = 5}, + [3458] = {.lex_state = 96, .external_lex_state = 5}, + [3459] = {.lex_state = 13, .external_lex_state = 2}, [3460] = {.lex_state = 96, .external_lex_state = 5}, [3461] = {.lex_state = 96, .external_lex_state = 5}, - [3462] = {.lex_state = 96, .external_lex_state = 6}, - [3463] = {.lex_state = 96, .external_lex_state = 6}, - [3464] = {.lex_state = 96, .external_lex_state = 6}, + [3462] = {.lex_state = 96, .external_lex_state = 2}, + [3463] = {.lex_state = 96, .external_lex_state = 5}, + [3464] = {.lex_state = 96, .external_lex_state = 5}, [3465] = {.lex_state = 96, .external_lex_state = 5}, - [3466] = {.lex_state = 96, .external_lex_state = 6}, + [3466] = {.lex_state = 96, .external_lex_state = 5}, [3467] = {.lex_state = 96, .external_lex_state = 6}, [3468] = {.lex_state = 96, .external_lex_state = 5}, - [3469] = {.lex_state = 96, .external_lex_state = 6}, + [3469] = {.lex_state = 96, .external_lex_state = 5}, [3470] = {.lex_state = 96, .external_lex_state = 5}, [3471] = {.lex_state = 96, .external_lex_state = 2}, - [3472] = {.lex_state = 96, .external_lex_state = 2}, - [3473] = {.lex_state = 18, .external_lex_state = 2}, - [3474] = {.lex_state = 96, .external_lex_state = 2}, - [3475] = {.lex_state = 96, .external_lex_state = 2}, - [3476] = {.lex_state = 18, .external_lex_state = 2}, - [3477] = {.lex_state = 96, .external_lex_state = 5}, - [3478] = {.lex_state = 96, .external_lex_state = 5}, - [3479] = {.lex_state = 96, .external_lex_state = 2}, + [3472] = {.lex_state = 96, .external_lex_state = 5}, + [3473] = {.lex_state = 96, .external_lex_state = 5}, + [3474] = {.lex_state = 18, .external_lex_state = 7}, + [3475] = {.lex_state = 18, .external_lex_state = 7}, + [3476] = {.lex_state = 18, .external_lex_state = 7}, + [3477] = {.lex_state = 18, .external_lex_state = 2}, + [3478] = {.lex_state = 18, .external_lex_state = 7}, + [3479] = {.lex_state = 96, .external_lex_state = 5}, [3480] = {.lex_state = 96, .external_lex_state = 2}, - [3481] = {.lex_state = 96, .external_lex_state = 5}, - [3482] = {.lex_state = 18, .external_lex_state = 2}, - [3483] = {.lex_state = 18, .external_lex_state = 7}, - [3484] = {.lex_state = 96, .external_lex_state = 5}, - [3485] = {.lex_state = 18, .external_lex_state = 2}, + [3481] = {.lex_state = 14, .external_lex_state = 2}, + [3482] = {.lex_state = 96, .external_lex_state = 5}, + [3483] = {.lex_state = 18, .external_lex_state = 2}, + [3484] = {.lex_state = 96, .external_lex_state = 2}, + [3485] = {.lex_state = 18, .external_lex_state = 7}, [3486] = {.lex_state = 96, .external_lex_state = 2}, - [3487] = {.lex_state = 18, .external_lex_state = 2}, + [3487] = {.lex_state = 96, .external_lex_state = 2}, [3488] = {.lex_state = 18, .external_lex_state = 7}, - [3489] = {.lex_state = 18, .external_lex_state = 7}, + [3489] = {.lex_state = 96, .external_lex_state = 2}, [3490] = {.lex_state = 18, .external_lex_state = 7}, - [3491] = {.lex_state = 18, .external_lex_state = 7}, + [3491] = {.lex_state = 96, .external_lex_state = 5}, [3492] = {.lex_state = 96, .external_lex_state = 2}, - [3493] = {.lex_state = 18, .external_lex_state = 2}, - [3494] = {.lex_state = 12, .external_lex_state = 2}, - [3495] = {.lex_state = 18, .external_lex_state = 7}, - [3496] = {.lex_state = 96, .external_lex_state = 2}, - [3497] = {.lex_state = 14, .external_lex_state = 2}, - [3498] = {.lex_state = 18, .external_lex_state = 2}, + [3493] = {.lex_state = 96, .external_lex_state = 2}, + [3494] = {.lex_state = 14, .external_lex_state = 2}, + [3495] = {.lex_state = 12, .external_lex_state = 2}, + [3496] = {.lex_state = 96, .external_lex_state = 6}, + [3497] = {.lex_state = 18, .external_lex_state = 2}, + [3498] = {.lex_state = 14, .external_lex_state = 2}, [3499] = {.lex_state = 18, .external_lex_state = 2}, - [3500] = {.lex_state = 18, .external_lex_state = 7}, - [3501] = {.lex_state = 96, .external_lex_state = 6}, - [3502] = {.lex_state = 96, .external_lex_state = 5}, - [3503] = {.lex_state = 96, .external_lex_state = 5}, + [3500] = {.lex_state = 96, .external_lex_state = 5}, + [3501] = {.lex_state = 96, .external_lex_state = 2}, + [3502] = {.lex_state = 18, .external_lex_state = 2}, + [3503] = {.lex_state = 96, .external_lex_state = 2}, [3504] = {.lex_state = 96, .external_lex_state = 2}, - [3505] = {.lex_state = 96, .external_lex_state = 2}, - [3506] = {.lex_state = 14, .external_lex_state = 2}, + [3505] = {.lex_state = 18, .external_lex_state = 2}, + [3506] = {.lex_state = 96, .external_lex_state = 2}, [3507] = {.lex_state = 18, .external_lex_state = 7}, [3508] = {.lex_state = 18, .external_lex_state = 2}, - [3509] = {.lex_state = 96, .external_lex_state = 2}, - [3510] = {.lex_state = 14, .external_lex_state = 2}, + [3509] = {.lex_state = 18, .external_lex_state = 2}, + [3510] = {.lex_state = 18, .external_lex_state = 2}, [3511] = {.lex_state = 96, .external_lex_state = 2}, [3512] = {.lex_state = 12, .external_lex_state = 2}, - [3513] = {.lex_state = 15, .external_lex_state = 2}, - [3514] = {.lex_state = 96, .external_lex_state = 2}, + [3513] = {.lex_state = 96, .external_lex_state = 2}, + [3514] = {.lex_state = 15, .external_lex_state = 2}, [3515] = {.lex_state = 96, .external_lex_state = 5}, [3516] = {.lex_state = 96, .external_lex_state = 5}, [3517] = {.lex_state = 96, .external_lex_state = 5}, @@ -16773,23 +16773,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3538] = {.lex_state = 96, .external_lex_state = 5}, [3539] = {.lex_state = 96, .external_lex_state = 5}, [3540] = {.lex_state = 96, .external_lex_state = 5}, - [3541] = {.lex_state = 96, .external_lex_state = 5}, - [3542] = {.lex_state = 15, .external_lex_state = 2}, + [3541] = {.lex_state = 15, .external_lex_state = 2}, + [3542] = {.lex_state = 96, .external_lex_state = 5}, [3543] = {.lex_state = 96, .external_lex_state = 5}, [3544] = {.lex_state = 96, .external_lex_state = 2}, [3545] = {.lex_state = 96, .external_lex_state = 2}, [3546] = {.lex_state = 96, .external_lex_state = 2}, - [3547] = {.lex_state = 96, .external_lex_state = 5}, - [3548] = {.lex_state = 96, .external_lex_state = 2}, + [3547] = {.lex_state = 96, .external_lex_state = 2}, + [3548] = {.lex_state = 12, .external_lex_state = 2}, [3549] = {.lex_state = 12, .external_lex_state = 2}, [3550] = {.lex_state = 96, .external_lex_state = 5}, - [3551] = {.lex_state = 12, .external_lex_state = 2}, + [3551] = {.lex_state = 96, .external_lex_state = 5}, [3552] = {.lex_state = 12, .external_lex_state = 2}, [3553] = {.lex_state = 96, .external_lex_state = 2}, [3554] = {.lex_state = 96, .external_lex_state = 5}, [3555] = {.lex_state = 96, .external_lex_state = 5}, - [3556] = {.lex_state = 96, .external_lex_state = 5}, - [3557] = {.lex_state = 15, .external_lex_state = 2}, + [3556] = {.lex_state = 15, .external_lex_state = 2}, + [3557] = {.lex_state = 96, .external_lex_state = 5}, [3558] = {.lex_state = 96, .external_lex_state = 5}, [3559] = {.lex_state = 96, .external_lex_state = 5}, [3560] = {.lex_state = 96, .external_lex_state = 5}, @@ -16804,120 +16804,120 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3569] = {.lex_state = 96, .external_lex_state = 2}, [3570] = {.lex_state = 96, .external_lex_state = 5}, [3571] = {.lex_state = 96, .external_lex_state = 2}, - [3572] = {.lex_state = 96, .external_lex_state = 5}, - [3573] = {.lex_state = 96, .external_lex_state = 2}, + [3572] = {.lex_state = 96, .external_lex_state = 2}, + [3573] = {.lex_state = 96, .external_lex_state = 5}, [3574] = {.lex_state = 96, .external_lex_state = 2}, [3575] = {.lex_state = 96, .external_lex_state = 2}, [3576] = {.lex_state = 96, .external_lex_state = 2}, [3577] = {.lex_state = 96, .external_lex_state = 5}, [3578] = {.lex_state = 96, .external_lex_state = 5}, - [3579] = {.lex_state = 96, .external_lex_state = 5}, + [3579] = {.lex_state = 96, .external_lex_state = 2}, [3580] = {.lex_state = 96, .external_lex_state = 5}, - [3581] = {.lex_state = 96, .external_lex_state = 2}, - [3582] = {.lex_state = 96, .external_lex_state = 5}, + [3581] = {.lex_state = 96, .external_lex_state = 5}, + [3582] = {.lex_state = 96, .external_lex_state = 2}, [3583] = {.lex_state = 96, .external_lex_state = 5}, [3584] = {.lex_state = 96, .external_lex_state = 5}, [3585] = {.lex_state = 96, .external_lex_state = 5}, [3586] = {.lex_state = 96, .external_lex_state = 5}, - [3587] = {.lex_state = 96, .external_lex_state = 2}, + [3587] = {.lex_state = 96, .external_lex_state = 5}, [3588] = {.lex_state = 96, .external_lex_state = 5}, [3589] = {.lex_state = 96, .external_lex_state = 5}, [3590] = {.lex_state = 96, .external_lex_state = 5}, [3591] = {.lex_state = 96, .external_lex_state = 5}, [3592] = {.lex_state = 96, .external_lex_state = 2}, - [3593] = {.lex_state = 12, .external_lex_state = 2}, - [3594] = {.lex_state = 15, .external_lex_state = 2}, + [3593] = {.lex_state = 96, .external_lex_state = 2}, + [3594] = {.lex_state = 12, .external_lex_state = 2}, [3595] = {.lex_state = 96, .external_lex_state = 5}, - [3596] = {.lex_state = 96, .external_lex_state = 5}, - [3597] = {.lex_state = 15, .external_lex_state = 2}, - [3598] = {.lex_state = 96, .external_lex_state = 2}, - [3599] = {.lex_state = 96, .external_lex_state = 5}, - [3600] = {.lex_state = 96, .external_lex_state = 5}, + [3596] = {.lex_state = 15, .external_lex_state = 2}, + [3597] = {.lex_state = 12, .external_lex_state = 2}, + [3598] = {.lex_state = 96, .external_lex_state = 5}, + [3599] = {.lex_state = 15, .external_lex_state = 2}, + [3600] = {.lex_state = 96, .external_lex_state = 2}, [3601] = {.lex_state = 96, .external_lex_state = 5}, [3602] = {.lex_state = 96, .external_lex_state = 5}, - [3603] = {.lex_state = 15, .external_lex_state = 2}, - [3604] = {.lex_state = 15, .external_lex_state = 2}, - [3605] = {.lex_state = 96, .external_lex_state = 2}, + [3603] = {.lex_state = 96, .external_lex_state = 5}, + [3604] = {.lex_state = 96, .external_lex_state = 5}, + [3605] = {.lex_state = 15, .external_lex_state = 2}, [3606] = {.lex_state = 96, .external_lex_state = 2}, [3607] = {.lex_state = 96, .external_lex_state = 2}, - [3608] = {.lex_state = 96, .external_lex_state = 2}, - [3609] = {.lex_state = 96, .external_lex_state = 5}, - [3610] = {.lex_state = 96, .external_lex_state = 5}, - [3611] = {.lex_state = 96, .external_lex_state = 2}, + [3608] = {.lex_state = 15, .external_lex_state = 2}, + [3609] = {.lex_state = 96, .external_lex_state = 2}, + [3610] = {.lex_state = 96, .external_lex_state = 2}, + [3611] = {.lex_state = 96, .external_lex_state = 5}, [3612] = {.lex_state = 96, .external_lex_state = 5}, - [3613] = {.lex_state = 96, .external_lex_state = 5}, - [3614] = {.lex_state = 15, .external_lex_state = 2}, - [3615] = {.lex_state = 15, .external_lex_state = 2}, + [3613] = {.lex_state = 96, .external_lex_state = 2}, + [3614] = {.lex_state = 96, .external_lex_state = 5}, + [3615] = {.lex_state = 96, .external_lex_state = 5}, [3616] = {.lex_state = 15, .external_lex_state = 2}, - [3617] = {.lex_state = 12, .external_lex_state = 2}, - [3618] = {.lex_state = 96, .external_lex_state = 5}, - [3619] = {.lex_state = 96, .external_lex_state = 2}, - [3620] = {.lex_state = 15, .external_lex_state = 2}, - [3621] = {.lex_state = 96, .external_lex_state = 5}, + [3617] = {.lex_state = 15, .external_lex_state = 2}, + [3618] = {.lex_state = 15, .external_lex_state = 2}, + [3619] = {.lex_state = 12, .external_lex_state = 2}, + [3620] = {.lex_state = 96, .external_lex_state = 5}, + [3621] = {.lex_state = 96, .external_lex_state = 2}, [3622] = {.lex_state = 15, .external_lex_state = 2}, [3623] = {.lex_state = 15, .external_lex_state = 2}, - [3624] = {.lex_state = 96, .external_lex_state = 2}, - [3625] = {.lex_state = 96, .external_lex_state = 5}, + [3624] = {.lex_state = 15, .external_lex_state = 2}, + [3625] = {.lex_state = 15, .external_lex_state = 2}, [3626] = {.lex_state = 96, .external_lex_state = 2}, - [3627] = {.lex_state = 12, .external_lex_state = 2}, + [3627] = {.lex_state = 96, .external_lex_state = 5}, [3628] = {.lex_state = 96, .external_lex_state = 2}, [3629] = {.lex_state = 12, .external_lex_state = 2}, - [3630] = {.lex_state = 12, .external_lex_state = 2}, - [3631] = {.lex_state = 96, .external_lex_state = 5}, - [3632] = {.lex_state = 96, .external_lex_state = 5}, - [3633] = {.lex_state = 96, .external_lex_state = 2}, - [3634] = {.lex_state = 15, .external_lex_state = 2}, + [3630] = {.lex_state = 96, .external_lex_state = 2}, + [3631] = {.lex_state = 12, .external_lex_state = 2}, + [3632] = {.lex_state = 96, .external_lex_state = 2}, + [3633] = {.lex_state = 12, .external_lex_state = 2}, + [3634] = {.lex_state = 96, .external_lex_state = 2}, [3635] = {.lex_state = 96, .external_lex_state = 5}, [3636] = {.lex_state = 96, .external_lex_state = 5}, - [3637] = {.lex_state = 96, .external_lex_state = 5}, + [3637] = {.lex_state = 15, .external_lex_state = 2}, [3638] = {.lex_state = 96, .external_lex_state = 5}, - [3639] = {.lex_state = 96, .external_lex_state = 2}, + [3639] = {.lex_state = 96, .external_lex_state = 5}, [3640] = {.lex_state = 96, .external_lex_state = 5}, - [3641] = {.lex_state = 96, .external_lex_state = 2}, - [3642] = {.lex_state = 96, .external_lex_state = 5}, - [3643] = {.lex_state = 96, .external_lex_state = 2}, - [3644] = {.lex_state = 96, .external_lex_state = 5}, - [3645] = {.lex_state = 96, .external_lex_state = 2}, + [3641] = {.lex_state = 96, .external_lex_state = 5}, + [3642] = {.lex_state = 96, .external_lex_state = 2}, + [3643] = {.lex_state = 96, .external_lex_state = 5}, + [3644] = {.lex_state = 96, .external_lex_state = 2}, + [3645] = {.lex_state = 96, .external_lex_state = 5}, [3646] = {.lex_state = 96, .external_lex_state = 2}, [3647] = {.lex_state = 96, .external_lex_state = 5}, - [3648] = {.lex_state = 96, .external_lex_state = 5}, + [3648] = {.lex_state = 96, .external_lex_state = 2}, [3649] = {.lex_state = 96, .external_lex_state = 2}, - [3650] = {.lex_state = 96, .external_lex_state = 2}, - [3651] = {.lex_state = 96, .external_lex_state = 2}, + [3650] = {.lex_state = 96, .external_lex_state = 5}, + [3651] = {.lex_state = 96, .external_lex_state = 5}, [3652] = {.lex_state = 96, .external_lex_state = 2}, [3653] = {.lex_state = 96, .external_lex_state = 2}, - [3654] = {.lex_state = 96, .external_lex_state = 5}, - [3655] = {.lex_state = 96, .external_lex_state = 5}, - [3656] = {.lex_state = 96, .external_lex_state = 2}, - [3657] = {.lex_state = 96, .external_lex_state = 2}, - [3658] = {.lex_state = 12, .external_lex_state = 2}, + [3654] = {.lex_state = 96, .external_lex_state = 2}, + [3655] = {.lex_state = 96, .external_lex_state = 2}, + [3656] = {.lex_state = 12, .external_lex_state = 2}, + [3657] = {.lex_state = 96, .external_lex_state = 5}, + [3658] = {.lex_state = 96, .external_lex_state = 2}, [3659] = {.lex_state = 96, .external_lex_state = 2}, - [3660] = {.lex_state = 96, .external_lex_state = 2}, + [3660] = {.lex_state = 12, .external_lex_state = 2}, [3661] = {.lex_state = 96, .external_lex_state = 5}, - [3662] = {.lex_state = 96, .external_lex_state = 5}, - [3663] = {.lex_state = 12, .external_lex_state = 2}, + [3662] = {.lex_state = 96, .external_lex_state = 2}, + [3663] = {.lex_state = 96, .external_lex_state = 5}, [3664] = {.lex_state = 96, .external_lex_state = 5}, - [3665] = {.lex_state = 96, .external_lex_state = 5}, + [3665] = {.lex_state = 12, .external_lex_state = 2}, [3666] = {.lex_state = 96, .external_lex_state = 5}, [3667] = {.lex_state = 96, .external_lex_state = 5}, [3668] = {.lex_state = 96, .external_lex_state = 5}, [3669] = {.lex_state = 96, .external_lex_state = 5}, [3670] = {.lex_state = 96, .external_lex_state = 5}, [3671] = {.lex_state = 96, .external_lex_state = 5}, - [3672] = {.lex_state = 96, .external_lex_state = 2}, + [3672] = {.lex_state = 96, .external_lex_state = 5}, [3673] = {.lex_state = 96, .external_lex_state = 5}, - [3674] = {.lex_state = 96, .external_lex_state = 5}, + [3674] = {.lex_state = 96, .external_lex_state = 2}, [3675] = {.lex_state = 96, .external_lex_state = 5}, [3676] = {.lex_state = 96, .external_lex_state = 5}, [3677] = {.lex_state = 96, .external_lex_state = 5}, [3678] = {.lex_state = 96, .external_lex_state = 5}, - [3679] = {.lex_state = 12, .external_lex_state = 2}, + [3679] = {.lex_state = 96, .external_lex_state = 5}, [3680] = {.lex_state = 96, .external_lex_state = 5}, [3681] = {.lex_state = 96, .external_lex_state = 5}, [3682] = {.lex_state = 96, .external_lex_state = 5}, [3683] = {.lex_state = 96, .external_lex_state = 5}, [3684] = {.lex_state = 96, .external_lex_state = 5}, - [3685] = {.lex_state = 12, .external_lex_state = 2}, + [3685] = {.lex_state = 96, .external_lex_state = 5}, [3686] = {.lex_state = 96, .external_lex_state = 5}, [3687] = {.lex_state = 96, .external_lex_state = 5}, [3688] = {.lex_state = 96, .external_lex_state = 5}, @@ -16927,8 +16927,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3692] = {.lex_state = 96, .external_lex_state = 5}, [3693] = {.lex_state = 96, .external_lex_state = 5}, [3694] = {.lex_state = 96, .external_lex_state = 5}, - [3695] = {.lex_state = 12, .external_lex_state = 2}, - [3696] = {.lex_state = 96, .external_lex_state = 5}, + [3695] = {.lex_state = 96, .external_lex_state = 5}, + [3696] = {.lex_state = 12, .external_lex_state = 2}, [3697] = {.lex_state = 96, .external_lex_state = 5}, [3698] = {.lex_state = 96, .external_lex_state = 5}, [3699] = {.lex_state = 96, .external_lex_state = 5}, @@ -16986,271 +16986,271 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3751] = {.lex_state = 96, .external_lex_state = 5}, [3752] = {.lex_state = 96, .external_lex_state = 5}, [3753] = {.lex_state = 96, .external_lex_state = 5}, - [3754] = {.lex_state = 15, .external_lex_state = 2}, + [3754] = {.lex_state = 96, .external_lex_state = 5}, [3755] = {.lex_state = 12, .external_lex_state = 2}, - [3756] = {.lex_state = 96, .external_lex_state = 5}, - [3757] = {.lex_state = 96, .external_lex_state = 2}, - [3758] = {.lex_state = 12, .external_lex_state = 2}, + [3756] = {.lex_state = 12, .external_lex_state = 2}, + [3757] = {.lex_state = 96, .external_lex_state = 5}, + [3758] = {.lex_state = 96, .external_lex_state = 5}, [3759] = {.lex_state = 96, .external_lex_state = 5}, [3760] = {.lex_state = 12, .external_lex_state = 2}, [3761] = {.lex_state = 12, .external_lex_state = 2}, - [3762] = {.lex_state = 12, .external_lex_state = 2}, - [3763] = {.lex_state = 96, .external_lex_state = 5}, - [3764] = {.lex_state = 96, .external_lex_state = 5}, - [3765] = {.lex_state = 12, .external_lex_state = 2}, - [3766] = {.lex_state = 96, .external_lex_state = 5}, + [3762] = {.lex_state = 96, .external_lex_state = 2}, + [3763] = {.lex_state = 12, .external_lex_state = 2}, + [3764] = {.lex_state = 96, .external_lex_state = 6}, + [3765] = {.lex_state = 96, .external_lex_state = 6}, + [3766] = {.lex_state = 12, .external_lex_state = 2}, [3767] = {.lex_state = 96, .external_lex_state = 5}, - [3768] = {.lex_state = 12, .external_lex_state = 2}, + [3768] = {.lex_state = 96, .external_lex_state = 5}, [3769] = {.lex_state = 96, .external_lex_state = 2}, - [3770] = {.lex_state = 96, .external_lex_state = 2}, + [3770] = {.lex_state = 12, .external_lex_state = 2}, [3771] = {.lex_state = 12, .external_lex_state = 2}, - [3772] = {.lex_state = 96, .external_lex_state = 6}, - [3773] = {.lex_state = 96, .external_lex_state = 2}, - [3774] = {.lex_state = 96, .external_lex_state = 2}, - [3775] = {.lex_state = 12, .external_lex_state = 2}, - [3776] = {.lex_state = 96, .external_lex_state = 6}, - [3777] = {.lex_state = 12, .external_lex_state = 2}, - [3778] = {.lex_state = 96, .external_lex_state = 5}, + [3772] = {.lex_state = 96, .external_lex_state = 2}, + [3773] = {.lex_state = 12, .external_lex_state = 2}, + [3774] = {.lex_state = 96, .external_lex_state = 6}, + [3775] = {.lex_state = 96, .external_lex_state = 2}, + [3776] = {.lex_state = 12, .external_lex_state = 2}, + [3777] = {.lex_state = 96, .external_lex_state = 2}, + [3778] = {.lex_state = 96, .external_lex_state = 6}, [3779] = {.lex_state = 96, .external_lex_state = 2}, [3780] = {.lex_state = 96, .external_lex_state = 5}, [3781] = {.lex_state = 96, .external_lex_state = 2}, - [3782] = {.lex_state = 96, .external_lex_state = 2}, - [3783] = {.lex_state = 96, .external_lex_state = 5}, - [3784] = {.lex_state = 96, .external_lex_state = 5}, - [3785] = {.lex_state = 96, .external_lex_state = 2}, - [3786] = {.lex_state = 12, .external_lex_state = 2}, - [3787] = {.lex_state = 96, .external_lex_state = 5}, + [3782] = {.lex_state = 96, .external_lex_state = 5}, + [3783] = {.lex_state = 96, .external_lex_state = 2}, + [3784] = {.lex_state = 96, .external_lex_state = 2}, + [3785] = {.lex_state = 96, .external_lex_state = 5}, + [3786] = {.lex_state = 96, .external_lex_state = 5}, + [3787] = {.lex_state = 18, .external_lex_state = 7}, [3788] = {.lex_state = 96, .external_lex_state = 2}, - [3789] = {.lex_state = 18, .external_lex_state = 7}, - [3790] = {.lex_state = 96, .external_lex_state = 6}, - [3791] = {.lex_state = 96, .external_lex_state = 2}, - [3792] = {.lex_state = 12, .external_lex_state = 2}, + [3789] = {.lex_state = 96, .external_lex_state = 2}, + [3790] = {.lex_state = 96, .external_lex_state = 5}, + [3791] = {.lex_state = 12, .external_lex_state = 2}, + [3792] = {.lex_state = 96, .external_lex_state = 6}, [3793] = {.lex_state = 96, .external_lex_state = 2}, - [3794] = {.lex_state = 96, .external_lex_state = 2}, - [3795] = {.lex_state = 96, .external_lex_state = 6}, - [3796] = {.lex_state = 12, .external_lex_state = 2}, - [3797] = {.lex_state = 12, .external_lex_state = 2}, + [3794] = {.lex_state = 12, .external_lex_state = 2}, + [3795] = {.lex_state = 96, .external_lex_state = 2}, + [3796] = {.lex_state = 96, .external_lex_state = 5}, + [3797] = {.lex_state = 96, .external_lex_state = 6}, [3798] = {.lex_state = 12, .external_lex_state = 2}, [3799] = {.lex_state = 12, .external_lex_state = 2}, [3800] = {.lex_state = 12, .external_lex_state = 2}, [3801] = {.lex_state = 96, .external_lex_state = 2}, - [3802] = {.lex_state = 96, .external_lex_state = 6}, - [3803] = {.lex_state = 96, .external_lex_state = 6}, - [3804] = {.lex_state = 96, .external_lex_state = 2}, - [3805] = {.lex_state = 12, .external_lex_state = 2}, - [3806] = {.lex_state = 96, .external_lex_state = 5}, - [3807] = {.lex_state = 96, .external_lex_state = 5}, + [3802] = {.lex_state = 12, .external_lex_state = 2}, + [3803] = {.lex_state = 12, .external_lex_state = 2}, + [3804] = {.lex_state = 96, .external_lex_state = 6}, + [3805] = {.lex_state = 96, .external_lex_state = 5}, + [3806] = {.lex_state = 96, .external_lex_state = 6}, + [3807] = {.lex_state = 12, .external_lex_state = 2}, [3808] = {.lex_state = 96, .external_lex_state = 2}, - [3809] = {.lex_state = 96, .external_lex_state = 5}, - [3810] = {.lex_state = 96, .external_lex_state = 2}, - [3811] = {.lex_state = 96, .external_lex_state = 5}, + [3809] = {.lex_state = 96, .external_lex_state = 2}, + [3810] = {.lex_state = 96, .external_lex_state = 5}, + [3811] = {.lex_state = 96, .external_lex_state = 2}, [3812] = {.lex_state = 96, .external_lex_state = 2}, [3813] = {.lex_state = 96, .external_lex_state = 5}, [3814] = {.lex_state = 96, .external_lex_state = 2}, - [3815] = {.lex_state = 96, .external_lex_state = 6}, + [3815] = {.lex_state = 96, .external_lex_state = 5}, [3816] = {.lex_state = 96, .external_lex_state = 6}, - [3817] = {.lex_state = 12, .external_lex_state = 2}, - [3818] = {.lex_state = 96, .external_lex_state = 6}, - [3819] = {.lex_state = 96, .external_lex_state = 2}, - [3820] = {.lex_state = 96, .external_lex_state = 5}, + [3817] = {.lex_state = 96, .external_lex_state = 5}, + [3818] = {.lex_state = 12, .external_lex_state = 2}, + [3819] = {.lex_state = 96, .external_lex_state = 6}, + [3820] = {.lex_state = 96, .external_lex_state = 6}, [3821] = {.lex_state = 12, .external_lex_state = 2}, [3822] = {.lex_state = 96, .external_lex_state = 5}, - [3823] = {.lex_state = 96, .external_lex_state = 2}, - [3824] = {.lex_state = 12, .external_lex_state = 2}, - [3825] = {.lex_state = 12, .external_lex_state = 2}, - [3826] = {.lex_state = 96, .external_lex_state = 5}, + [3823] = {.lex_state = 12, .external_lex_state = 2}, + [3824] = {.lex_state = 96, .external_lex_state = 6}, + [3825] = {.lex_state = 96, .external_lex_state = 2}, + [3826] = {.lex_state = 96, .external_lex_state = 2}, [3827] = {.lex_state = 96, .external_lex_state = 6}, [3828] = {.lex_state = 96, .external_lex_state = 6}, [3829] = {.lex_state = 96, .external_lex_state = 5}, - [3830] = {.lex_state = 96, .external_lex_state = 6}, + [3830] = {.lex_state = 96, .external_lex_state = 2}, [3831] = {.lex_state = 96, .external_lex_state = 5}, - [3832] = {.lex_state = 96, .external_lex_state = 2}, - [3833] = {.lex_state = 96, .external_lex_state = 5}, + [3832] = {.lex_state = 96, .external_lex_state = 6}, + [3833] = {.lex_state = 12, .external_lex_state = 2}, [3834] = {.lex_state = 96, .external_lex_state = 6}, - [3835] = {.lex_state = 12, .external_lex_state = 2}, + [3835] = {.lex_state = 96, .external_lex_state = 5}, [3836] = {.lex_state = 96, .external_lex_state = 5}, [3837] = {.lex_state = 96, .external_lex_state = 5}, [3838] = {.lex_state = 12, .external_lex_state = 2}, - [3839] = {.lex_state = 12, .external_lex_state = 2}, + [3839] = {.lex_state = 96, .external_lex_state = 5}, [3840] = {.lex_state = 96, .external_lex_state = 2}, - [3841] = {.lex_state = 96, .external_lex_state = 2}, + [3841] = {.lex_state = 12, .external_lex_state = 2}, [3842] = {.lex_state = 96, .external_lex_state = 2}, [3843] = {.lex_state = 96, .external_lex_state = 2}, - [3844] = {.lex_state = 12, .external_lex_state = 2}, + [3844] = {.lex_state = 96, .external_lex_state = 6}, [3845] = {.lex_state = 96, .external_lex_state = 2}, [3846] = {.lex_state = 96, .external_lex_state = 2}, [3847] = {.lex_state = 96, .external_lex_state = 2}, - [3848] = {.lex_state = 96, .external_lex_state = 2}, + [3848] = {.lex_state = 12, .external_lex_state = 2}, [3849] = {.lex_state = 96, .external_lex_state = 2}, - [3850] = {.lex_state = 96, .external_lex_state = 6}, + [3850] = {.lex_state = 96, .external_lex_state = 5}, [3851] = {.lex_state = 12, .external_lex_state = 2}, [3852] = {.lex_state = 96, .external_lex_state = 5}, [3853] = {.lex_state = 96, .external_lex_state = 5}, [3854] = {.lex_state = 96, .external_lex_state = 5}, - [3855] = {.lex_state = 96, .external_lex_state = 5}, - [3856] = {.lex_state = 12, .external_lex_state = 2}, + [3855] = {.lex_state = 96, .external_lex_state = 2}, + [3856] = {.lex_state = 18, .external_lex_state = 7}, [3857] = {.lex_state = 12, .external_lex_state = 2}, - [3858] = {.lex_state = 12, .external_lex_state = 2}, + [3858] = {.lex_state = 96, .external_lex_state = 6}, [3859] = {.lex_state = 12, .external_lex_state = 2}, - [3860] = {.lex_state = 96, .external_lex_state = 6}, + [3860] = {.lex_state = 12, .external_lex_state = 2}, [3861] = {.lex_state = 12, .external_lex_state = 2}, [3862] = {.lex_state = 96, .external_lex_state = 6}, [3863] = {.lex_state = 96, .external_lex_state = 6}, [3864] = {.lex_state = 12, .external_lex_state = 2}, - [3865] = {.lex_state = 12, .external_lex_state = 2}, + [3865] = {.lex_state = 18, .external_lex_state = 7}, [3866] = {.lex_state = 12, .external_lex_state = 2}, [3867] = {.lex_state = 96, .external_lex_state = 6}, [3868] = {.lex_state = 12, .external_lex_state = 2}, [3869] = {.lex_state = 96, .external_lex_state = 6}, - [3870] = {.lex_state = 18, .external_lex_state = 7}, - [3871] = {.lex_state = 96, .external_lex_state = 2}, - [3872] = {.lex_state = 12, .external_lex_state = 2}, - [3873] = {.lex_state = 12, .external_lex_state = 2}, + [3870] = {.lex_state = 12, .external_lex_state = 2}, + [3871] = {.lex_state = 12, .external_lex_state = 2}, + [3872] = {.lex_state = 96, .external_lex_state = 2}, + [3873] = {.lex_state = 96, .external_lex_state = 6}, [3874] = {.lex_state = 96, .external_lex_state = 6}, - [3875] = {.lex_state = 96, .external_lex_state = 6}, - [3876] = {.lex_state = 18, .external_lex_state = 7}, + [3875] = {.lex_state = 12, .external_lex_state = 2}, + [3876] = {.lex_state = 12, .external_lex_state = 2}, [3877] = {.lex_state = 96, .external_lex_state = 2}, - [3878] = {.lex_state = 96, .external_lex_state = 2}, - [3879] = {.lex_state = 12, .external_lex_state = 2}, - [3880] = {.lex_state = 96, .external_lex_state = 6}, + [3878] = {.lex_state = 12, .external_lex_state = 2}, + [3879] = {.lex_state = 96, .external_lex_state = 6}, + [3880] = {.lex_state = 96, .external_lex_state = 2}, [3881] = {.lex_state = 96, .external_lex_state = 2}, - [3882] = {.lex_state = 96, .external_lex_state = 6}, + [3882] = {.lex_state = 96, .external_lex_state = 2}, [3883] = {.lex_state = 96, .external_lex_state = 2}, - [3884] = {.lex_state = 96, .external_lex_state = 6}, - [3885] = {.lex_state = 12, .external_lex_state = 2}, - [3886] = {.lex_state = 96, .external_lex_state = 6}, - [3887] = {.lex_state = 12, .external_lex_state = 2}, - [3888] = {.lex_state = 96, .external_lex_state = 2}, + [3884] = {.lex_state = 12, .external_lex_state = 2}, + [3885] = {.lex_state = 96, .external_lex_state = 2}, + [3886] = {.lex_state = 12, .external_lex_state = 2}, + [3887] = {.lex_state = 96, .external_lex_state = 6}, + [3888] = {.lex_state = 12, .external_lex_state = 2}, [3889] = {.lex_state = 12, .external_lex_state = 2}, [3890] = {.lex_state = 96, .external_lex_state = 2}, [3891] = {.lex_state = 12, .external_lex_state = 2}, [3892] = {.lex_state = 18, .external_lex_state = 7}, [3893] = {.lex_state = 96, .external_lex_state = 2}, - [3894] = {.lex_state = 12, .external_lex_state = 2}, - [3895] = {.lex_state = 96, .external_lex_state = 2}, + [3894] = {.lex_state = 18, .external_lex_state = 7}, + [3895] = {.lex_state = 12, .external_lex_state = 2}, [3896] = {.lex_state = 12, .external_lex_state = 2}, - [3897] = {.lex_state = 12, .external_lex_state = 2}, - [3898] = {.lex_state = 12, .external_lex_state = 2}, - [3899] = {.lex_state = 12, .external_lex_state = 2}, - [3900] = {.lex_state = 96, .external_lex_state = 2}, - [3901] = {.lex_state = 18, .external_lex_state = 7}, - [3902] = {.lex_state = 96, .external_lex_state = 5}, - [3903] = {.lex_state = 96, .external_lex_state = 2}, + [3897] = {.lex_state = 96, .external_lex_state = 2}, + [3898] = {.lex_state = 96, .external_lex_state = 2}, + [3899] = {.lex_state = 96, .external_lex_state = 5}, + [3900] = {.lex_state = 12, .external_lex_state = 2}, + [3901] = {.lex_state = 12, .external_lex_state = 2}, + [3902] = {.lex_state = 96, .external_lex_state = 2}, + [3903] = {.lex_state = 12, .external_lex_state = 2}, [3904] = {.lex_state = 12, .external_lex_state = 2}, [3905] = {.lex_state = 96, .external_lex_state = 2}, - [3906] = {.lex_state = 96, .external_lex_state = 6}, + [3906] = {.lex_state = 96, .external_lex_state = 5}, [3907] = {.lex_state = 96, .external_lex_state = 5}, [3908] = {.lex_state = 96, .external_lex_state = 5}, - [3909] = {.lex_state = 96, .external_lex_state = 5}, - [3910] = {.lex_state = 96, .external_lex_state = 2}, + [3909] = {.lex_state = 96, .external_lex_state = 2}, + [3910] = {.lex_state = 96, .external_lex_state = 5}, [3911] = {.lex_state = 96, .external_lex_state = 5}, [3912] = {.lex_state = 96, .external_lex_state = 5}, [3913] = {.lex_state = 96, .external_lex_state = 5}, [3914] = {.lex_state = 96, .external_lex_state = 5}, [3915] = {.lex_state = 96, .external_lex_state = 5}, [3916] = {.lex_state = 96, .external_lex_state = 5}, - [3917] = {.lex_state = 96, .external_lex_state = 5}, + [3917] = {.lex_state = 96, .external_lex_state = 2}, [3918] = {.lex_state = 96, .external_lex_state = 5}, [3919] = {.lex_state = 96, .external_lex_state = 5}, [3920] = {.lex_state = 96, .external_lex_state = 2}, - [3921] = {.lex_state = 96, .external_lex_state = 2}, - [3922] = {.lex_state = 18, .external_lex_state = 8}, + [3921] = {.lex_state = 18, .external_lex_state = 8}, + [3922] = {.lex_state = 96, .external_lex_state = 5}, [3923] = {.lex_state = 96, .external_lex_state = 5}, [3924] = {.lex_state = 96, .external_lex_state = 5}, - [3925] = {.lex_state = 96, .external_lex_state = 5}, + [3925] = {.lex_state = 96, .external_lex_state = 2}, [3926] = {.lex_state = 96, .external_lex_state = 2}, - [3927] = {.lex_state = 96, .external_lex_state = 2}, + [3927] = {.lex_state = 96, .external_lex_state = 5}, [3928] = {.lex_state = 96, .external_lex_state = 2}, [3929] = {.lex_state = 96, .external_lex_state = 5}, - [3930] = {.lex_state = 96, .external_lex_state = 2}, - [3931] = {.lex_state = 96, .external_lex_state = 5}, + [3930] = {.lex_state = 96, .external_lex_state = 5}, + [3931] = {.lex_state = 96, .external_lex_state = 2}, [3932] = {.lex_state = 96, .external_lex_state = 6}, [3933] = {.lex_state = 96, .external_lex_state = 5}, [3934] = {.lex_state = 96, .external_lex_state = 5}, - [3935] = {.lex_state = 96, .external_lex_state = 5}, + [3935] = {.lex_state = 96, .external_lex_state = 2}, [3936] = {.lex_state = 18, .external_lex_state = 8}, - [3937] = {.lex_state = 96, .external_lex_state = 2}, - [3938] = {.lex_state = 18, .external_lex_state = 8}, + [3937] = {.lex_state = 96, .external_lex_state = 5}, + [3938] = {.lex_state = 4, .external_lex_state = 2}, [3939] = {.lex_state = 96, .external_lex_state = 5}, - [3940] = {.lex_state = 4, .external_lex_state = 2}, + [3940] = {.lex_state = 96, .external_lex_state = 5}, [3941] = {.lex_state = 96, .external_lex_state = 5}, [3942] = {.lex_state = 96, .external_lex_state = 5}, [3943] = {.lex_state = 96, .external_lex_state = 5}, [3944] = {.lex_state = 96, .external_lex_state = 5}, [3945] = {.lex_state = 96, .external_lex_state = 5}, - [3946] = {.lex_state = 96, .external_lex_state = 5}, + [3946] = {.lex_state = 96, .external_lex_state = 6}, [3947] = {.lex_state = 96, .external_lex_state = 5}, - [3948] = {.lex_state = 96, .external_lex_state = 6}, + [3948] = {.lex_state = 96, .external_lex_state = 5}, [3949] = {.lex_state = 96, .external_lex_state = 5}, - [3950] = {.lex_state = 96, .external_lex_state = 5}, - [3951] = {.lex_state = 12, .external_lex_state = 2}, - [3952] = {.lex_state = 96, .external_lex_state = 6}, + [3950] = {.lex_state = 12, .external_lex_state = 2}, + [3951] = {.lex_state = 96, .external_lex_state = 6}, + [3952] = {.lex_state = 96, .external_lex_state = 5}, [3953] = {.lex_state = 96, .external_lex_state = 5}, - [3954] = {.lex_state = 96, .external_lex_state = 5}, - [3955] = {.lex_state = 96, .external_lex_state = 5}, - [3956] = {.lex_state = 96, .external_lex_state = 2}, + [3954] = {.lex_state = 96, .external_lex_state = 2}, + [3955] = {.lex_state = 96, .external_lex_state = 2}, + [3956] = {.lex_state = 96, .external_lex_state = 5}, [3957] = {.lex_state = 96, .external_lex_state = 2}, - [3958] = {.lex_state = 96, .external_lex_state = 2}, - [3959] = {.lex_state = 96, .external_lex_state = 5}, - [3960] = {.lex_state = 96, .external_lex_state = 2}, + [3958] = {.lex_state = 96, .external_lex_state = 5}, + [3959] = {.lex_state = 96, .external_lex_state = 2}, + [3960] = {.lex_state = 96, .external_lex_state = 6}, [3961] = {.lex_state = 96, .external_lex_state = 6}, [3962] = {.lex_state = 96, .external_lex_state = 5}, - [3963] = {.lex_state = 96, .external_lex_state = 6}, - [3964] = {.lex_state = 96, .external_lex_state = 5}, - [3965] = {.lex_state = 96, .external_lex_state = 5}, + [3963] = {.lex_state = 96, .external_lex_state = 5}, + [3964] = {.lex_state = 12, .external_lex_state = 2}, + [3965] = {.lex_state = 12, .external_lex_state = 2}, [3966] = {.lex_state = 96, .external_lex_state = 5}, [3967] = {.lex_state = 12, .external_lex_state = 2}, - [3968] = {.lex_state = 12, .external_lex_state = 2}, - [3969] = {.lex_state = 96, .external_lex_state = 5}, - [3970] = {.lex_state = 12, .external_lex_state = 2}, - [3971] = {.lex_state = 96, .external_lex_state = 2}, + [3968] = {.lex_state = 96, .external_lex_state = 5}, + [3969] = {.lex_state = 96, .external_lex_state = 2}, + [3970] = {.lex_state = 96, .external_lex_state = 5}, + [3971] = {.lex_state = 96, .external_lex_state = 5}, [3972] = {.lex_state = 96, .external_lex_state = 5}, - [3973] = {.lex_state = 96, .external_lex_state = 5}, - [3974] = {.lex_state = 96, .external_lex_state = 6}, + [3973] = {.lex_state = 96, .external_lex_state = 6}, + [3974] = {.lex_state = 96, .external_lex_state = 5}, [3975] = {.lex_state = 96, .external_lex_state = 5}, [3976] = {.lex_state = 96, .external_lex_state = 5}, [3977] = {.lex_state = 96, .external_lex_state = 5}, - [3978] = {.lex_state = 96, .external_lex_state = 5}, + [3978] = {.lex_state = 12, .external_lex_state = 2}, [3979] = {.lex_state = 96, .external_lex_state = 5}, [3980] = {.lex_state = 96, .external_lex_state = 5}, - [3981] = {.lex_state = 12, .external_lex_state = 2}, + [3981] = {.lex_state = 96, .external_lex_state = 5}, [3982] = {.lex_state = 96, .external_lex_state = 5}, - [3983] = {.lex_state = 96, .external_lex_state = 5}, + [3983] = {.lex_state = 12, .external_lex_state = 2}, [3984] = {.lex_state = 96, .external_lex_state = 5}, [3985] = {.lex_state = 12, .external_lex_state = 2}, - [3986] = {.lex_state = 96, .external_lex_state = 5}, - [3987] = {.lex_state = 96, .external_lex_state = 5}, - [3988] = {.lex_state = 12, .external_lex_state = 2}, - [3989] = {.lex_state = 12, .external_lex_state = 2}, - [3990] = {.lex_state = 12, .external_lex_state = 2}, + [3986] = {.lex_state = 12, .external_lex_state = 2}, + [3987] = {.lex_state = 12, .external_lex_state = 2}, + [3988] = {.lex_state = 96, .external_lex_state = 5}, + [3989] = {.lex_state = 96, .external_lex_state = 5}, + [3990] = {.lex_state = 96, .external_lex_state = 5}, [3991] = {.lex_state = 96, .external_lex_state = 5}, [3992] = {.lex_state = 96, .external_lex_state = 5}, [3993] = {.lex_state = 96, .external_lex_state = 5}, - [3994] = {.lex_state = 96, .external_lex_state = 5}, - [3995] = {.lex_state = 96, .external_lex_state = 5}, - [3996] = {.lex_state = 96, .external_lex_state = 2}, - [3997] = {.lex_state = 96, .external_lex_state = 2}, - [3998] = {.lex_state = 96, .external_lex_state = 2}, - [3999] = {.lex_state = 96, .external_lex_state = 5}, + [3994] = {.lex_state = 96, .external_lex_state = 2}, + [3995] = {.lex_state = 96, .external_lex_state = 2}, + [3996] = {.lex_state = 96, .external_lex_state = 5}, + [3997] = {.lex_state = 96, .external_lex_state = 5}, + [3998] = {.lex_state = 96, .external_lex_state = 5}, + [3999] = {.lex_state = 96, .external_lex_state = 2}, [4000] = {.lex_state = 96, .external_lex_state = 5}, - [4001] = {.lex_state = 96, .external_lex_state = 5}, + [4001] = {.lex_state = 12, .external_lex_state = 2}, [4002] = {.lex_state = 96, .external_lex_state = 5}, - [4003] = {.lex_state = 12, .external_lex_state = 2}, + [4003] = {.lex_state = 96, .external_lex_state = 5}, [4004] = {.lex_state = 96, .external_lex_state = 5}, - [4005] = {.lex_state = 96, .external_lex_state = 5}, + [4005] = {.lex_state = 96, .external_lex_state = 2}, [4006] = {.lex_state = 96, .external_lex_state = 5}, - [4007] = {.lex_state = 96, .external_lex_state = 2}, + [4007] = {.lex_state = 96, .external_lex_state = 5}, [4008] = {.lex_state = 96, .external_lex_state = 5}, [4009] = {.lex_state = 96, .external_lex_state = 5}, - [4010] = {.lex_state = 96, .external_lex_state = 5}, + [4010] = {.lex_state = 12, .external_lex_state = 2}, [4011] = {.lex_state = 12, .external_lex_state = 2}, [4012] = {.lex_state = 96, .external_lex_state = 6}, - [4013] = {.lex_state = 96, .external_lex_state = 5}, - [4014] = {.lex_state = 18, .external_lex_state = 8}, + [4013] = {.lex_state = 18, .external_lex_state = 8}, + [4014] = {.lex_state = 96, .external_lex_state = 5}, [4015] = {.lex_state = 12, .external_lex_state = 2}, - [4016] = {.lex_state = 96, .external_lex_state = 5}, - [4017] = {.lex_state = 12, .external_lex_state = 2}, - [4018] = {.lex_state = 96, .external_lex_state = 6}, + [4016] = {.lex_state = 12, .external_lex_state = 2}, + [4017] = {.lex_state = 96, .external_lex_state = 6}, + [4018] = {.lex_state = 96, .external_lex_state = 5}, [4019] = {.lex_state = 96, .external_lex_state = 5}, [4020] = {.lex_state = 96, .external_lex_state = 5}, [4021] = {.lex_state = 18, .external_lex_state = 8}, @@ -17260,18 +17260,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4025] = {.lex_state = 96, .external_lex_state = 5}, [4026] = {.lex_state = 96, .external_lex_state = 5}, [4027] = {.lex_state = 96, .external_lex_state = 5}, - [4028] = {.lex_state = 96, .external_lex_state = 2}, + [4028] = {.lex_state = 96, .external_lex_state = 5}, [4029] = {.lex_state = 96, .external_lex_state = 5}, - [4030] = {.lex_state = 96, .external_lex_state = 5}, + [4030] = {.lex_state = 96, .external_lex_state = 6}, [4031] = {.lex_state = 96, .external_lex_state = 5}, - [4032] = {.lex_state = 12, .external_lex_state = 2}, + [4032] = {.lex_state = 96, .external_lex_state = 5}, [4033] = {.lex_state = 96, .external_lex_state = 5}, - [4034] = {.lex_state = 96, .external_lex_state = 5}, + [4034] = {.lex_state = 12, .external_lex_state = 2}, [4035] = {.lex_state = 96, .external_lex_state = 5}, [4036] = {.lex_state = 96, .external_lex_state = 5}, - [4037] = {.lex_state = 96, .external_lex_state = 6}, + [4037] = {.lex_state = 96, .external_lex_state = 5}, [4038] = {.lex_state = 96, .external_lex_state = 5}, - [4039] = {.lex_state = 12, .external_lex_state = 2}, + [4039] = {.lex_state = 96, .external_lex_state = 2}, [4040] = {.lex_state = 96, .external_lex_state = 5}, [4041] = {.lex_state = 96, .external_lex_state = 5}, [4042] = {.lex_state = 96, .external_lex_state = 5}, @@ -17281,15 +17281,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4046] = {.lex_state = 96, .external_lex_state = 5}, [4047] = {.lex_state = 96, .external_lex_state = 5}, [4048] = {.lex_state = 96, .external_lex_state = 5}, - [4049] = {.lex_state = 96, .external_lex_state = 5}, - [4050] = {.lex_state = 18, .external_lex_state = 8}, + [4049] = {.lex_state = 18, .external_lex_state = 8}, + [4050] = {.lex_state = 96, .external_lex_state = 5}, [4051] = {.lex_state = 96, .external_lex_state = 5}, [4052] = {.lex_state = 96, .external_lex_state = 5}, - [4053] = {.lex_state = 96, .external_lex_state = 5}, - [4054] = {.lex_state = 18, .external_lex_state = 8}, + [4053] = {.lex_state = 18, .external_lex_state = 8}, + [4054] = {.lex_state = 96, .external_lex_state = 5}, [4055] = {.lex_state = 96, .external_lex_state = 5}, - [4056] = {.lex_state = 96, .external_lex_state = 5}, - [4057] = {.lex_state = 96, .external_lex_state = 2}, + [4056] = {.lex_state = 96, .external_lex_state = 2}, + [4057] = {.lex_state = 96, .external_lex_state = 5}, [4058] = {.lex_state = 96, .external_lex_state = 6}, [4059] = {.lex_state = 96, .external_lex_state = 5}, [4060] = {.lex_state = 96, .external_lex_state = 6}, @@ -17305,20 +17305,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4070] = {.lex_state = 96, .external_lex_state = 5}, [4071] = {.lex_state = 96, .external_lex_state = 5}, [4072] = {.lex_state = 96, .external_lex_state = 5}, - [4073] = {.lex_state = 96, .external_lex_state = 5}, - [4074] = {.lex_state = 12, .external_lex_state = 2}, + [4073] = {.lex_state = 12, .external_lex_state = 2}, + [4074] = {.lex_state = 96, .external_lex_state = 2}, [4075] = {.lex_state = 96, .external_lex_state = 5}, - [4076] = {.lex_state = 96, .external_lex_state = 2}, + [4076] = {.lex_state = 96, .external_lex_state = 5}, [4077] = {.lex_state = 96, .external_lex_state = 5}, [4078] = {.lex_state = 96, .external_lex_state = 5}, [4079] = {.lex_state = 96, .external_lex_state = 5}, [4080] = {.lex_state = 18, .external_lex_state = 8}, [4081] = {.lex_state = 96, .external_lex_state = 5}, [4082] = {.lex_state = 96, .external_lex_state = 5}, - [4083] = {.lex_state = 18, .external_lex_state = 8}, - [4084] = {.lex_state = 96, .external_lex_state = 2}, + [4083] = {.lex_state = 96, .external_lex_state = 5}, + [4084] = {.lex_state = 18, .external_lex_state = 8}, [4085] = {.lex_state = 96, .external_lex_state = 2}, - [4086] = {.lex_state = 96, .external_lex_state = 5}, + [4086] = {.lex_state = 96, .external_lex_state = 2}, [4087] = {.lex_state = 96, .external_lex_state = 5}, [4088] = {.lex_state = 12, .external_lex_state = 2}, [4089] = {.lex_state = 96, .external_lex_state = 2}, @@ -17329,52 +17329,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4094] = {.lex_state = 96, .external_lex_state = 5}, [4095] = {.lex_state = 12, .external_lex_state = 2}, [4096] = {.lex_state = 96, .external_lex_state = 5}, - [4097] = {.lex_state = 96, .external_lex_state = 2}, + [4097] = {.lex_state = 12, .external_lex_state = 2}, [4098] = {.lex_state = 96, .external_lex_state = 5}, - [4099] = {.lex_state = 12, .external_lex_state = 2}, - [4100] = {.lex_state = 96, .external_lex_state = 5}, - [4101] = {.lex_state = 96, .external_lex_state = 2}, - [4102] = {.lex_state = 96, .external_lex_state = 5}, + [4099] = {.lex_state = 96, .external_lex_state = 5}, + [4100] = {.lex_state = 96, .external_lex_state = 2}, + [4101] = {.lex_state = 96, .external_lex_state = 5}, + [4102] = {.lex_state = 96, .external_lex_state = 2}, [4103] = {.lex_state = 96, .external_lex_state = 5}, [4104] = {.lex_state = 96, .external_lex_state = 5}, [4105] = {.lex_state = 96, .external_lex_state = 5}, - [4106] = {.lex_state = 96, .external_lex_state = 5}, - [4107] = {.lex_state = 96, .external_lex_state = 2}, + [4106] = {.lex_state = 96, .external_lex_state = 2}, + [4107] = {.lex_state = 12, .external_lex_state = 2}, [4108] = {.lex_state = 96, .external_lex_state = 5}, [4109] = {.lex_state = 96, .external_lex_state = 5}, - [4110] = {.lex_state = 12, .external_lex_state = 2}, + [4110] = {.lex_state = 96, .external_lex_state = 2}, [4111] = {.lex_state = 96, .external_lex_state = 5}, - [4112] = {.lex_state = 96, .external_lex_state = 2}, - [4113] = {.lex_state = 96, .external_lex_state = 5}, - [4114] = {.lex_state = 96, .external_lex_state = 2}, + [4112] = {.lex_state = 96, .external_lex_state = 5}, + [4113] = {.lex_state = 96, .external_lex_state = 2}, + [4114] = {.lex_state = 96, .external_lex_state = 5}, [4115] = {.lex_state = 18, .external_lex_state = 8}, [4116] = {.lex_state = 96, .external_lex_state = 2}, - [4117] = {.lex_state = 96, .external_lex_state = 5}, + [4117] = {.lex_state = 12, .external_lex_state = 2}, [4118] = {.lex_state = 96, .external_lex_state = 5}, - [4119] = {.lex_state = 12, .external_lex_state = 2}, + [4119] = {.lex_state = 96, .external_lex_state = 5}, [4120] = {.lex_state = 96, .external_lex_state = 5}, [4121] = {.lex_state = 96, .external_lex_state = 5}, [4122] = {.lex_state = 96, .external_lex_state = 5}, - [4123] = {.lex_state = 96, .external_lex_state = 5}, + [4123] = {.lex_state = 12, .external_lex_state = 2}, [4124] = {.lex_state = 96, .external_lex_state = 5}, [4125] = {.lex_state = 12, .external_lex_state = 2}, [4126] = {.lex_state = 96, .external_lex_state = 5}, [4127] = {.lex_state = 96, .external_lex_state = 5}, [4128] = {.lex_state = 96, .external_lex_state = 5}, - [4129] = {.lex_state = 96, .external_lex_state = 2}, + [4129] = {.lex_state = 96, .external_lex_state = 5}, [4130] = {.lex_state = 96, .external_lex_state = 2}, - [4131] = {.lex_state = 96, .external_lex_state = 5}, - [4132] = {.lex_state = 12, .external_lex_state = 2}, + [4131] = {.lex_state = 96, .external_lex_state = 2}, + [4132] = {.lex_state = 96, .external_lex_state = 5}, [4133] = {.lex_state = 12, .external_lex_state = 2}, - [4134] = {.lex_state = 96, .external_lex_state = 5}, - [4135] = {.lex_state = 96, .external_lex_state = 2}, - [4136] = {.lex_state = 12, .external_lex_state = 2}, - [4137] = {.lex_state = 96, .external_lex_state = 5}, - [4138] = {.lex_state = 12, .external_lex_state = 2}, - [4139] = {.lex_state = 12, .external_lex_state = 2}, - [4140] = {.lex_state = 15, .external_lex_state = 2}, - [4141] = {.lex_state = 96, .external_lex_state = 5}, - [4142] = {.lex_state = 96, .external_lex_state = 2}, + [4134] = {.lex_state = 96, .external_lex_state = 2}, + [4135] = {.lex_state = 12, .external_lex_state = 2}, + [4136] = {.lex_state = 96, .external_lex_state = 5}, + [4137] = {.lex_state = 12, .external_lex_state = 2}, + [4138] = {.lex_state = 15, .external_lex_state = 2}, + [4139] = {.lex_state = 96, .external_lex_state = 5}, + [4140] = {.lex_state = 96, .external_lex_state = 5}, + [4141] = {.lex_state = 96, .external_lex_state = 2}, + [4142] = {.lex_state = 12, .external_lex_state = 2}, [4143] = {.lex_state = 12, .external_lex_state = 2}, [4144] = {.lex_state = 12, .external_lex_state = 2}, [4145] = {.lex_state = 96, .external_lex_state = 5}, @@ -17391,15 +17391,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4156] = {.lex_state = 96, .external_lex_state = 5}, [4157] = {.lex_state = 96, .external_lex_state = 5}, [4158] = {.lex_state = 96, .external_lex_state = 5}, - [4159] = {.lex_state = 96, .external_lex_state = 5}, + [4159] = {.lex_state = 12, .external_lex_state = 2}, [4160] = {.lex_state = 96, .external_lex_state = 5}, [4161] = {.lex_state = 96, .external_lex_state = 2}, [4162] = {.lex_state = 96, .external_lex_state = 5}, [4163] = {.lex_state = 96, .external_lex_state = 5}, - [4164] = {.lex_state = 12, .external_lex_state = 2}, - [4165] = {.lex_state = 96, .external_lex_state = 5}, - [4166] = {.lex_state = 12, .external_lex_state = 2}, - [4167] = {.lex_state = 96, .external_lex_state = 5}, + [4164] = {.lex_state = 96, .external_lex_state = 5}, + [4165] = {.lex_state = 12, .external_lex_state = 2}, + [4166] = {.lex_state = 96, .external_lex_state = 5}, + [4167] = {.lex_state = 12, .external_lex_state = 2}, [4168] = {.lex_state = 12, .external_lex_state = 2}, [4169] = {.lex_state = 12, .external_lex_state = 2}, [4170] = {.lex_state = 96, .external_lex_state = 5}, @@ -17411,40 +17411,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4176] = {.lex_state = 96, .external_lex_state = 5}, [4177] = {.lex_state = 96, .external_lex_state = 2}, [4178] = {.lex_state = 12, .external_lex_state = 2}, - [4179] = {.lex_state = 12, .external_lex_state = 2}, - [4180] = {.lex_state = 96, .external_lex_state = 5}, + [4179] = {.lex_state = 96, .external_lex_state = 5}, + [4180] = {.lex_state = 12, .external_lex_state = 2}, [4181] = {.lex_state = 96, .external_lex_state = 5}, [4182] = {.lex_state = 96, .external_lex_state = 5}, [4183] = {.lex_state = 96, .external_lex_state = 5}, - [4184] = {.lex_state = 96, .external_lex_state = 2}, - [4185] = {.lex_state = 96, .external_lex_state = 5}, + [4184] = {.lex_state = 96, .external_lex_state = 5}, + [4185] = {.lex_state = 96, .external_lex_state = 2}, [4186] = {.lex_state = 96, .external_lex_state = 5}, [4187] = {.lex_state = 96, .external_lex_state = 5}, [4188] = {.lex_state = 12, .external_lex_state = 2}, [4189] = {.lex_state = 96, .external_lex_state = 5}, - [4190] = {.lex_state = 96, .external_lex_state = 5}, + [4190] = {.lex_state = 12, .external_lex_state = 2}, [4191] = {.lex_state = 12, .external_lex_state = 2}, - [4192] = {.lex_state = 12, .external_lex_state = 2}, + [4192] = {.lex_state = 96, .external_lex_state = 5}, [4193] = {.lex_state = 96, .external_lex_state = 6}, [4194] = {.lex_state = 12, .external_lex_state = 2}, [4195] = {.lex_state = 96, .external_lex_state = 5}, - [4196] = {.lex_state = 96, .external_lex_state = 5}, - [4197] = {.lex_state = 12, .external_lex_state = 2}, + [4196] = {.lex_state = 12, .external_lex_state = 2}, + [4197] = {.lex_state = 96, .external_lex_state = 5}, [4198] = {.lex_state = 96, .external_lex_state = 5}, [4199] = {.lex_state = 96, .external_lex_state = 5}, [4200] = {.lex_state = 96, .external_lex_state = 5}, [4201] = {.lex_state = 96, .external_lex_state = 5}, - [4202] = {.lex_state = 96, .external_lex_state = 5}, - [4203] = {.lex_state = 12, .external_lex_state = 2}, + [4202] = {.lex_state = 12, .external_lex_state = 2}, + [4203] = {.lex_state = 96, .external_lex_state = 5}, [4204] = {.lex_state = 96, .external_lex_state = 5}, [4205] = {.lex_state = 96, .external_lex_state = 5}, - [4206] = {.lex_state = 96, .external_lex_state = 5}, - [4207] = {.lex_state = 12, .external_lex_state = 2}, + [4206] = {.lex_state = 12, .external_lex_state = 2}, + [4207] = {.lex_state = 96, .external_lex_state = 5}, [4208] = {.lex_state = 96, .external_lex_state = 5}, [4209] = {.lex_state = 96, .external_lex_state = 5}, [4210] = {.lex_state = 96, .external_lex_state = 5}, - [4211] = {.lex_state = 96, .external_lex_state = 5}, - [4212] = {.lex_state = 12, .external_lex_state = 2}, + [4211] = {.lex_state = 12, .external_lex_state = 2}, + [4212] = {.lex_state = 96, .external_lex_state = 5}, [4213] = {.lex_state = 96, .external_lex_state = 5}, [4214] = {.lex_state = 96, .external_lex_state = 5}, [4215] = {.lex_state = 96, .external_lex_state = 5}, @@ -17457,20 +17457,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4222] = {.lex_state = 96, .external_lex_state = 5}, [4223] = {.lex_state = 12, .external_lex_state = 2}, [4224] = {.lex_state = 96, .external_lex_state = 5}, - [4225] = {.lex_state = 96, .external_lex_state = 5}, - [4226] = {.lex_state = 96, .external_lex_state = 2}, + [4225] = {.lex_state = 96, .external_lex_state = 2}, + [4226] = {.lex_state = 96, .external_lex_state = 5}, [4227] = {.lex_state = 96, .external_lex_state = 5}, - [4228] = {.lex_state = 96, .external_lex_state = 5}, - [4229] = {.lex_state = 96, .external_lex_state = 2}, + [4228] = {.lex_state = 96, .external_lex_state = 2}, + [4229] = {.lex_state = 12, .external_lex_state = 2}, [4230] = {.lex_state = 12, .external_lex_state = 2}, - [4231] = {.lex_state = 12, .external_lex_state = 2}, - [4232] = {.lex_state = 96, .external_lex_state = 5}, - [4233] = {.lex_state = 96, .external_lex_state = 2}, - [4234] = {.lex_state = 96, .external_lex_state = 5}, + [4231] = {.lex_state = 96, .external_lex_state = 5}, + [4232] = {.lex_state = 96, .external_lex_state = 2}, + [4233] = {.lex_state = 96, .external_lex_state = 5}, + [4234] = {.lex_state = 96, .external_lex_state = 2}, [4235] = {.lex_state = 96, .external_lex_state = 2}, - [4236] = {.lex_state = 96, .external_lex_state = 2}, + [4236] = {.lex_state = 12, .external_lex_state = 2}, [4237] = {.lex_state = 12, .external_lex_state = 2}, - [4238] = {.lex_state = 12, .external_lex_state = 2}, + [4238] = {.lex_state = 96, .external_lex_state = 5}, [4239] = {.lex_state = 96, .external_lex_state = 5}, [4240] = {.lex_state = 96, .external_lex_state = 5}, [4241] = {.lex_state = 96, .external_lex_state = 5}, @@ -17507,18 +17507,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4272] = {.lex_state = 96, .external_lex_state = 5}, [4273] = {.lex_state = 96, .external_lex_state = 5}, [4274] = {.lex_state = 96, .external_lex_state = 5}, - [4275] = {.lex_state = 96, .external_lex_state = 5}, + [4275] = {.lex_state = 12, .external_lex_state = 2}, [4276] = {.lex_state = 96, .external_lex_state = 5}, - [4277] = {.lex_state = 96, .external_lex_state = 5}, + [4277] = {.lex_state = 96, .external_lex_state = 2}, [4278] = {.lex_state = 96, .external_lex_state = 5}, [4279] = {.lex_state = 96, .external_lex_state = 5}, - [4280] = {.lex_state = 96, .external_lex_state = 2}, + [4280] = {.lex_state = 96, .external_lex_state = 5}, [4281] = {.lex_state = 96, .external_lex_state = 5}, [4282] = {.lex_state = 96, .external_lex_state = 5}, [4283] = {.lex_state = 96, .external_lex_state = 5}, [4284] = {.lex_state = 96, .external_lex_state = 5}, [4285] = {.lex_state = 96, .external_lex_state = 5}, - [4286] = {.lex_state = 12, .external_lex_state = 2}, + [4286] = {.lex_state = 96, .external_lex_state = 5}, [4287] = {.lex_state = 96, .external_lex_state = 5}, [4288] = {.lex_state = 96, .external_lex_state = 5}, [4289] = {.lex_state = 96, .external_lex_state = 5}, @@ -17528,61 +17528,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4293] = {.lex_state = 96, .external_lex_state = 5}, [4294] = {.lex_state = 96, .external_lex_state = 5}, [4295] = {.lex_state = 96, .external_lex_state = 5}, - [4296] = {.lex_state = 96, .external_lex_state = 5}, - [4297] = {.lex_state = 96, .external_lex_state = 5}, - [4298] = {.lex_state = 96, .external_lex_state = 2}, - [4299] = {.lex_state = 12, .external_lex_state = 2}, - [4300] = {.lex_state = 96, .external_lex_state = 5}, + [4296] = {.lex_state = 18, .external_lex_state = 8}, + [4297] = {.lex_state = 96, .external_lex_state = 2}, + [4298] = {.lex_state = 96, .external_lex_state = 5}, + [4299] = {.lex_state = 96, .external_lex_state = 5}, + [4300] = {.lex_state = 96, .external_lex_state = 2}, [4301] = {.lex_state = 96, .external_lex_state = 5}, [4302] = {.lex_state = 96, .external_lex_state = 2}, - [4303] = {.lex_state = 96, .external_lex_state = 2}, + [4303] = {.lex_state = 96, .external_lex_state = 5}, [4304] = {.lex_state = 96, .external_lex_state = 5}, [4305] = {.lex_state = 96, .external_lex_state = 5}, - [4306] = {.lex_state = 18, .external_lex_state = 8}, + [4306] = {.lex_state = 96, .external_lex_state = 5}, [4307] = {.lex_state = 96, .external_lex_state = 5}, [4308] = {.lex_state = 96, .external_lex_state = 5}, [4309] = {.lex_state = 96, .external_lex_state = 5}, - [4310] = {.lex_state = 96, .external_lex_state = 5}, - [4311] = {.lex_state = 96, .external_lex_state = 5}, - [4312] = {.lex_state = 12, .external_lex_state = 2}, + [4310] = {.lex_state = 12, .external_lex_state = 2}, + [4311] = {.lex_state = 12, .external_lex_state = 2}, + [4312] = {.lex_state = 96, .external_lex_state = 5}, [4313] = {.lex_state = 96, .external_lex_state = 5}, - [4314] = {.lex_state = 12, .external_lex_state = 2}, + [4314] = {.lex_state = 96, .external_lex_state = 5}, [4315] = {.lex_state = 96, .external_lex_state = 5}, [4316] = {.lex_state = 96, .external_lex_state = 5}, - [4317] = {.lex_state = 96, .external_lex_state = 5}, - [4318] = {.lex_state = 96, .external_lex_state = 5}, + [4317] = {.lex_state = 12, .external_lex_state = 2}, + [4318] = {.lex_state = 12, .external_lex_state = 2}, [4319] = {.lex_state = 12, .external_lex_state = 2}, - [4320] = {.lex_state = 12, .external_lex_state = 2}, + [4320] = {.lex_state = 96, .external_lex_state = 5}, [4321] = {.lex_state = 12, .external_lex_state = 2}, - [4322] = {.lex_state = 96, .external_lex_state = 2}, - [4323] = {.lex_state = 96, .external_lex_state = 5}, - [4324] = {.lex_state = 12, .external_lex_state = 2}, + [4322] = {.lex_state = 96, .external_lex_state = 5}, + [4323] = {.lex_state = 96, .external_lex_state = 2}, + [4324] = {.lex_state = 96, .external_lex_state = 5}, [4325] = {.lex_state = 96, .external_lex_state = 5}, - [4326] = {.lex_state = 96, .external_lex_state = 5}, - [4327] = {.lex_state = 96, .external_lex_state = 2}, + [4326] = {.lex_state = 96, .external_lex_state = 2}, + [4327] = {.lex_state = 12, .external_lex_state = 2}, [4328] = {.lex_state = 96, .external_lex_state = 5}, - [4329] = {.lex_state = 12, .external_lex_state = 2}, - [4330] = {.lex_state = 96, .external_lex_state = 5}, - [4331] = {.lex_state = 96, .external_lex_state = 2}, + [4329] = {.lex_state = 18, .external_lex_state = 8}, + [4330] = {.lex_state = 96, .external_lex_state = 2}, + [4331] = {.lex_state = 96, .external_lex_state = 5}, [4332] = {.lex_state = 96, .external_lex_state = 5}, [4333] = {.lex_state = 96, .external_lex_state = 5}, - [4334] = {.lex_state = 96, .external_lex_state = 5}, - [4335] = {.lex_state = 12, .external_lex_state = 2}, - [4336] = {.lex_state = 12, .external_lex_state = 2}, + [4334] = {.lex_state = 12, .external_lex_state = 2}, + [4335] = {.lex_state = 96, .external_lex_state = 5}, + [4336] = {.lex_state = 96, .external_lex_state = 5}, [4337] = {.lex_state = 96, .external_lex_state = 5}, - [4338] = {.lex_state = 96, .external_lex_state = 5}, + [4338] = {.lex_state = 12, .external_lex_state = 2}, [4339] = {.lex_state = 96, .external_lex_state = 5}, [4340] = {.lex_state = 96, .external_lex_state = 5}, [4341] = {.lex_state = 96, .external_lex_state = 5}, [4342] = {.lex_state = 96, .external_lex_state = 2}, - [4343] = {.lex_state = 96, .external_lex_state = 5}, + [4343] = {.lex_state = 12, .external_lex_state = 2}, [4344] = {.lex_state = 12, .external_lex_state = 2}, - [4345] = {.lex_state = 12, .external_lex_state = 2}, + [4345] = {.lex_state = 96, .external_lex_state = 2}, [4346] = {.lex_state = 96, .external_lex_state = 2}, - [4347] = {.lex_state = 96, .external_lex_state = 2}, + [4347] = {.lex_state = 12, .external_lex_state = 2}, [4348] = {.lex_state = 12, .external_lex_state = 2}, - [4349] = {.lex_state = 12, .external_lex_state = 2}, - [4350] = {.lex_state = 96, .external_lex_state = 2}, + [4349] = {.lex_state = 96, .external_lex_state = 2}, + [4350] = {.lex_state = 96, .external_lex_state = 5}, [4351] = {.lex_state = 96, .external_lex_state = 5}, [4352] = {.lex_state = 96, .external_lex_state = 5}, [4353] = {.lex_state = 96, .external_lex_state = 5}, @@ -17590,16 +17590,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4355] = {.lex_state = 96, .external_lex_state = 5}, [4356] = {.lex_state = 96, .external_lex_state = 5}, [4357] = {.lex_state = 96, .external_lex_state = 5}, - [4358] = {.lex_state = 96, .external_lex_state = 5}, - [4359] = {.lex_state = 96, .external_lex_state = 5}, - [4360] = {.lex_state = 12, .external_lex_state = 2}, + [4358] = {.lex_state = 96, .external_lex_state = 2}, + [4359] = {.lex_state = 12, .external_lex_state = 2}, + [4360] = {.lex_state = 96, .external_lex_state = 5}, [4361] = {.lex_state = 96, .external_lex_state = 5}, [4362] = {.lex_state = 96, .external_lex_state = 5}, [4363] = {.lex_state = 96, .external_lex_state = 5}, [4364] = {.lex_state = 96, .external_lex_state = 5}, [4365] = {.lex_state = 96, .external_lex_state = 5}, [4366] = {.lex_state = 96, .external_lex_state = 5}, - [4367] = {.lex_state = 96, .external_lex_state = 2}, + [4367] = {.lex_state = 96, .external_lex_state = 5}, [4368] = {.lex_state = 96, .external_lex_state = 5}, [4369] = {.lex_state = 96, .external_lex_state = 5}, [4370] = {.lex_state = 96, .external_lex_state = 5}, @@ -17609,337 +17609,337 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4374] = {.lex_state = 96, .external_lex_state = 5}, [4375] = {.lex_state = 96, .external_lex_state = 5}, [4376] = {.lex_state = 96, .external_lex_state = 5}, - [4377] = {.lex_state = 96, .external_lex_state = 5}, - [4378] = {.lex_state = 4, .external_lex_state = 2}, + [4377] = {.lex_state = 4, .external_lex_state = 2}, + [4378] = {.lex_state = 96, .external_lex_state = 5}, [4379] = {.lex_state = 96, .external_lex_state = 5}, [4380] = {.lex_state = 96, .external_lex_state = 5}, [4381] = {.lex_state = 96, .external_lex_state = 5}, - [4382] = {.lex_state = 96, .external_lex_state = 5}, - [4383] = {.lex_state = 15, .external_lex_state = 2}, + [4382] = {.lex_state = 15, .external_lex_state = 2}, + [4383] = {.lex_state = 96, .external_lex_state = 5}, [4384] = {.lex_state = 96, .external_lex_state = 5}, [4385] = {.lex_state = 96, .external_lex_state = 5}, [4386] = {.lex_state = 96, .external_lex_state = 5}, - [4387] = {.lex_state = 96, .external_lex_state = 5}, + [4387] = {.lex_state = 17, .external_lex_state = 9}, [4388] = {.lex_state = 96, .external_lex_state = 2}, [4389] = {.lex_state = 12, .external_lex_state = 2}, - [4390] = {.lex_state = 96, .external_lex_state = 2}, - [4391] = {.lex_state = 96, .external_lex_state = 5}, - [4392] = {.lex_state = 96, .external_lex_state = 5}, - [4393] = {.lex_state = 96, .external_lex_state = 2}, - [4394] = {.lex_state = 21, .external_lex_state = 9}, + [4390] = {.lex_state = 96, .external_lex_state = 5}, + [4391] = {.lex_state = 96, .external_lex_state = 2}, + [4392] = {.lex_state = 17, .external_lex_state = 9}, + [4393] = {.lex_state = 21, .external_lex_state = 9}, + [4394] = {.lex_state = 17, .external_lex_state = 9}, [4395] = {.lex_state = 96, .external_lex_state = 2}, - [4396] = {.lex_state = 17, .external_lex_state = 9}, - [4397] = {.lex_state = 21, .external_lex_state = 9}, - [4398] = {.lex_state = 96, .external_lex_state = 2}, - [4399] = {.lex_state = 17, .external_lex_state = 9}, - [4400] = {.lex_state = 21, .external_lex_state = 9}, - [4401] = {.lex_state = 96, .external_lex_state = 5}, - [4402] = {.lex_state = 96, .external_lex_state = 2}, - [4403] = {.lex_state = 12, .external_lex_state = 2}, - [4404] = {.lex_state = 96, .external_lex_state = 2}, - [4405] = {.lex_state = 12, .external_lex_state = 2}, + [4396] = {.lex_state = 21, .external_lex_state = 9}, + [4397] = {.lex_state = 96, .external_lex_state = 2}, + [4398] = {.lex_state = 12, .external_lex_state = 2}, + [4399] = {.lex_state = 96, .external_lex_state = 2}, + [4400] = {.lex_state = 96, .external_lex_state = 2}, + [4401] = {.lex_state = 12, .external_lex_state = 2}, + [4402] = {.lex_state = 12, .external_lex_state = 2}, + [4403] = {.lex_state = 96, .external_lex_state = 2}, + [4404] = {.lex_state = 21, .external_lex_state = 9}, + [4405] = {.lex_state = 96, .external_lex_state = 2}, [4406] = {.lex_state = 96, .external_lex_state = 2}, - [4407] = {.lex_state = 96, .external_lex_state = 2}, - [4408] = {.lex_state = 12, .external_lex_state = 2}, - [4409] = {.lex_state = 96, .external_lex_state = 2}, + [4407] = {.lex_state = 96, .external_lex_state = 5}, + [4408] = {.lex_state = 96, .external_lex_state = 2}, + [4409] = {.lex_state = 12, .external_lex_state = 2}, [4410] = {.lex_state = 96, .external_lex_state = 2}, - [4411] = {.lex_state = 21, .external_lex_state = 9}, - [4412] = {.lex_state = 96, .external_lex_state = 5}, - [4413] = {.lex_state = 12, .external_lex_state = 2}, - [4414] = {.lex_state = 96, .external_lex_state = 2}, - [4415] = {.lex_state = 96, .external_lex_state = 5}, - [4416] = {.lex_state = 96, .external_lex_state = 2}, - [4417] = {.lex_state = 15, .external_lex_state = 2}, - [4418] = {.lex_state = 96, .external_lex_state = 2}, - [4419] = {.lex_state = 4, .external_lex_state = 2}, - [4420] = {.lex_state = 4, .external_lex_state = 2}, - [4421] = {.lex_state = 4, .external_lex_state = 2}, - [4422] = {.lex_state = 96, .external_lex_state = 5}, + [4411] = {.lex_state = 96, .external_lex_state = 5}, + [4412] = {.lex_state = 21, .external_lex_state = 9}, + [4413] = {.lex_state = 17, .external_lex_state = 9}, + [4414] = {.lex_state = 96, .external_lex_state = 5}, + [4415] = {.lex_state = 96, .external_lex_state = 2}, + [4416] = {.lex_state = 4, .external_lex_state = 2}, + [4417] = {.lex_state = 4, .external_lex_state = 2}, + [4418] = {.lex_state = 4, .external_lex_state = 2}, + [4419] = {.lex_state = 15, .external_lex_state = 2}, + [4420] = {.lex_state = 96, .external_lex_state = 2}, + [4421] = {.lex_state = 96, .external_lex_state = 2}, + [4422] = {.lex_state = 96, .external_lex_state = 2}, [4423] = {.lex_state = 96, .external_lex_state = 2}, [4424] = {.lex_state = 96, .external_lex_state = 2}, [4425] = {.lex_state = 96, .external_lex_state = 5}, - [4426] = {.lex_state = 96, .external_lex_state = 2}, + [4426] = {.lex_state = 96, .external_lex_state = 5}, [4427] = {.lex_state = 96, .external_lex_state = 2}, - [4428] = {.lex_state = 96, .external_lex_state = 2}, + [4428] = {.lex_state = 17, .external_lex_state = 9}, [4429] = {.lex_state = 12, .external_lex_state = 2}, - [4430] = {.lex_state = 17, .external_lex_state = 9}, - [4431] = {.lex_state = 17, .external_lex_state = 9}, + [4430] = {.lex_state = 96, .external_lex_state = 2}, + [4431] = {.lex_state = 12, .external_lex_state = 2}, [4432] = {.lex_state = 96, .external_lex_state = 2}, - [4433] = {.lex_state = 12, .external_lex_state = 2}, + [4433] = {.lex_state = 96, .external_lex_state = 5}, [4434] = {.lex_state = 96, .external_lex_state = 2}, [4435] = {.lex_state = 96, .external_lex_state = 2}, - [4436] = {.lex_state = 21, .external_lex_state = 9}, + [4436] = {.lex_state = 17, .external_lex_state = 9}, [4437] = {.lex_state = 96, .external_lex_state = 2}, [4438] = {.lex_state = 18, .external_lex_state = 7}, [4439] = {.lex_state = 12, .external_lex_state = 2}, - [4440] = {.lex_state = 4, .external_lex_state = 2}, + [4440] = {.lex_state = 96, .external_lex_state = 5}, [4441] = {.lex_state = 96, .external_lex_state = 2}, - [4442] = {.lex_state = 12, .external_lex_state = 2}, - [4443] = {.lex_state = 96, .external_lex_state = 5}, - [4444] = {.lex_state = 96, .external_lex_state = 2}, + [4442] = {.lex_state = 21, .external_lex_state = 9}, + [4443] = {.lex_state = 96, .external_lex_state = 2}, + [4444] = {.lex_state = 96, .external_lex_state = 6}, [4445] = {.lex_state = 96, .external_lex_state = 2}, - [4446] = {.lex_state = 21, .external_lex_state = 9}, - [4447] = {.lex_state = 4, .external_lex_state = 2}, + [4446] = {.lex_state = 4, .external_lex_state = 2}, + [4447] = {.lex_state = 12, .external_lex_state = 2}, [4448] = {.lex_state = 96, .external_lex_state = 2}, - [4449] = {.lex_state = 17, .external_lex_state = 9}, - [4450] = {.lex_state = 21, .external_lex_state = 9}, + [4449] = {.lex_state = 96, .external_lex_state = 2}, + [4450] = {.lex_state = 4, .external_lex_state = 2}, [4451] = {.lex_state = 96, .external_lex_state = 2}, - [4452] = {.lex_state = 96, .external_lex_state = 2}, - [4453] = {.lex_state = 96, .external_lex_state = 2}, - [4454] = {.lex_state = 96, .external_lex_state = 2}, - [4455] = {.lex_state = 12, .external_lex_state = 2}, - [4456] = {.lex_state = 96, .external_lex_state = 2}, - [4457] = {.lex_state = 17, .external_lex_state = 9}, - [4458] = {.lex_state = 21, .external_lex_state = 9}, - [4459] = {.lex_state = 12, .external_lex_state = 2}, + [4452] = {.lex_state = 96, .external_lex_state = 5}, + [4453] = {.lex_state = 12, .external_lex_state = 2}, + [4454] = {.lex_state = 17, .external_lex_state = 9}, + [4455] = {.lex_state = 17, .external_lex_state = 9}, + [4456] = {.lex_state = 21, .external_lex_state = 9}, + [4457] = {.lex_state = 12, .external_lex_state = 2}, + [4458] = {.lex_state = 96, .external_lex_state = 5}, + [4459] = {.lex_state = 96, .external_lex_state = 2}, [4460] = {.lex_state = 12, .external_lex_state = 2}, - [4461] = {.lex_state = 96, .external_lex_state = 2}, - [4462] = {.lex_state = 17, .external_lex_state = 9}, - [4463] = {.lex_state = 96, .external_lex_state = 5}, - [4464] = {.lex_state = 96, .external_lex_state = 5}, + [4461] = {.lex_state = 96, .external_lex_state = 5}, + [4462] = {.lex_state = 12, .external_lex_state = 2}, + [4463] = {.lex_state = 96, .external_lex_state = 2}, + [4464] = {.lex_state = 96, .external_lex_state = 2}, [4465] = {.lex_state = 12, .external_lex_state = 2}, - [4466] = {.lex_state = 17, .external_lex_state = 9}, - [4467] = {.lex_state = 12, .external_lex_state = 2}, - [4468] = {.lex_state = 96, .external_lex_state = 2}, - [4469] = {.lex_state = 21, .external_lex_state = 9}, - [4470] = {.lex_state = 96, .external_lex_state = 5}, - [4471] = {.lex_state = 96, .external_lex_state = 2}, + [4466] = {.lex_state = 15, .external_lex_state = 2}, + [4467] = {.lex_state = 17, .external_lex_state = 9}, + [4468] = {.lex_state = 21, .external_lex_state = 9}, + [4469] = {.lex_state = 96, .external_lex_state = 2}, + [4470] = {.lex_state = 96, .external_lex_state = 2}, + [4471] = {.lex_state = 12, .external_lex_state = 2}, [4472] = {.lex_state = 96, .external_lex_state = 2}, - [4473] = {.lex_state = 12, .external_lex_state = 2}, - [4474] = {.lex_state = 17, .external_lex_state = 9}, + [4473] = {.lex_state = 96, .external_lex_state = 2}, + [4474] = {.lex_state = 96, .external_lex_state = 2}, [4475] = {.lex_state = 96, .external_lex_state = 2}, - [4476] = {.lex_state = 96, .external_lex_state = 2}, - [4477] = {.lex_state = 96, .external_lex_state = 2}, + [4476] = {.lex_state = 96, .external_lex_state = 5}, + [4477] = {.lex_state = 96, .external_lex_state = 5}, [4478] = {.lex_state = 96, .external_lex_state = 2}, - [4479] = {.lex_state = 96, .external_lex_state = 5}, - [4480] = {.lex_state = 15, .external_lex_state = 2}, - [4481] = {.lex_state = 96, .external_lex_state = 2}, + [4479] = {.lex_state = 21, .external_lex_state = 9}, + [4480] = {.lex_state = 96, .external_lex_state = 2}, + [4481] = {.lex_state = 96, .external_lex_state = 5}, [4482] = {.lex_state = 96, .external_lex_state = 2}, [4483] = {.lex_state = 96, .external_lex_state = 2}, - [4484] = {.lex_state = 96, .external_lex_state = 5}, - [4485] = {.lex_state = 96, .external_lex_state = 6}, - [4486] = {.lex_state = 17, .external_lex_state = 9}, - [4487] = {.lex_state = 96, .external_lex_state = 2}, + [4484] = {.lex_state = 96, .external_lex_state = 2}, + [4485] = {.lex_state = 17, .external_lex_state = 9}, + [4486] = {.lex_state = 96, .external_lex_state = 2}, + [4487] = {.lex_state = 12, .external_lex_state = 2}, [4488] = {.lex_state = 96, .external_lex_state = 2}, - [4489] = {.lex_state = 96, .external_lex_state = 2}, + [4489] = {.lex_state = 21, .external_lex_state = 9}, [4490] = {.lex_state = 12, .external_lex_state = 2}, - [4491] = {.lex_state = 21, .external_lex_state = 9}, - [4492] = {.lex_state = 17, .external_lex_state = 9}, + [4491] = {.lex_state = 12, .external_lex_state = 2}, + [4492] = {.lex_state = 96, .external_lex_state = 2}, [4493] = {.lex_state = 17, .external_lex_state = 9}, - [4494] = {.lex_state = 12, .external_lex_state = 2}, - [4495] = {.lex_state = 21, .external_lex_state = 9}, - [4496] = {.lex_state = 12, .external_lex_state = 2}, - [4497] = {.lex_state = 17, .external_lex_state = 9}, + [4494] = {.lex_state = 96, .external_lex_state = 2}, + [4495] = {.lex_state = 17, .external_lex_state = 9}, + [4496] = {.lex_state = 17, .external_lex_state = 9}, + [4497] = {.lex_state = 21, .external_lex_state = 9}, [4498] = {.lex_state = 21, .external_lex_state = 9}, - [4499] = {.lex_state = 96, .external_lex_state = 2}, + [4499] = {.lex_state = 21, .external_lex_state = 9}, [4500] = {.lex_state = 96, .external_lex_state = 2}, - [4501] = {.lex_state = 17, .external_lex_state = 9}, + [4501] = {.lex_state = 96, .external_lex_state = 5}, [4502] = {.lex_state = 96, .external_lex_state = 2}, - [4503] = {.lex_state = 21, .external_lex_state = 9}, - [4504] = {.lex_state = 18, .external_lex_state = 7}, - [4505] = {.lex_state = 96, .external_lex_state = 2}, - [4506] = {.lex_state = 17, .external_lex_state = 9}, - [4507] = {.lex_state = 96, .external_lex_state = 2}, + [4503] = {.lex_state = 96, .external_lex_state = 2}, + [4504] = {.lex_state = 17, .external_lex_state = 9}, + [4505] = {.lex_state = 21, .external_lex_state = 9}, + [4506] = {.lex_state = 96, .external_lex_state = 2}, + [4507] = {.lex_state = 18, .external_lex_state = 7}, [4508] = {.lex_state = 96, .external_lex_state = 2}, [4509] = {.lex_state = 96, .external_lex_state = 5}, - [4510] = {.lex_state = 21, .external_lex_state = 9}, - [4511] = {.lex_state = 96, .external_lex_state = 2}, - [4512] = {.lex_state = 12, .external_lex_state = 2}, - [4513] = {.lex_state = 21, .external_lex_state = 9}, + [4510] = {.lex_state = 12, .external_lex_state = 2}, + [4511] = {.lex_state = 17, .external_lex_state = 9}, + [4512] = {.lex_state = 21, .external_lex_state = 9}, + [4513] = {.lex_state = 96, .external_lex_state = 2}, [4514] = {.lex_state = 12, .external_lex_state = 2}, - [4515] = {.lex_state = 96, .external_lex_state = 5}, + [4515] = {.lex_state = 12, .external_lex_state = 2}, [4516] = {.lex_state = 12, .external_lex_state = 2}, - [4517] = {.lex_state = 96, .external_lex_state = 5}, + [4517] = {.lex_state = 96, .external_lex_state = 2}, [4518] = {.lex_state = 96, .external_lex_state = 2}, [4519] = {.lex_state = 12, .external_lex_state = 2}, - [4520] = {.lex_state = 12, .external_lex_state = 2}, - [4521] = {.lex_state = 96, .external_lex_state = 2}, - [4522] = {.lex_state = 96, .external_lex_state = 2}, - [4523] = {.lex_state = 96, .external_lex_state = 2}, + [4520] = {.lex_state = 96, .external_lex_state = 2}, + [4521] = {.lex_state = 96, .external_lex_state = 5}, + [4522] = {.lex_state = 21, .external_lex_state = 9}, + [4523] = {.lex_state = 96, .external_lex_state = 5}, [4524] = {.lex_state = 96, .external_lex_state = 2}, - [4525] = {.lex_state = 12, .external_lex_state = 2}, + [4525] = {.lex_state = 96, .external_lex_state = 2}, [4526] = {.lex_state = 96, .external_lex_state = 2}, - [4527] = {.lex_state = 96, .external_lex_state = 2}, + [4527] = {.lex_state = 96, .external_lex_state = 5}, [4528] = {.lex_state = 96, .external_lex_state = 2}, - [4529] = {.lex_state = 96, .external_lex_state = 2}, - [4530] = {.lex_state = 96, .external_lex_state = 5}, - [4531] = {.lex_state = 96, .external_lex_state = 5}, + [4529] = {.lex_state = 12, .external_lex_state = 2}, + [4530] = {.lex_state = 96, .external_lex_state = 2}, + [4531] = {.lex_state = 96, .external_lex_state = 2}, [4532] = {.lex_state = 96, .external_lex_state = 5}, [4533] = {.lex_state = 96, .external_lex_state = 5}, - [4534] = {.lex_state = 96, .external_lex_state = 2}, + [4534] = {.lex_state = 96, .external_lex_state = 5}, [4535] = {.lex_state = 96, .external_lex_state = 2}, - [4536] = {.lex_state = 96, .external_lex_state = 5}, + [4536] = {.lex_state = 96, .external_lex_state = 2}, [4537] = {.lex_state = 96, .external_lex_state = 2}, - [4538] = {.lex_state = 96, .external_lex_state = 5}, + [4538] = {.lex_state = 96, .external_lex_state = 2}, [4539] = {.lex_state = 96, .external_lex_state = 2}, - [4540] = {.lex_state = 96, .external_lex_state = 5}, + [4540] = {.lex_state = 96, .external_lex_state = 2}, [4541] = {.lex_state = 96, .external_lex_state = 2}, - [4542] = {.lex_state = 96, .external_lex_state = 2}, - [4543] = {.lex_state = 96, .external_lex_state = 5}, + [4542] = {.lex_state = 96, .external_lex_state = 5}, + [4543] = {.lex_state = 96, .external_lex_state = 2}, [4544] = {.lex_state = 96, .external_lex_state = 2}, [4545] = {.lex_state = 96, .external_lex_state = 2}, - [4546] = {.lex_state = 96, .external_lex_state = 2}, + [4546] = {.lex_state = 96, .external_lex_state = 5}, [4547] = {.lex_state = 96, .external_lex_state = 2}, [4548] = {.lex_state = 96, .external_lex_state = 2}, - [4549] = {.lex_state = 96, .external_lex_state = 2}, - [4550] = {.lex_state = 96, .external_lex_state = 2}, - [4551] = {.lex_state = 96, .external_lex_state = 2}, - [4552] = {.lex_state = 96, .external_lex_state = 5}, - [4553] = {.lex_state = 96, .external_lex_state = 2}, + [4549] = {.lex_state = 96, .external_lex_state = 5}, + [4550] = {.lex_state = 96, .external_lex_state = 5}, + [4551] = {.lex_state = 96, .external_lex_state = 5}, + [4552] = {.lex_state = 96, .external_lex_state = 2}, + [4553] = {.lex_state = 96, .external_lex_state = 5}, [4554] = {.lex_state = 96, .external_lex_state = 2}, - [4555] = {.lex_state = 96, .external_lex_state = 5}, + [4555] = {.lex_state = 96, .external_lex_state = 2}, [4556] = {.lex_state = 96, .external_lex_state = 2}, - [4557] = {.lex_state = 96, .external_lex_state = 2}, - [4558] = {.lex_state = 96, .external_lex_state = 2}, + [4557] = {.lex_state = 96, .external_lex_state = 5}, + [4558] = {.lex_state = 96, .external_lex_state = 5}, [4559] = {.lex_state = 96, .external_lex_state = 5}, - [4560] = {.lex_state = 96, .external_lex_state = 5}, + [4560] = {.lex_state = 4, .external_lex_state = 2}, [4561] = {.lex_state = 96, .external_lex_state = 5}, - [4562] = {.lex_state = 4, .external_lex_state = 2}, + [4562] = {.lex_state = 96, .external_lex_state = 2}, [4563] = {.lex_state = 96, .external_lex_state = 2}, [4564] = {.lex_state = 96, .external_lex_state = 2}, - [4565] = {.lex_state = 96, .external_lex_state = 5}, - [4566] = {.lex_state = 96, .external_lex_state = 2}, - [4567] = {.lex_state = 96, .external_lex_state = 2}, + [4565] = {.lex_state = 96, .external_lex_state = 2}, + [4566] = {.lex_state = 96, .external_lex_state = 5}, + [4567] = {.lex_state = 96, .external_lex_state = 5}, [4568] = {.lex_state = 96, .external_lex_state = 5}, [4569] = {.lex_state = 96, .external_lex_state = 5}, [4570] = {.lex_state = 96, .external_lex_state = 5}, - [4571] = {.lex_state = 96, .external_lex_state = 2}, + [4571] = {.lex_state = 96, .external_lex_state = 5}, [4572] = {.lex_state = 96, .external_lex_state = 5}, [4573] = {.lex_state = 96, .external_lex_state = 5}, - [4574] = {.lex_state = 96, .external_lex_state = 5}, + [4574] = {.lex_state = 96, .external_lex_state = 2}, [4575] = {.lex_state = 96, .external_lex_state = 5}, [4576] = {.lex_state = 96, .external_lex_state = 5}, - [4577] = {.lex_state = 96, .external_lex_state = 2}, - [4578] = {.lex_state = 96, .external_lex_state = 2}, + [4577] = {.lex_state = 96, .external_lex_state = 5}, + [4578] = {.lex_state = 96, .external_lex_state = 5}, [4579] = {.lex_state = 96, .external_lex_state = 2}, [4580] = {.lex_state = 96, .external_lex_state = 2}, - [4581] = {.lex_state = 96, .external_lex_state = 5}, - [4582] = {.lex_state = 96, .external_lex_state = 5}, - [4583] = {.lex_state = 96, .external_lex_state = 5}, - [4584] = {.lex_state = 96, .external_lex_state = 2}, - [4585] = {.lex_state = 96, .external_lex_state = 5}, - [4586] = {.lex_state = 96, .external_lex_state = 5}, + [4581] = {.lex_state = 96, .external_lex_state = 2}, + [4582] = {.lex_state = 96, .external_lex_state = 2}, + [4583] = {.lex_state = 96, .external_lex_state = 2}, + [4584] = {.lex_state = 96, .external_lex_state = 5}, + [4585] = {.lex_state = 96, .external_lex_state = 2}, + [4586] = {.lex_state = 96, .external_lex_state = 2}, [4587] = {.lex_state = 96, .external_lex_state = 2}, - [4588] = {.lex_state = 96, .external_lex_state = 2}, - [4589] = {.lex_state = 96, .external_lex_state = 5}, - [4590] = {.lex_state = 96, .external_lex_state = 5}, - [4591] = {.lex_state = 96, .external_lex_state = 5}, + [4588] = {.lex_state = 96, .external_lex_state = 5}, + [4589] = {.lex_state = 96, .external_lex_state = 2}, + [4590] = {.lex_state = 96, .external_lex_state = 2}, + [4591] = {.lex_state = 96, .external_lex_state = 2}, [4592] = {.lex_state = 96, .external_lex_state = 2}, [4593] = {.lex_state = 96, .external_lex_state = 2}, - [4594] = {.lex_state = 96, .external_lex_state = 2}, - [4595] = {.lex_state = 96, .external_lex_state = 2}, - [4596] = {.lex_state = 96, .external_lex_state = 2}, - [4597] = {.lex_state = 96, .external_lex_state = 5}, - [4598] = {.lex_state = 96, .external_lex_state = 5}, - [4599] = {.lex_state = 96, .external_lex_state = 5}, + [4594] = {.lex_state = 96, .external_lex_state = 5}, + [4595] = {.lex_state = 96, .external_lex_state = 5}, + [4596] = {.lex_state = 96, .external_lex_state = 5}, + [4597] = {.lex_state = 96, .external_lex_state = 2}, + [4598] = {.lex_state = 96, .external_lex_state = 2}, + [4599] = {.lex_state = 96, .external_lex_state = 2}, [4600] = {.lex_state = 96, .external_lex_state = 2}, - [4601] = {.lex_state = 96, .external_lex_state = 2}, + [4601] = {.lex_state = 96, .external_lex_state = 5}, [4602] = {.lex_state = 96, .external_lex_state = 2}, [4603] = {.lex_state = 96, .external_lex_state = 2}, - [4604] = {.lex_state = 96, .external_lex_state = 5}, + [4604] = {.lex_state = 96, .external_lex_state = 2}, [4605] = {.lex_state = 96, .external_lex_state = 2}, - [4606] = {.lex_state = 96, .external_lex_state = 2}, - [4607] = {.lex_state = 96, .external_lex_state = 2}, + [4606] = {.lex_state = 96, .external_lex_state = 5}, + [4607] = {.lex_state = 96, .external_lex_state = 5}, [4608] = {.lex_state = 96, .external_lex_state = 5}, - [4609] = {.lex_state = 96, .external_lex_state = 2}, - [4610] = {.lex_state = 96, .external_lex_state = 5}, - [4611] = {.lex_state = 96, .external_lex_state = 5}, - [4612] = {.lex_state = 4, .external_lex_state = 2}, - [4613] = {.lex_state = 1, .external_lex_state = 2}, + [4609] = {.lex_state = 96, .external_lex_state = 5}, + [4610] = {.lex_state = 96, .external_lex_state = 2}, + [4611] = {.lex_state = 96, .external_lex_state = 2}, + [4612] = {.lex_state = 1, .external_lex_state = 2}, + [4613] = {.lex_state = 96, .external_lex_state = 5}, [4614] = {.lex_state = 96, .external_lex_state = 5}, - [4615] = {.lex_state = 96, .external_lex_state = 2}, + [4615] = {.lex_state = 4, .external_lex_state = 2}, [4616] = {.lex_state = 96, .external_lex_state = 5}, [4617] = {.lex_state = 96, .external_lex_state = 2}, [4618] = {.lex_state = 96, .external_lex_state = 5}, - [4619] = {.lex_state = 96, .external_lex_state = 5}, + [4619] = {.lex_state = 96, .external_lex_state = 2}, [4620] = {.lex_state = 96, .external_lex_state = 5}, [4621] = {.lex_state = 96, .external_lex_state = 5}, - [4622] = {.lex_state = 96, .external_lex_state = 2}, + [4622] = {.lex_state = 96, .external_lex_state = 5}, [4623] = {.lex_state = 96, .external_lex_state = 5}, [4624] = {.lex_state = 96, .external_lex_state = 5}, - [4625] = {.lex_state = 96, .external_lex_state = 5}, + [4625] = {.lex_state = 96, .external_lex_state = 2}, [4626] = {.lex_state = 96, .external_lex_state = 5}, - [4627] = {.lex_state = 96, .external_lex_state = 2}, + [4627] = {.lex_state = 96, .external_lex_state = 5}, [4628] = {.lex_state = 96, .external_lex_state = 5}, - [4629] = {.lex_state = 96, .external_lex_state = 2}, + [4629] = {.lex_state = 1, .external_lex_state = 2}, [4630] = {.lex_state = 96, .external_lex_state = 5}, - [4631] = {.lex_state = 96, .external_lex_state = 5}, - [4632] = {.lex_state = 1, .external_lex_state = 2}, - [4633] = {.lex_state = 96, .external_lex_state = 5}, - [4634] = {.lex_state = 96, .external_lex_state = 5}, + [4631] = {.lex_state = 96, .external_lex_state = 2}, + [4632] = {.lex_state = 96, .external_lex_state = 5}, + [4633] = {.lex_state = 96, .external_lex_state = 2}, + [4634] = {.lex_state = 96, .external_lex_state = 2}, [4635] = {.lex_state = 96, .external_lex_state = 2}, - [4636] = {.lex_state = 96, .external_lex_state = 5}, - [4637] = {.lex_state = 96, .external_lex_state = 2}, + [4636] = {.lex_state = 96, .external_lex_state = 2}, + [4637] = {.lex_state = 96, .external_lex_state = 5}, [4638] = {.lex_state = 96, .external_lex_state = 2}, - [4639] = {.lex_state = 96, .external_lex_state = 2}, - [4640] = {.lex_state = 96, .external_lex_state = 2}, + [4639] = {.lex_state = 96, .external_lex_state = 5}, + [4640] = {.lex_state = 96, .external_lex_state = 5}, [4641] = {.lex_state = 96, .external_lex_state = 2}, - [4642] = {.lex_state = 96, .external_lex_state = 5}, + [4642] = {.lex_state = 96, .external_lex_state = 2}, [4643] = {.lex_state = 96, .external_lex_state = 5}, [4644] = {.lex_state = 96, .external_lex_state = 2}, [4645] = {.lex_state = 96, .external_lex_state = 2}, - [4646] = {.lex_state = 96, .external_lex_state = 5}, + [4646] = {.lex_state = 96, .external_lex_state = 2}, [4647] = {.lex_state = 96, .external_lex_state = 5}, [4648] = {.lex_state = 96, .external_lex_state = 2}, - [4649] = {.lex_state = 96, .external_lex_state = 2}, - [4650] = {.lex_state = 96, .external_lex_state = 5}, - [4651] = {.lex_state = 96, .external_lex_state = 2}, + [4649] = {.lex_state = 96, .external_lex_state = 5}, + [4650] = {.lex_state = 96, .external_lex_state = 2}, + [4651] = {.lex_state = 96, .external_lex_state = 5}, [4652] = {.lex_state = 96, .external_lex_state = 5}, [4653] = {.lex_state = 96, .external_lex_state = 2}, - [4654] = {.lex_state = 96, .external_lex_state = 2}, - [4655] = {.lex_state = 96, .external_lex_state = 5}, + [4654] = {.lex_state = 96, .external_lex_state = 5}, + [4655] = {.lex_state = 96, .external_lex_state = 2}, [4656] = {.lex_state = 96, .external_lex_state = 5}, - [4657] = {.lex_state = 96, .external_lex_state = 2}, + [4657] = {.lex_state = 96, .external_lex_state = 5}, [4658] = {.lex_state = 96, .external_lex_state = 5}, - [4659] = {.lex_state = 96, .external_lex_state = 5}, + [4659] = {.lex_state = 96, .external_lex_state = 2}, [4660] = {.lex_state = 96, .external_lex_state = 5}, - [4661] = {.lex_state = 96, .external_lex_state = 2}, + [4661] = {.lex_state = 4, .external_lex_state = 2}, [4662] = {.lex_state = 96, .external_lex_state = 5}, - [4663] = {.lex_state = 96, .external_lex_state = 5}, - [4664] = {.lex_state = 96, .external_lex_state = 5}, + [4663] = {.lex_state = 96, .external_lex_state = 2}, + [4664] = {.lex_state = 96, .external_lex_state = 2}, [4665] = {.lex_state = 96, .external_lex_state = 5}, - [4666] = {.lex_state = 96, .external_lex_state = 2}, - [4667] = {.lex_state = 96, .external_lex_state = 2}, + [4666] = {.lex_state = 96, .external_lex_state = 5}, + [4667] = {.lex_state = 96, .external_lex_state = 5}, [4668] = {.lex_state = 96, .external_lex_state = 2}, - [4669] = {.lex_state = 96, .external_lex_state = 5}, - [4670] = {.lex_state = 4, .external_lex_state = 2}, - [4671] = {.lex_state = 96, .external_lex_state = 5}, + [4669] = {.lex_state = 96, .external_lex_state = 2}, + [4670] = {.lex_state = 96, .external_lex_state = 5}, + [4671] = {.lex_state = 4, .external_lex_state = 2}, [4672] = {.lex_state = 96, .external_lex_state = 5}, - [4673] = {.lex_state = 96, .external_lex_state = 2}, - [4674] = {.lex_state = 96, .external_lex_state = 5}, - [4675] = {.lex_state = 4, .external_lex_state = 2}, + [4673] = {.lex_state = 96, .external_lex_state = 5}, + [4674] = {.lex_state = 96, .external_lex_state = 2}, + [4675] = {.lex_state = 96, .external_lex_state = 5}, [4676] = {.lex_state = 96, .external_lex_state = 2}, - [4677] = {.lex_state = 96, .external_lex_state = 2}, + [4677] = {.lex_state = 96, .external_lex_state = 5}, [4678] = {.lex_state = 96, .external_lex_state = 5}, [4679] = {.lex_state = 96, .external_lex_state = 2}, - [4680] = {.lex_state = 96, .external_lex_state = 2}, - [4681] = {.lex_state = 96, .external_lex_state = 5}, + [4680] = {.lex_state = 96, .external_lex_state = 5}, + [4681] = {.lex_state = 96, .external_lex_state = 2}, [4682] = {.lex_state = 96, .external_lex_state = 5}, [4683] = {.lex_state = 96, .external_lex_state = 2}, - [4684] = {.lex_state = 96, .external_lex_state = 5}, - [4685] = {.lex_state = 96, .external_lex_state = 2}, - [4686] = {.lex_state = 12, .external_lex_state = 2}, - [4687] = {.lex_state = 96, .external_lex_state = 2}, + [4684] = {.lex_state = 96, .external_lex_state = 2}, + [4685] = {.lex_state = 96, .external_lex_state = 5}, + [4686] = {.lex_state = 96, .external_lex_state = 5}, + [4687] = {.lex_state = 96, .external_lex_state = 5}, [4688] = {.lex_state = 96, .external_lex_state = 5}, - [4689] = {.lex_state = 96, .external_lex_state = 5}, + [4689] = {.lex_state = 4, .external_lex_state = 2}, [4690] = {.lex_state = 96, .external_lex_state = 5}, - [4691] = {.lex_state = 96, .external_lex_state = 5}, - [4692] = {.lex_state = 4, .external_lex_state = 2}, + [4691] = {.lex_state = 96, .external_lex_state = 2}, + [4692] = {.lex_state = 96, .external_lex_state = 2}, [4693] = {.lex_state = 96, .external_lex_state = 5}, [4694] = {.lex_state = 96, .external_lex_state = 5}, [4695] = {.lex_state = 96, .external_lex_state = 2}, - [4696] = {.lex_state = 96, .external_lex_state = 2}, - [4697] = {.lex_state = 96, .external_lex_state = 5}, + [4696] = {.lex_state = 96, .external_lex_state = 5}, + [4697] = {.lex_state = 96, .external_lex_state = 2}, [4698] = {.lex_state = 96, .external_lex_state = 5}, - [4699] = {.lex_state = 96, .external_lex_state = 5}, + [4699] = {.lex_state = 96, .external_lex_state = 2}, [4700] = {.lex_state = 96, .external_lex_state = 2}, [4701] = {.lex_state = 96, .external_lex_state = 5}, [4702] = {.lex_state = 96, .external_lex_state = 5}, [4703] = {.lex_state = 96, .external_lex_state = 2}, - [4704] = {.lex_state = 96, .external_lex_state = 2}, - [4705] = {.lex_state = 96, .external_lex_state = 2}, + [4704] = {.lex_state = 96, .external_lex_state = 5}, + [4705] = {.lex_state = 96, .external_lex_state = 5}, [4706] = {.lex_state = 96, .external_lex_state = 5}, - [4707] = {.lex_state = 96, .external_lex_state = 2}, + [4707] = {.lex_state = 96, .external_lex_state = 5}, [4708] = {.lex_state = 96, .external_lex_state = 5}, [4709] = {.lex_state = 96, .external_lex_state = 5}, [4710] = {.lex_state = 96, .external_lex_state = 5}, @@ -17952,17 +17952,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4717] = {.lex_state = 96, .external_lex_state = 5}, [4718] = {.lex_state = 96, .external_lex_state = 5}, [4719] = {.lex_state = 96, .external_lex_state = 5}, - [4720] = {.lex_state = 96, .external_lex_state = 2}, - [4721] = {.lex_state = 96, .external_lex_state = 5}, + [4720] = {.lex_state = 96, .external_lex_state = 5}, + [4721] = {.lex_state = 96, .external_lex_state = 2}, [4722] = {.lex_state = 96, .external_lex_state = 5}, [4723] = {.lex_state = 96, .external_lex_state = 5}, [4724] = {.lex_state = 96, .external_lex_state = 2}, [4725] = {.lex_state = 96, .external_lex_state = 5}, [4726] = {.lex_state = 96, .external_lex_state = 5}, - [4727] = {.lex_state = 96, .external_lex_state = 5}, - [4728] = {.lex_state = 96, .external_lex_state = 2}, + [4727] = {.lex_state = 96, .external_lex_state = 2}, + [4728] = {.lex_state = 96, .external_lex_state = 5}, [4729] = {.lex_state = 96, .external_lex_state = 5}, - [4730] = {.lex_state = 96, .external_lex_state = 2}, + [4730] = {.lex_state = 96, .external_lex_state = 5}, [4731] = {.lex_state = 96, .external_lex_state = 5}, [4732] = {.lex_state = 96, .external_lex_state = 5}, [4733] = {.lex_state = 96, .external_lex_state = 5}, @@ -17976,13 +17976,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4741] = {.lex_state = 96, .external_lex_state = 5}, [4742] = {.lex_state = 96, .external_lex_state = 5}, [4743] = {.lex_state = 96, .external_lex_state = 5}, - [4744] = {.lex_state = 96, .external_lex_state = 5}, + [4744] = {.lex_state = 96, .external_lex_state = 2}, [4745] = {.lex_state = 96, .external_lex_state = 5}, [4746] = {.lex_state = 96, .external_lex_state = 5}, [4747] = {.lex_state = 96, .external_lex_state = 5}, [4748] = {.lex_state = 96, .external_lex_state = 5}, [4749] = {.lex_state = 96, .external_lex_state = 5}, - [4750] = {.lex_state = 96, .external_lex_state = 2}, + [4750] = {.lex_state = 96, .external_lex_state = 5}, [4751] = {.lex_state = 96, .external_lex_state = 5}, [4752] = {.lex_state = 96, .external_lex_state = 5}, [4753] = {.lex_state = 96, .external_lex_state = 5}, @@ -17990,39 +17990,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4755] = {.lex_state = 96, .external_lex_state = 5}, [4756] = {.lex_state = 96, .external_lex_state = 5}, [4757] = {.lex_state = 96, .external_lex_state = 5}, - [4758] = {.lex_state = 96, .external_lex_state = 2}, + [4758] = {.lex_state = 96, .external_lex_state = 5}, [4759] = {.lex_state = 96, .external_lex_state = 5}, [4760] = {.lex_state = 96, .external_lex_state = 5}, - [4761] = {.lex_state = 96, .external_lex_state = 5}, - [4762] = {.lex_state = 96, .external_lex_state = 5}, - [4763] = {.lex_state = 96, .external_lex_state = 5}, + [4761] = {.lex_state = 96, .external_lex_state = 2}, + [4762] = {.lex_state = 96, .external_lex_state = 2}, + [4763] = {.lex_state = 96, .external_lex_state = 2}, [4764] = {.lex_state = 96, .external_lex_state = 5}, - [4765] = {.lex_state = 96, .external_lex_state = 5}, - [4766] = {.lex_state = 96, .external_lex_state = 5}, - [4767] = {.lex_state = 96, .external_lex_state = 2}, - [4768] = {.lex_state = 96, .external_lex_state = 5}, - [4769] = {.lex_state = 96, .external_lex_state = 2}, + [4765] = {.lex_state = 96, .external_lex_state = 2}, + [4766] = {.lex_state = 4, .external_lex_state = 2}, + [4767] = {.lex_state = 96, .external_lex_state = 5}, + [4768] = {.lex_state = 96, .external_lex_state = 2}, + [4769] = {.lex_state = 96, .external_lex_state = 5}, [4770] = {.lex_state = 96, .external_lex_state = 5}, - [4771] = {.lex_state = 4, .external_lex_state = 2}, - [4772] = {.lex_state = 96, .external_lex_state = 2}, + [4771] = {.lex_state = 96, .external_lex_state = 5}, + [4772] = {.lex_state = 96, .external_lex_state = 5}, [4773] = {.lex_state = 96, .external_lex_state = 5}, - [4774] = {.lex_state = 96, .external_lex_state = 5}, - [4775] = {.lex_state = 96, .external_lex_state = 2}, + [4774] = {.lex_state = 96, .external_lex_state = 2}, + [4775] = {.lex_state = 96, .external_lex_state = 5}, [4776] = {.lex_state = 96, .external_lex_state = 5}, - [4777] = {.lex_state = 96, .external_lex_state = 5}, + [4777] = {.lex_state = 1, .external_lex_state = 2}, [4778] = {.lex_state = 96, .external_lex_state = 2}, [4779] = {.lex_state = 96, .external_lex_state = 2}, - [4780] = {.lex_state = 96, .external_lex_state = 5}, - [4781] = {.lex_state = 96, .external_lex_state = 2}, + [4780] = {.lex_state = 96, .external_lex_state = 2}, + [4781] = {.lex_state = 96, .external_lex_state = 5}, [4782] = {.lex_state = 96, .external_lex_state = 5}, - [4783] = {.lex_state = 96, .external_lex_state = 2}, + [4783] = {.lex_state = 96, .external_lex_state = 5}, [4784] = {.lex_state = 96, .external_lex_state = 2}, [4785] = {.lex_state = 96, .external_lex_state = 5}, - [4786] = {.lex_state = 96, .external_lex_state = 5}, - [4787] = {.lex_state = 96, .external_lex_state = 2}, - [4788] = {.lex_state = 96, .external_lex_state = 2}, - [4789] = {.lex_state = 96, .external_lex_state = 2}, - [4790] = {.lex_state = 96, .external_lex_state = 5}, + [4786] = {.lex_state = 96, .external_lex_state = 2}, + [4787] = {.lex_state = 96, .external_lex_state = 5}, + [4788] = {.lex_state = 96, .external_lex_state = 5}, + [4789] = {.lex_state = 96, .external_lex_state = 5}, + [4790] = {.lex_state = 96, .external_lex_state = 2}, [4791] = {.lex_state = 96, .external_lex_state = 5}, [4792] = {.lex_state = 96, .external_lex_state = 5}, [4793] = {.lex_state = 96, .external_lex_state = 5}, @@ -18033,51 +18033,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4798] = {.lex_state = 96, .external_lex_state = 5}, [4799] = {.lex_state = 96, .external_lex_state = 5}, [4800] = {.lex_state = 96, .external_lex_state = 5}, - [4801] = {.lex_state = 96, .external_lex_state = 5}, + [4801] = {.lex_state = 96, .external_lex_state = 2}, [4802] = {.lex_state = 96, .external_lex_state = 5}, - [4803] = {.lex_state = 96, .external_lex_state = 2}, + [4803] = {.lex_state = 96, .external_lex_state = 5}, [4804] = {.lex_state = 96, .external_lex_state = 5}, - [4805] = {.lex_state = 96, .external_lex_state = 5}, + [4805] = {.lex_state = 96, .external_lex_state = 2}, [4806] = {.lex_state = 96, .external_lex_state = 5}, - [4807] = {.lex_state = 96, .external_lex_state = 2}, + [4807] = {.lex_state = 96, .external_lex_state = 5}, [4808] = {.lex_state = 96, .external_lex_state = 5}, [4809] = {.lex_state = 96, .external_lex_state = 2}, - [4810] = {.lex_state = 96, .external_lex_state = 2}, + [4810] = {.lex_state = 96, .external_lex_state = 5}, [4811] = {.lex_state = 96, .external_lex_state = 5}, [4812] = {.lex_state = 96, .external_lex_state = 5}, [4813] = {.lex_state = 96, .external_lex_state = 5}, [4814] = {.lex_state = 96, .external_lex_state = 5}, [4815] = {.lex_state = 96, .external_lex_state = 5}, [4816] = {.lex_state = 96, .external_lex_state = 5}, - [4817] = {.lex_state = 1, .external_lex_state = 2}, + [4817] = {.lex_state = 96, .external_lex_state = 5}, [4818] = {.lex_state = 96, .external_lex_state = 5}, [4819] = {.lex_state = 96, .external_lex_state = 5}, [4820] = {.lex_state = 96, .external_lex_state = 2}, - [4821] = {.lex_state = 96, .external_lex_state = 5}, - [4822] = {.lex_state = 96, .external_lex_state = 2}, - [4823] = {.lex_state = 96, .external_lex_state = 5}, - [4824] = {.lex_state = 96, .external_lex_state = 2}, - [4825] = {.lex_state = 96, .external_lex_state = 2}, + [4821] = {.lex_state = 96, .external_lex_state = 2}, + [4822] = {.lex_state = 1, .external_lex_state = 2}, + [4823] = {.lex_state = 96, .external_lex_state = 2}, + [4824] = {.lex_state = 96, .external_lex_state = 5}, + [4825] = {.lex_state = 96, .external_lex_state = 5}, [4826] = {.lex_state = 96, .external_lex_state = 5}, [4827] = {.lex_state = 96, .external_lex_state = 5}, - [4828] = {.lex_state = 96, .external_lex_state = 5}, + [4828] = {.lex_state = 96, .external_lex_state = 2}, [4829] = {.lex_state = 96, .external_lex_state = 5}, - [4830] = {.lex_state = 96, .external_lex_state = 5}, + [4830] = {.lex_state = 96, .external_lex_state = 2}, [4831] = {.lex_state = 96, .external_lex_state = 5}, [4832] = {.lex_state = 96, .external_lex_state = 5}, [4833] = {.lex_state = 96, .external_lex_state = 5}, - [4834] = {.lex_state = 96, .external_lex_state = 5}, - [4835] = {.lex_state = 96, .external_lex_state = 2}, + [4834] = {.lex_state = 96, .external_lex_state = 2}, + [4835] = {.lex_state = 96, .external_lex_state = 5}, [4836] = {.lex_state = 96, .external_lex_state = 5}, [4837] = {.lex_state = 96, .external_lex_state = 5}, [4838] = {.lex_state = 96, .external_lex_state = 5}, [4839] = {.lex_state = 96, .external_lex_state = 5}, [4840] = {.lex_state = 96, .external_lex_state = 5}, [4841] = {.lex_state = 96, .external_lex_state = 5}, - [4842] = {.lex_state = 96, .external_lex_state = 5}, + [4842] = {.lex_state = 96, .external_lex_state = 2}, [4843] = {.lex_state = 96, .external_lex_state = 5}, [4844] = {.lex_state = 96, .external_lex_state = 5}, - [4845] = {.lex_state = 96, .external_lex_state = 2}, + [4845] = {.lex_state = 96, .external_lex_state = 5}, [4846] = {.lex_state = 96, .external_lex_state = 5}, [4847] = {.lex_state = 96, .external_lex_state = 5}, [4848] = {.lex_state = 96, .external_lex_state = 5}, @@ -18096,9 +18096,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4861] = {.lex_state = 96, .external_lex_state = 5}, [4862] = {.lex_state = 96, .external_lex_state = 5}, [4863] = {.lex_state = 96, .external_lex_state = 5}, - [4864] = {.lex_state = 96, .external_lex_state = 5}, + [4864] = {.lex_state = 96, .external_lex_state = 2}, [4865] = {.lex_state = 96, .external_lex_state = 5}, - [4866] = {.lex_state = 96, .external_lex_state = 5}, + [4866] = {.lex_state = 96, .external_lex_state = 2}, [4867] = {.lex_state = 96, .external_lex_state = 5}, [4868] = {.lex_state = 96, .external_lex_state = 5}, [4869] = {.lex_state = 96, .external_lex_state = 5}, @@ -18108,168 +18108,168 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4873] = {.lex_state = 96, .external_lex_state = 5}, [4874] = {.lex_state = 96, .external_lex_state = 5}, [4875] = {.lex_state = 96, .external_lex_state = 5}, - [4876] = {.lex_state = 96, .external_lex_state = 5}, + [4876] = {.lex_state = 96, .external_lex_state = 2}, [4877] = {.lex_state = 96, .external_lex_state = 5}, - [4878] = {.lex_state = 96, .external_lex_state = 2}, - [4879] = {.lex_state = 1, .external_lex_state = 2}, + [4878] = {.lex_state = 96, .external_lex_state = 5}, + [4879] = {.lex_state = 96, .external_lex_state = 5}, [4880] = {.lex_state = 96, .external_lex_state = 5}, [4881] = {.lex_state = 96, .external_lex_state = 5}, [4882] = {.lex_state = 96, .external_lex_state = 5}, [4883] = {.lex_state = 96, .external_lex_state = 5}, - [4884] = {.lex_state = 96, .external_lex_state = 5}, + [4884] = {.lex_state = 96, .external_lex_state = 2}, [4885] = {.lex_state = 96, .external_lex_state = 5}, - [4886] = {.lex_state = 96, .external_lex_state = 5}, - [4887] = {.lex_state = 96, .external_lex_state = 5}, - [4888] = {.lex_state = 96, .external_lex_state = 2}, + [4886] = {.lex_state = 96, .external_lex_state = 2}, + [4887] = {.lex_state = 1, .external_lex_state = 2}, + [4888] = {.lex_state = 96, .external_lex_state = 5}, [4889] = {.lex_state = 96, .external_lex_state = 5}, [4890] = {.lex_state = 96, .external_lex_state = 5}, [4891] = {.lex_state = 96, .external_lex_state = 5}, [4892] = {.lex_state = 96, .external_lex_state = 5}, [4893] = {.lex_state = 96, .external_lex_state = 5}, - [4894] = {.lex_state = 96, .external_lex_state = 2}, - [4895] = {.lex_state = 96, .external_lex_state = 5}, + [4894] = {.lex_state = 96, .external_lex_state = 5}, + [4895] = {.lex_state = 96, .external_lex_state = 2}, [4896] = {.lex_state = 96, .external_lex_state = 5}, - [4897] = {.lex_state = 96, .external_lex_state = 2}, + [4897] = {.lex_state = 96, .external_lex_state = 5}, [4898] = {.lex_state = 96, .external_lex_state = 5}, - [4899] = {.lex_state = 96, .external_lex_state = 5}, - [4900] = {.lex_state = 96, .external_lex_state = 5}, + [4899] = {.lex_state = 96, .external_lex_state = 2}, + [4900] = {.lex_state = 96, .external_lex_state = 2}, [4901] = {.lex_state = 96, .external_lex_state = 2}, [4902] = {.lex_state = 96, .external_lex_state = 2}, [4903] = {.lex_state = 96, .external_lex_state = 5}, - [4904] = {.lex_state = 96, .external_lex_state = 2}, - [4905] = {.lex_state = 96, .external_lex_state = 2}, - [4906] = {.lex_state = 96, .external_lex_state = 2}, - [4907] = {.lex_state = 96, .external_lex_state = 5}, + [4904] = {.lex_state = 96, .external_lex_state = 5}, + [4905] = {.lex_state = 96, .external_lex_state = 5}, + [4906] = {.lex_state = 96, .external_lex_state = 5}, + [4907] = {.lex_state = 96, .external_lex_state = 2}, [4908] = {.lex_state = 96, .external_lex_state = 2}, [4909] = {.lex_state = 96, .external_lex_state = 5}, - [4910] = {.lex_state = 96, .external_lex_state = 2}, + [4910] = {.lex_state = 96, .external_lex_state = 5}, [4911] = {.lex_state = 96, .external_lex_state = 5}, [4912] = {.lex_state = 96, .external_lex_state = 5}, [4913] = {.lex_state = 96, .external_lex_state = 5}, - [4914] = {.lex_state = 96, .external_lex_state = 5}, - [4915] = {.lex_state = 96, .external_lex_state = 2}, - [4916] = {.lex_state = 96, .external_lex_state = 5}, + [4914] = {.lex_state = 96, .external_lex_state = 2}, + [4915] = {.lex_state = 96, .external_lex_state = 5}, + [4916] = {.lex_state = 96, .external_lex_state = 2}, [4917] = {.lex_state = 96, .external_lex_state = 5}, [4918] = {.lex_state = 96, .external_lex_state = 5}, - [4919] = {.lex_state = 96, .external_lex_state = 5}, + [4919] = {.lex_state = 96, .external_lex_state = 2}, [4920] = {.lex_state = 96, .external_lex_state = 5}, [4921] = {.lex_state = 96, .external_lex_state = 5}, - [4922] = {.lex_state = 96, .external_lex_state = 2}, + [4922] = {.lex_state = 96, .external_lex_state = 5}, [4923] = {.lex_state = 96, .external_lex_state = 5}, - [4924] = {.lex_state = 96, .external_lex_state = 5}, + [4924] = {.lex_state = 96, .external_lex_state = 2}, [4925] = {.lex_state = 96, .external_lex_state = 5}, - [4926] = {.lex_state = 96, .external_lex_state = 2}, + [4926] = {.lex_state = 96, .external_lex_state = 5}, [4927] = {.lex_state = 96, .external_lex_state = 5}, [4928] = {.lex_state = 96, .external_lex_state = 5}, [4929] = {.lex_state = 96, .external_lex_state = 5}, - [4930] = {.lex_state = 96, .external_lex_state = 5}, + [4930] = {.lex_state = 96, .external_lex_state = 2}, [4931] = {.lex_state = 96, .external_lex_state = 5}, [4932] = {.lex_state = 96, .external_lex_state = 5}, [4933] = {.lex_state = 96, .external_lex_state = 5}, - [4934] = {.lex_state = 96, .external_lex_state = 5}, - [4935] = {.lex_state = 1, .external_lex_state = 2}, + [4934] = {.lex_state = 96, .external_lex_state = 2}, + [4935] = {.lex_state = 96, .external_lex_state = 5}, [4936] = {.lex_state = 96, .external_lex_state = 5}, [4937] = {.lex_state = 96, .external_lex_state = 2}, [4938] = {.lex_state = 96, .external_lex_state = 5}, - [4939] = {.lex_state = 96, .external_lex_state = 2}, - [4940] = {.lex_state = 96, .external_lex_state = 2}, - [4941] = {.lex_state = 96, .external_lex_state = 2}, - [4942] = {.lex_state = 18, .external_lex_state = 8}, - [4943] = {.lex_state = 96, .external_lex_state = 5}, - [4944] = {.lex_state = 4, .external_lex_state = 2}, - [4945] = {.lex_state = 4, .external_lex_state = 2}, - [4946] = {.lex_state = 96, .external_lex_state = 5}, - [4947] = {.lex_state = 96, .external_lex_state = 2}, - [4948] = {.lex_state = 96, .external_lex_state = 2}, - [4949] = {.lex_state = 96, .external_lex_state = 5}, + [4939] = {.lex_state = 4, .external_lex_state = 2}, + [4940] = {.lex_state = 18, .external_lex_state = 8}, + [4941] = {.lex_state = 96, .external_lex_state = 5}, + [4942] = {.lex_state = 4, .external_lex_state = 2}, + [4943] = {.lex_state = 96, .external_lex_state = 2}, + [4944] = {.lex_state = 96, .external_lex_state = 5}, + [4945] = {.lex_state = 96, .external_lex_state = 2}, + [4946] = {.lex_state = 96, .external_lex_state = 2}, + [4947] = {.lex_state = 96, .external_lex_state = 5}, + [4948] = {.lex_state = 96, .external_lex_state = 5}, + [4949] = {.lex_state = 96, .external_lex_state = 2}, [4950] = {.lex_state = 96, .external_lex_state = 5}, [4951] = {.lex_state = 96, .external_lex_state = 5}, - [4952] = {.lex_state = 96, .external_lex_state = 2}, - [4953] = {.lex_state = 96, .external_lex_state = 5}, + [4952] = {.lex_state = 96, .external_lex_state = 5}, + [4953] = {.lex_state = 96, .external_lex_state = 2}, [4954] = {.lex_state = 96, .external_lex_state = 5}, [4955] = {.lex_state = 96, .external_lex_state = 5}, - [4956] = {.lex_state = 96, .external_lex_state = 2}, - [4957] = {.lex_state = 96, .external_lex_state = 5}, + [4956] = {.lex_state = 96, .external_lex_state = 5}, + [4957] = {.lex_state = 96, .external_lex_state = 2}, [4958] = {.lex_state = 96, .external_lex_state = 5}, [4959] = {.lex_state = 96, .external_lex_state = 5}, [4960] = {.lex_state = 96, .external_lex_state = 5}, - [4961] = {.lex_state = 96, .external_lex_state = 2}, - [4962] = {.lex_state = 96, .external_lex_state = 5}, - [4963] = {.lex_state = 96, .external_lex_state = 2}, - [4964] = {.lex_state = 96, .external_lex_state = 2}, + [4961] = {.lex_state = 96, .external_lex_state = 5}, + [4962] = {.lex_state = 96, .external_lex_state = 2}, + [4963] = {.lex_state = 96, .external_lex_state = 5}, + [4964] = {.lex_state = 96, .external_lex_state = 5}, [4965] = {.lex_state = 96, .external_lex_state = 2}, [4966] = {.lex_state = 96, .external_lex_state = 5}, [4967] = {.lex_state = 96, .external_lex_state = 5}, [4968] = {.lex_state = 96, .external_lex_state = 5}, - [4969] = {.lex_state = 96, .external_lex_state = 2}, + [4969] = {.lex_state = 96, .external_lex_state = 5}, [4970] = {.lex_state = 96, .external_lex_state = 2}, [4971] = {.lex_state = 96, .external_lex_state = 2}, - [4972] = {.lex_state = 96, .external_lex_state = 5}, + [4972] = {.lex_state = 96, .external_lex_state = 2}, [4973] = {.lex_state = 96, .external_lex_state = 5}, [4974] = {.lex_state = 96, .external_lex_state = 2}, [4975] = {.lex_state = 96, .external_lex_state = 5}, [4976] = {.lex_state = 96, .external_lex_state = 2}, - [4977] = {.lex_state = 96, .external_lex_state = 5}, + [4977] = {.lex_state = 96, .external_lex_state = 2}, [4978] = {.lex_state = 96, .external_lex_state = 5}, [4979] = {.lex_state = 96, .external_lex_state = 5}, [4980] = {.lex_state = 96, .external_lex_state = 5}, [4981] = {.lex_state = 96, .external_lex_state = 5}, [4982] = {.lex_state = 96, .external_lex_state = 5}, - [4983] = {.lex_state = 96, .external_lex_state = 2}, - [4984] = {.lex_state = 96, .external_lex_state = 5}, + [4983] = {.lex_state = 96, .external_lex_state = 5}, + [4984] = {.lex_state = 96, .external_lex_state = 2}, [4985] = {.lex_state = 96, .external_lex_state = 5}, [4986] = {.lex_state = 96, .external_lex_state = 5}, - [4987] = {.lex_state = 96, .external_lex_state = 2}, - [4988] = {.lex_state = 96, .external_lex_state = 2}, + [4987] = {.lex_state = 96, .external_lex_state = 5}, + [4988] = {.lex_state = 96, .external_lex_state = 5}, [4989] = {.lex_state = 96, .external_lex_state = 5}, [4990] = {.lex_state = 96, .external_lex_state = 2}, [4991] = {.lex_state = 96, .external_lex_state = 2}, [4992] = {.lex_state = 96, .external_lex_state = 5}, - [4993] = {.lex_state = 96, .external_lex_state = 5}, + [4993] = {.lex_state = 96, .external_lex_state = 2}, [4994] = {.lex_state = 96, .external_lex_state = 2}, - [4995] = {.lex_state = 12, .external_lex_state = 2}, - [4996] = {.lex_state = 96, .external_lex_state = 5}, - [4997] = {.lex_state = 96, .external_lex_state = 2}, + [4995] = {.lex_state = 96, .external_lex_state = 5}, + [4996] = {.lex_state = 12, .external_lex_state = 2}, + [4997] = {.lex_state = 96, .external_lex_state = 5}, [4998] = {.lex_state = 96, .external_lex_state = 2}, [4999] = {.lex_state = 96, .external_lex_state = 5}, [5000] = {.lex_state = 96, .external_lex_state = 2}, - [5001] = {.lex_state = 96, .external_lex_state = 5}, + [5001] = {.lex_state = 96, .external_lex_state = 2}, [5002] = {.lex_state = 96, .external_lex_state = 5}, [5003] = {.lex_state = 96, .external_lex_state = 5}, - [5004] = {.lex_state = 96, .external_lex_state = 5}, + [5004] = {.lex_state = 96, .external_lex_state = 2}, [5005] = {.lex_state = 96, .external_lex_state = 5}, - [5006] = {.lex_state = 96, .external_lex_state = 5}, + [5006] = {.lex_state = 96, .external_lex_state = 2}, [5007] = {.lex_state = 96, .external_lex_state = 2}, [5008] = {.lex_state = 96, .external_lex_state = 2}, [5009] = {.lex_state = 96, .external_lex_state = 5}, [5010] = {.lex_state = 96, .external_lex_state = 2}, - [5011] = {.lex_state = 96, .external_lex_state = 2}, + [5011] = {.lex_state = 96, .external_lex_state = 5}, [5012] = {.lex_state = 96, .external_lex_state = 5}, - [5013] = {.lex_state = 96, .external_lex_state = 5}, + [5013] = {.lex_state = 96, .external_lex_state = 2}, [5014] = {.lex_state = 96, .external_lex_state = 5}, - [5015] = {.lex_state = 96, .external_lex_state = 5}, - [5016] = {.lex_state = 96, .external_lex_state = 2}, + [5015] = {.lex_state = 96, .external_lex_state = 2}, + [5016] = {.lex_state = 96, .external_lex_state = 5}, [5017] = {.lex_state = 96, .external_lex_state = 5}, [5018] = {.lex_state = 96, .external_lex_state = 5}, - [5019] = {.lex_state = 96, .external_lex_state = 5}, - [5020] = {.lex_state = 96, .external_lex_state = 2}, + [5019] = {.lex_state = 96, .external_lex_state = 2}, + [5020] = {.lex_state = 96, .external_lex_state = 5}, [5021] = {.lex_state = 96, .external_lex_state = 5}, - [5022] = {.lex_state = 96, .external_lex_state = 2}, + [5022] = {.lex_state = 96, .external_lex_state = 5}, [5023] = {.lex_state = 96, .external_lex_state = 5}, [5024] = {.lex_state = 96, .external_lex_state = 5}, [5025] = {.lex_state = 96, .external_lex_state = 5}, [5026] = {.lex_state = 96, .external_lex_state = 5}, [5027] = {.lex_state = 96, .external_lex_state = 5}, - [5028] = {.lex_state = 96, .external_lex_state = 5}, - [5029] = {.lex_state = 96, .external_lex_state = 2}, - [5030] = {.lex_state = 96, .external_lex_state = 5}, + [5028] = {.lex_state = 96, .external_lex_state = 2}, + [5029] = {.lex_state = 96, .external_lex_state = 5}, + [5030] = {.lex_state = 96, .external_lex_state = 2}, [5031] = {.lex_state = 96, .external_lex_state = 5}, [5032] = {.lex_state = 96, .external_lex_state = 5}, [5033] = {.lex_state = 96, .external_lex_state = 5}, - [5034] = {.lex_state = 96, .external_lex_state = 2}, + [5034] = {.lex_state = 96, .external_lex_state = 5}, [5035] = {.lex_state = 96, .external_lex_state = 5}, - [5036] = {.lex_state = 96, .external_lex_state = 5}, - [5037] = {.lex_state = 96, .external_lex_state = 5}, + [5036] = {.lex_state = 96, .external_lex_state = 2}, + [5037] = {.lex_state = 96, .external_lex_state = 2}, [5038] = {.lex_state = 96, .external_lex_state = 5}, [5039] = {.lex_state = 96, .external_lex_state = 5}, [5040] = {.lex_state = 96, .external_lex_state = 5}, @@ -18288,9 +18288,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5053] = {.lex_state = 96, .external_lex_state = 5}, [5054] = {.lex_state = 96, .external_lex_state = 5}, [5055] = {.lex_state = 96, .external_lex_state = 5}, - [5056] = {.lex_state = 96, .external_lex_state = 2}, + [5056] = {.lex_state = 96, .external_lex_state = 5}, [5057] = {.lex_state = 96, .external_lex_state = 5}, - [5058] = {.lex_state = 96, .external_lex_state = 5}, + [5058] = {.lex_state = 96, .external_lex_state = 2}, [5059] = {.lex_state = 96, .external_lex_state = 5}, [5060] = {.lex_state = 96, .external_lex_state = 5}, [5061] = {.lex_state = 96, .external_lex_state = 5}, @@ -18323,7 +18323,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5088] = {.lex_state = 96, .external_lex_state = 5}, [5089] = {.lex_state = 96, .external_lex_state = 5}, [5090] = {.lex_state = 96, .external_lex_state = 5}, - [5091] = {.lex_state = 96, .external_lex_state = 2}, + [5091] = {.lex_state = 96, .external_lex_state = 5}, [5092] = {.lex_state = 96, .external_lex_state = 5}, [5093] = {.lex_state = 96, .external_lex_state = 5}, [5094] = {.lex_state = 96, .external_lex_state = 5}, @@ -18337,38 +18337,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5102] = {.lex_state = 96, .external_lex_state = 5}, [5103] = {.lex_state = 96, .external_lex_state = 5}, [5104] = {.lex_state = 96, .external_lex_state = 5}, - [5105] = {.lex_state = 96, .external_lex_state = 5}, - [5106] = {.lex_state = 96, .external_lex_state = 2}, - [5107] = {.lex_state = 96, .external_lex_state = 5}, + [5105] = {.lex_state = 96, .external_lex_state = 2}, + [5106] = {.lex_state = 96, .external_lex_state = 5}, + [5107] = {.lex_state = 4, .external_lex_state = 2}, [5108] = {.lex_state = 96, .external_lex_state = 5}, [5109] = {.lex_state = 96, .external_lex_state = 5}, - [5110] = {.lex_state = 4, .external_lex_state = 2}, + [5110] = {.lex_state = 96, .external_lex_state = 5}, [5111] = {.lex_state = 96, .external_lex_state = 5}, - [5112] = {.lex_state = 96, .external_lex_state = 5}, + [5112] = {.lex_state = 12, .external_lex_state = 2}, [5113] = {.lex_state = 96, .external_lex_state = 5}, [5114] = {.lex_state = 96, .external_lex_state = 5}, - [5115] = {.lex_state = 96, .external_lex_state = 5}, - [5116] = {.lex_state = 4, .external_lex_state = 2}, + [5115] = {.lex_state = 4, .external_lex_state = 2}, + [5116] = {.lex_state = 96, .external_lex_state = 2}, [5117] = {.lex_state = 96, .external_lex_state = 5}, [5118] = {.lex_state = 96, .external_lex_state = 5}, - [5119] = {.lex_state = 96, .external_lex_state = 2}, + [5119] = {.lex_state = 96, .external_lex_state = 5}, [5120] = {.lex_state = 96, .external_lex_state = 5}, [5121] = {.lex_state = 96, .external_lex_state = 5}, [5122] = {.lex_state = 96, .external_lex_state = 5}, [5123] = {.lex_state = 96, .external_lex_state = 5}, - [5124] = {.lex_state = 96, .external_lex_state = 5}, + [5124] = {.lex_state = 96, .external_lex_state = 2}, [5125] = {.lex_state = 96, .external_lex_state = 5}, - [5126] = {.lex_state = 96, .external_lex_state = 5}, - [5127] = {.lex_state = 96, .external_lex_state = 5}, + [5126] = {.lex_state = 96, .external_lex_state = 2}, + [5127] = {.lex_state = 96, .external_lex_state = 2}, [5128] = {.lex_state = 96, .external_lex_state = 5}, [5129] = {.lex_state = 96, .external_lex_state = 5}, [5130] = {.lex_state = 96, .external_lex_state = 5}, [5131] = {.lex_state = 96, .external_lex_state = 5}, [5132] = {.lex_state = 96, .external_lex_state = 2}, [5133] = {.lex_state = 96, .external_lex_state = 5}, - [5134] = {.lex_state = 96, .external_lex_state = 2}, + [5134] = {.lex_state = 96, .external_lex_state = 5}, [5135] = {.lex_state = 96, .external_lex_state = 5}, - [5136] = {.lex_state = 96, .external_lex_state = 2}, + [5136] = {.lex_state = 96, .external_lex_state = 5}, [5137] = {.lex_state = 96, .external_lex_state = 5}, [5138] = {.lex_state = 96, .external_lex_state = 2}, [5139] = {.lex_state = 96, .external_lex_state = 2}, @@ -18376,26 +18376,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5141] = {.lex_state = 96, .external_lex_state = 2}, [5142] = {.lex_state = 96, .external_lex_state = 2}, [5143] = {.lex_state = 96, .external_lex_state = 2}, - [5144] = {.lex_state = 96, .external_lex_state = 5}, - [5145] = {.lex_state = 96, .external_lex_state = 2}, + [5144] = {.lex_state = 96, .external_lex_state = 2}, + [5145] = {.lex_state = 96, .external_lex_state = 5}, [5146] = {.lex_state = 96, .external_lex_state = 2}, [5147] = {.lex_state = 96, .external_lex_state = 2}, [5148] = {.lex_state = 96, .external_lex_state = 5}, - [5149] = {.lex_state = 96, .external_lex_state = 2}, + [5149] = {.lex_state = 96, .external_lex_state = 5}, [5150] = {.lex_state = 96, .external_lex_state = 2}, - [5151] = {.lex_state = 96, .external_lex_state = 5}, - [5152] = {.lex_state = 96, .external_lex_state = 2}, - [5153] = {.lex_state = 96, .external_lex_state = 5}, + [5151] = {.lex_state = 96, .external_lex_state = 2}, + [5152] = {.lex_state = 96, .external_lex_state = 5}, + [5153] = {.lex_state = 96, .external_lex_state = 2}, [5154] = {.lex_state = 96, .external_lex_state = 2}, [5155] = {.lex_state = 96, .external_lex_state = 2}, [5156] = {.lex_state = 96, .external_lex_state = 2}, [5157] = {.lex_state = 96, .external_lex_state = 2}, [5158] = {.lex_state = 96, .external_lex_state = 2}, [5159] = {.lex_state = 96, .external_lex_state = 2}, - [5160] = {.lex_state = 96, .external_lex_state = 2}, + [5160] = {.lex_state = 96, .external_lex_state = 5}, [5161] = {.lex_state = 96, .external_lex_state = 2}, [5162] = {.lex_state = 96, .external_lex_state = 2}, - [5163] = {.lex_state = 96, .external_lex_state = 5}, + [5163] = {.lex_state = 96, .external_lex_state = 2}, [5164] = {.lex_state = 96, .external_lex_state = 2}, [5165] = {.lex_state = 96, .external_lex_state = 2}, [5166] = {.lex_state = 96, .external_lex_state = 2}, @@ -18405,20 +18405,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5170] = {.lex_state = 96, .external_lex_state = 2}, [5171] = {.lex_state = 96, .external_lex_state = 2}, [5172] = {.lex_state = 96, .external_lex_state = 2}, - [5173] = {.lex_state = 96, .external_lex_state = 5}, + [5173] = {.lex_state = 96, .external_lex_state = 2}, [5174] = {.lex_state = 96, .external_lex_state = 2}, [5175] = {.lex_state = 96, .external_lex_state = 2}, - [5176] = {.lex_state = 96, .external_lex_state = 2}, - [5177] = {.lex_state = 96, .external_lex_state = 5}, + [5176] = {.lex_state = 96, .external_lex_state = 5}, + [5177] = {.lex_state = 96, .external_lex_state = 2}, [5178] = {.lex_state = 96, .external_lex_state = 2}, [5179] = {.lex_state = 96, .external_lex_state = 2}, [5180] = {.lex_state = 96, .external_lex_state = 2}, [5181] = {.lex_state = 96, .external_lex_state = 2}, - [5182] = {.lex_state = 96, .external_lex_state = 2}, + [5182] = {.lex_state = 96, .external_lex_state = 5}, [5183] = {.lex_state = 96, .external_lex_state = 2}, [5184] = {.lex_state = 96, .external_lex_state = 2}, - [5185] = {.lex_state = 96, .external_lex_state = 2}, - [5186] = {.lex_state = 96, .external_lex_state = 5}, + [5185] = {.lex_state = 96, .external_lex_state = 5}, + [5186] = {.lex_state = 96, .external_lex_state = 2}, [5187] = {.lex_state = 96, .external_lex_state = 2}, [5188] = {.lex_state = 96, .external_lex_state = 2}, [5189] = {.lex_state = 96, .external_lex_state = 2}, @@ -18427,13 +18427,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5192] = {.lex_state = 96, .external_lex_state = 2}, [5193] = {.lex_state = 96, .external_lex_state = 2}, [5194] = {.lex_state = 96, .external_lex_state = 2}, - [5195] = {.lex_state = 96, .external_lex_state = 5}, + [5195] = {.lex_state = 96, .external_lex_state = 2}, [5196] = {.lex_state = 96, .external_lex_state = 2}, [5197] = {.lex_state = 96, .external_lex_state = 2}, [5198] = {.lex_state = 96, .external_lex_state = 5}, [5199] = {.lex_state = 96, .external_lex_state = 2}, [5200] = {.lex_state = 96, .external_lex_state = 2}, - [5201] = {.lex_state = 96, .external_lex_state = 2}, + [5201] = {.lex_state = 96, .external_lex_state = 5}, [5202] = {.lex_state = 96, .external_lex_state = 2}, [5203] = {.lex_state = 96, .external_lex_state = 2}, [5204] = {.lex_state = 96, .external_lex_state = 2}, @@ -18459,7 +18459,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5224] = {.lex_state = 96, .external_lex_state = 2}, [5225] = {.lex_state = 96, .external_lex_state = 2}, [5226] = {.lex_state = 96, .external_lex_state = 2}, - [5227] = {.lex_state = 96, .external_lex_state = 2}, + [5227] = {.lex_state = 96, .external_lex_state = 5}, [5228] = {.lex_state = 96, .external_lex_state = 2}, [5229] = {.lex_state = 96, .external_lex_state = 2}, [5230] = {.lex_state = 96, .external_lex_state = 2}, @@ -18480,15 +18480,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5245] = {.lex_state = 96, .external_lex_state = 2}, [5246] = {.lex_state = 96, .external_lex_state = 2}, [5247] = {.lex_state = 96, .external_lex_state = 2}, - [5248] = {.lex_state = 96, .external_lex_state = 5}, - [5249] = {.lex_state = 96, .external_lex_state = 5}, + [5248] = {.lex_state = 96, .external_lex_state = 2}, + [5249] = {.lex_state = 96, .external_lex_state = 2}, [5250] = {.lex_state = 96, .external_lex_state = 2}, [5251] = {.lex_state = 96, .external_lex_state = 2}, [5252] = {.lex_state = 96, .external_lex_state = 2}, [5253] = {.lex_state = 96, .external_lex_state = 2}, [5254] = {.lex_state = 96, .external_lex_state = 2}, - [5255] = {.lex_state = 96, .external_lex_state = 2}, - [5256] = {.lex_state = 96, .external_lex_state = 2}, + [5255] = {.lex_state = 96, .external_lex_state = 5}, + [5256] = {.lex_state = 96, .external_lex_state = 5}, [5257] = {.lex_state = 96, .external_lex_state = 2}, [5258] = {.lex_state = 96, .external_lex_state = 2}, [5259] = {.lex_state = 96, .external_lex_state = 2}, @@ -18511,21 +18511,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5276] = {.lex_state = 96, .external_lex_state = 2}, [5277] = {.lex_state = 96, .external_lex_state = 2}, [5278] = {.lex_state = 96, .external_lex_state = 2}, - [5279] = {.lex_state = 96, .external_lex_state = 5}, + [5279] = {.lex_state = 96, .external_lex_state = 2}, [5280] = {.lex_state = 96, .external_lex_state = 2}, [5281] = {.lex_state = 96, .external_lex_state = 2}, [5282] = {.lex_state = 96, .external_lex_state = 2}, - [5283] = {.lex_state = 96, .external_lex_state = 2}, + [5283] = {.lex_state = 96, .external_lex_state = 5}, [5284] = {.lex_state = 96, .external_lex_state = 2}, [5285] = {.lex_state = 96, .external_lex_state = 2}, [5286] = {.lex_state = 96, .external_lex_state = 2}, [5287] = {.lex_state = 96, .external_lex_state = 2}, - [5288] = {.lex_state = 96, .external_lex_state = 5}, + [5288] = {.lex_state = 96, .external_lex_state = 2}, [5289] = {.lex_state = 96, .external_lex_state = 2}, [5290] = {.lex_state = 96, .external_lex_state = 2}, [5291] = {.lex_state = 96, .external_lex_state = 2}, [5292] = {.lex_state = 96, .external_lex_state = 2}, - [5293] = {.lex_state = 96, .external_lex_state = 2}, + [5293] = {.lex_state = 96, .external_lex_state = 5}, [5294] = {.lex_state = 96, .external_lex_state = 2}, [5295] = {.lex_state = 96, .external_lex_state = 2}, [5296] = {.lex_state = 96, .external_lex_state = 2}, @@ -18535,26 +18535,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5300] = {.lex_state = 96, .external_lex_state = 2}, [5301] = {.lex_state = 96, .external_lex_state = 2}, [5302] = {.lex_state = 96, .external_lex_state = 2}, - [5303] = {.lex_state = 96, .external_lex_state = 5}, + [5303] = {.lex_state = 96, .external_lex_state = 2}, [5304] = {.lex_state = 96, .external_lex_state = 2}, [5305] = {.lex_state = 96, .external_lex_state = 2}, [5306] = {.lex_state = 96, .external_lex_state = 2}, - [5307] = {.lex_state = 96, .external_lex_state = 2}, - [5308] = {.lex_state = 96, .external_lex_state = 2}, + [5307] = {.lex_state = 96, .external_lex_state = 5}, + [5308] = {.lex_state = 96, .external_lex_state = 5}, [5309] = {.lex_state = 96, .external_lex_state = 2}, - [5310] = {.lex_state = 96, .external_lex_state = 5}, + [5310] = {.lex_state = 96, .external_lex_state = 2}, [5311] = {.lex_state = 96, .external_lex_state = 2}, - [5312] = {.lex_state = 96, .external_lex_state = 5}, + [5312] = {.lex_state = 96, .external_lex_state = 2}, [5313] = {.lex_state = 96, .external_lex_state = 2}, [5314] = {.lex_state = 96, .external_lex_state = 2}, [5315] = {.lex_state = 96, .external_lex_state = 2}, [5316] = {.lex_state = 96, .external_lex_state = 2}, [5317] = {.lex_state = 96, .external_lex_state = 2}, [5318] = {.lex_state = 96, .external_lex_state = 2}, - [5319] = {.lex_state = 96, .external_lex_state = 2}, + [5319] = {.lex_state = 96, .external_lex_state = 5}, [5320] = {.lex_state = 96, .external_lex_state = 2}, [5321] = {.lex_state = 96, .external_lex_state = 2}, - [5322] = {.lex_state = 96, .external_lex_state = 2}, + [5322] = {.lex_state = 96, .external_lex_state = 5}, [5323] = {.lex_state = 96, .external_lex_state = 2}, [5324] = {.lex_state = 96, .external_lex_state = 2}, [5325] = {.lex_state = 96, .external_lex_state = 2}, @@ -18573,14 +18573,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5338] = {.lex_state = 96, .external_lex_state = 2}, [5339] = {.lex_state = 96, .external_lex_state = 2}, [5340] = {.lex_state = 96, .external_lex_state = 2}, - [5341] = {.lex_state = 96, .external_lex_state = 5}, + [5341] = {.lex_state = 96, .external_lex_state = 2}, [5342] = {.lex_state = 96, .external_lex_state = 2}, [5343] = {.lex_state = 96, .external_lex_state = 2}, - [5344] = {.lex_state = 96, .external_lex_state = 5}, + [5344] = {.lex_state = 96, .external_lex_state = 2}, [5345] = {.lex_state = 96, .external_lex_state = 5}, [5346] = {.lex_state = 96, .external_lex_state = 2}, - [5347] = {.lex_state = 96, .external_lex_state = 2}, - [5348] = {.lex_state = 96, .external_lex_state = 2}, + [5347] = {.lex_state = 96, .external_lex_state = 5}, + [5348] = {.lex_state = 96, .external_lex_state = 5}, [5349] = {.lex_state = 96, .external_lex_state = 2}, [5350] = {.lex_state = 96, .external_lex_state = 2}, [5351] = {.lex_state = 96, .external_lex_state = 2}, @@ -18607,9 +18607,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5372] = {.lex_state = 96, .external_lex_state = 2}, [5373] = {.lex_state = 96, .external_lex_state = 2}, [5374] = {.lex_state = 96, .external_lex_state = 2}, - [5375] = {.lex_state = 96, .external_lex_state = 2}, + [5375] = {.lex_state = 96, .external_lex_state = 5}, [5376] = {.lex_state = 96, .external_lex_state = 2}, - [5377] = {.lex_state = 96, .external_lex_state = 5}, + [5377] = {.lex_state = 96, .external_lex_state = 2}, [5378] = {.lex_state = 96, .external_lex_state = 2}, [5379] = {.lex_state = 96, .external_lex_state = 2}, [5380] = {.lex_state = 96, .external_lex_state = 2}, @@ -18633,10 +18633,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5398] = {.lex_state = 96, .external_lex_state = 2}, [5399] = {.lex_state = 96, .external_lex_state = 2}, [5400] = {.lex_state = 96, .external_lex_state = 2}, - [5401] = {.lex_state = 96, .external_lex_state = 2}, + [5401] = {.lex_state = 96, .external_lex_state = 5}, [5402] = {.lex_state = 96, .external_lex_state = 2}, - [5403] = {.lex_state = 96, .external_lex_state = 2}, - [5404] = {.lex_state = 96, .external_lex_state = 5}, + [5403] = {.lex_state = 96, .external_lex_state = 5}, + [5404] = {.lex_state = 96, .external_lex_state = 2}, [5405] = {.lex_state = 96, .external_lex_state = 2}, [5406] = {.lex_state = 96, .external_lex_state = 2}, [5407] = {.lex_state = 96, .external_lex_state = 2}, @@ -18651,7 +18651,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5416] = {.lex_state = 96, .external_lex_state = 2}, [5417] = {.lex_state = 96, .external_lex_state = 2}, [5418] = {.lex_state = 96, .external_lex_state = 2}, - [5419] = {.lex_state = 96, .external_lex_state = 5}, + [5419] = {.lex_state = 96, .external_lex_state = 2}, [5420] = {.lex_state = 96, .external_lex_state = 2}, [5421] = {.lex_state = 96, .external_lex_state = 2}, [5422] = {.lex_state = 96, .external_lex_state = 2}, @@ -18659,28 +18659,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5424] = {.lex_state = 96, .external_lex_state = 2}, [5425] = {.lex_state = 96, .external_lex_state = 2}, [5426] = {.lex_state = 96, .external_lex_state = 2}, - [5427] = {.lex_state = 96, .external_lex_state = 5}, + [5427] = {.lex_state = 96, .external_lex_state = 2}, [5428] = {.lex_state = 96, .external_lex_state = 2}, [5429] = {.lex_state = 96, .external_lex_state = 2}, [5430] = {.lex_state = 96, .external_lex_state = 2}, [5431] = {.lex_state = 96, .external_lex_state = 2}, [5432] = {.lex_state = 96, .external_lex_state = 2}, - [5433] = {.lex_state = 96, .external_lex_state = 5}, + [5433] = {.lex_state = 96, .external_lex_state = 2}, [5434] = {.lex_state = 96, .external_lex_state = 2}, [5435] = {.lex_state = 96, .external_lex_state = 2}, [5436] = {.lex_state = 96, .external_lex_state = 2}, [5437] = {.lex_state = 96, .external_lex_state = 2}, [5438] = {.lex_state = 96, .external_lex_state = 2}, - [5439] = {.lex_state = 96, .external_lex_state = 2}, + [5439] = {.lex_state = 96, .external_lex_state = 5}, [5440] = {.lex_state = 96, .external_lex_state = 2}, [5441] = {.lex_state = 96, .external_lex_state = 2}, [5442] = {.lex_state = 96, .external_lex_state = 2}, - [5443] = {.lex_state = 96, .external_lex_state = 5}, + [5443] = {.lex_state = 96, .external_lex_state = 2}, [5444] = {.lex_state = 96, .external_lex_state = 2}, [5445] = {.lex_state = 96, .external_lex_state = 2}, - [5446] = {.lex_state = 96, .external_lex_state = 2}, + [5446] = {.lex_state = 96, .external_lex_state = 5}, [5447] = {.lex_state = 96, .external_lex_state = 2}, - [5448] = {.lex_state = 96, .external_lex_state = 5}, + [5448] = {.lex_state = 96, .external_lex_state = 2}, [5449] = {.lex_state = 96, .external_lex_state = 2}, [5450] = {.lex_state = 96, .external_lex_state = 2}, [5451] = {.lex_state = 96, .external_lex_state = 2}, @@ -18706,19 +18706,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5471] = {.lex_state = 96, .external_lex_state = 2}, [5472] = {.lex_state = 96, .external_lex_state = 2}, [5473] = {.lex_state = 96, .external_lex_state = 2}, - [5474] = {.lex_state = 96, .external_lex_state = 2}, - [5475] = {.lex_state = 96, .external_lex_state = 5}, + [5474] = {.lex_state = 96, .external_lex_state = 5}, + [5475] = {.lex_state = 96, .external_lex_state = 2}, [5476] = {.lex_state = 96, .external_lex_state = 2}, [5477] = {.lex_state = 96, .external_lex_state = 2}, [5478] = {.lex_state = 96, .external_lex_state = 2}, [5479] = {.lex_state = 96, .external_lex_state = 2}, [5480] = {.lex_state = 96, .external_lex_state = 2}, - [5481] = {.lex_state = 96, .external_lex_state = 2}, + [5481] = {.lex_state = 2, .external_lex_state = 10}, [5482] = {.lex_state = 96, .external_lex_state = 2}, [5483] = {.lex_state = 96, .external_lex_state = 2}, [5484] = {.lex_state = 96, .external_lex_state = 2}, [5485] = {.lex_state = 96, .external_lex_state = 2}, - [5486] = {.lex_state = 2, .external_lex_state = 10}, + [5486] = {.lex_state = 96, .external_lex_state = 2}, [5487] = {.lex_state = 96, .external_lex_state = 2}, [5488] = {.lex_state = 96, .external_lex_state = 2}, [5489] = {.lex_state = 96, .external_lex_state = 2}, @@ -18728,9 +18728,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5493] = {.lex_state = 96, .external_lex_state = 2}, [5494] = {.lex_state = 96, .external_lex_state = 2}, [5495] = {.lex_state = 96, .external_lex_state = 2}, - [5496] = {.lex_state = 2, .external_lex_state = 10}, + [5496] = {.lex_state = 96, .external_lex_state = 2}, [5497] = {.lex_state = 96, .external_lex_state = 2}, - [5498] = {.lex_state = 96, .external_lex_state = 2}, + [5498] = {.lex_state = 2, .external_lex_state = 10}, [5499] = {.lex_state = 96, .external_lex_state = 2}, [5500] = {.lex_state = 96, .external_lex_state = 2}, [5501] = {.lex_state = 96, .external_lex_state = 2}, @@ -18749,10 +18749,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5514] = {.lex_state = 96, .external_lex_state = 2}, [5515] = {.lex_state = 96, .external_lex_state = 2}, [5516] = {.lex_state = 96, .external_lex_state = 2}, - [5517] = {.lex_state = 2, .external_lex_state = 10}, + [5517] = {.lex_state = 96, .external_lex_state = 2}, [5518] = {.lex_state = 96, .external_lex_state = 2}, [5519] = {.lex_state = 96, .external_lex_state = 2}, - [5520] = {.lex_state = 96, .external_lex_state = 2}, + [5520] = {.lex_state = 2, .external_lex_state = 10}, [5521] = {.lex_state = 96, .external_lex_state = 2}, [5522] = {.lex_state = 96, .external_lex_state = 2}, [5523] = {.lex_state = 96, .external_lex_state = 2}, @@ -18804,7 +18804,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5569] = {.lex_state = 96, .external_lex_state = 2}, [5570] = {.lex_state = 96, .external_lex_state = 2}, [5571] = {.lex_state = 96, .external_lex_state = 2}, - [5572] = {.lex_state = 96, .external_lex_state = 2}, + [5572] = {.lex_state = 28, .external_lex_state = 2}, [5573] = {.lex_state = 96, .external_lex_state = 2}, [5574] = {.lex_state = 96, .external_lex_state = 2}, [5575] = {.lex_state = 96, .external_lex_state = 2}, @@ -18813,7 +18813,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5578] = {.lex_state = 96, .external_lex_state = 2}, [5579] = {.lex_state = 96, .external_lex_state = 2}, [5580] = {.lex_state = 96, .external_lex_state = 2}, - [5581] = {.lex_state = 28, .external_lex_state = 2}, + [5581] = {.lex_state = 96, .external_lex_state = 2}, [5582] = {.lex_state = 96, .external_lex_state = 2}, [5583] = {.lex_state = 96, .external_lex_state = 2}, [5584] = {.lex_state = 96, .external_lex_state = 2}, @@ -18843,7 +18843,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5608] = {.lex_state = 96, .external_lex_state = 2}, [5609] = {.lex_state = 96, .external_lex_state = 2}, [5610] = {.lex_state = 96, .external_lex_state = 2}, - [5611] = {.lex_state = 28, .external_lex_state = 2}, + [5611] = {.lex_state = 96, .external_lex_state = 2}, [5612] = {.lex_state = 96, .external_lex_state = 2}, [5613] = {.lex_state = 96, .external_lex_state = 2}, [5614] = {.lex_state = 96, .external_lex_state = 2}, @@ -18858,13 +18858,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5623] = {.lex_state = 96, .external_lex_state = 2}, [5624] = {.lex_state = 96, .external_lex_state = 2}, [5625] = {.lex_state = 96, .external_lex_state = 2}, - [5626] = {.lex_state = 2, .external_lex_state = 10}, + [5626] = {.lex_state = 96, .external_lex_state = 2}, [5627] = {.lex_state = 96, .external_lex_state = 2}, [5628] = {.lex_state = 96, .external_lex_state = 2}, [5629] = {.lex_state = 96, .external_lex_state = 2}, [5630] = {.lex_state = 96, .external_lex_state = 2}, [5631] = {.lex_state = 96, .external_lex_state = 2}, - [5632] = {.lex_state = 96, .external_lex_state = 2}, + [5632] = {.lex_state = 2, .external_lex_state = 10}, [5633] = {.lex_state = 96, .external_lex_state = 2}, [5634] = {.lex_state = 96, .external_lex_state = 2}, [5635] = {.lex_state = 96, .external_lex_state = 2}, @@ -18897,13 +18897,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5662] = {.lex_state = 96, .external_lex_state = 2}, [5663] = {.lex_state = 96, .external_lex_state = 2}, [5664] = {.lex_state = 96, .external_lex_state = 2}, - [5665] = {.lex_state = 96, .external_lex_state = 2}, + [5665] = {.lex_state = 28, .external_lex_state = 2}, [5666] = {.lex_state = 96, .external_lex_state = 2}, [5667] = {.lex_state = 96, .external_lex_state = 2}, - [5668] = {.lex_state = 28, .external_lex_state = 2}, - [5669] = {.lex_state = 28, .external_lex_state = 2}, + [5668] = {.lex_state = 96, .external_lex_state = 2}, + [5669] = {.lex_state = 96, .external_lex_state = 2}, [5670] = {.lex_state = 96, .external_lex_state = 2}, - [5671] = {.lex_state = 2, .external_lex_state = 10}, + [5671] = {.lex_state = 96, .external_lex_state = 2}, [5672] = {.lex_state = 96, .external_lex_state = 2}, [5673] = {.lex_state = 96, .external_lex_state = 2}, [5674] = {.lex_state = 96, .external_lex_state = 2}, @@ -18949,12 +18949,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5714] = {.lex_state = 96, .external_lex_state = 2}, [5715] = {.lex_state = 96, .external_lex_state = 2}, [5716] = {.lex_state = 96, .external_lex_state = 2}, - [5717] = {.lex_state = 96, .external_lex_state = 2}, + [5717] = {.lex_state = 28, .external_lex_state = 2}, [5718] = {.lex_state = 96, .external_lex_state = 2}, [5719] = {.lex_state = 96, .external_lex_state = 2}, [5720] = {.lex_state = 96, .external_lex_state = 2}, [5721] = {.lex_state = 96, .external_lex_state = 2}, - [5722] = {.lex_state = 96, .external_lex_state = 2}, + [5722] = {.lex_state = 28, .external_lex_state = 2}, [5723] = {.lex_state = 96, .external_lex_state = 2}, [5724] = {.lex_state = 96, .external_lex_state = 2}, [5725] = {.lex_state = 96, .external_lex_state = 2}, @@ -18976,7 +18976,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5741] = {.lex_state = 96, .external_lex_state = 2}, [5742] = {.lex_state = 96, .external_lex_state = 2}, [5743] = {.lex_state = 96, .external_lex_state = 2}, - [5744] = {.lex_state = 96, .external_lex_state = 2}, + [5744] = {.lex_state = 28, .external_lex_state = 2}, [5745] = {.lex_state = 96, .external_lex_state = 2}, [5746] = {.lex_state = 96, .external_lex_state = 2}, [5747] = {.lex_state = 96, .external_lex_state = 2}, @@ -19066,10 +19066,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5831] = {.lex_state = 96, .external_lex_state = 2}, [5832] = {.lex_state = 96, .external_lex_state = 2}, [5833] = {.lex_state = 96, .external_lex_state = 2}, - [5834] = {.lex_state = 28, .external_lex_state = 2}, + [5834] = {.lex_state = 96, .external_lex_state = 2}, [5835] = {.lex_state = 96, .external_lex_state = 2}, [5836] = {.lex_state = 96, .external_lex_state = 2}, - [5837] = {.lex_state = 96, .external_lex_state = 2}, + [5837] = {.lex_state = 2, .external_lex_state = 10}, [5838] = {.lex_state = 96, .external_lex_state = 2}, [5839] = {.lex_state = 96, .external_lex_state = 2}, [5840] = {.lex_state = 96, .external_lex_state = 2}, @@ -19166,10 +19166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [sym_glimmer_opening_tag] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), [anon_sym_class] = ACTIONS(1), [anon_sym_async] = ACTIONS(1), [anon_sym_function] = ACTIONS(1), @@ -19213,6 +19210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1), [anon_sym_BANG_EQ_EQ] = ACTIONS(1), [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), [anon_sym_QMARK_QMARK] = ACTIONS(1), [anon_sym_instanceof] = ACTIONS(1), [anon_sym_TILDE] = ACTIONS(1), @@ -19220,6 +19218,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1), [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_DASH_DASH] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), [sym_escape_sequence] = ACTIONS(1), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1), @@ -19282,86 +19282,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(5731), - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_program] = STATE(5881), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(17), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -19393,22 +19393,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -19444,7 +19444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [2] = { [sym_import] = STATE(3702), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -19452,68 +19452,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_array] = STATE(1691), [sym_array_pattern] = STATE(3739), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4085), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_pattern] = STATE(4086), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(117), @@ -19536,60 +19536,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(145), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(180), + [anon_sym_PLUS_PLUS] = ACTIONS(182), + [anon_sym_DASH_DASH] = ACTIONS(182), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -19626,13 +19626,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [3] = { [sym_import] = STATE(3702), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -19640,68 +19640,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_array] = STATE(1691), [sym_array_pattern] = STATE(3739), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4085), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_pattern] = STATE(4086), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(117), @@ -19724,60 +19724,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(145), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(180), + [anon_sym_PLUS_PLUS] = ACTIONS(182), + [anon_sym_DASH_DASH] = ACTIONS(182), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -19814,101 +19814,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5836), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5836), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5802), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5802), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5836), - [sym_spread_element] = STATE(4704), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2349), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(4704), - [sym_pair] = STATE(4704), - [sym_pair_pattern] = STATE(4567), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5802), + [sym_spread_element] = STATE(4699), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2350), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(4699), + [sym_pair] = STATE(4699), + [sym_pair_pattern] = STATE(4562), [sym__property_name] = STATE(3552), [sym_computed_property_name] = STATE(3552), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_accessibility_modifier] = STATE(2781), - [sym_override_modifier] = STATE(2816), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), + [sym_accessibility_modifier] = STATE(2785), + [sym_override_modifier] = STATE(2801), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3871), - [aux_sym_object_repeat1] = STATE(4657), - [aux_sym_object_pattern_repeat1] = STATE(4878), + [aux_sym_export_statement_repeat1] = STATE(3877), + [aux_sym_object_repeat1] = STATE(4653), + [aux_sym_object_pattern_repeat1] = STATE(4884), [sym_identifier] = ACTIONS(229), [anon_sym_export] = ACTIONS(231), [anon_sym_STAR] = ACTIONS(233), @@ -19941,23 +19941,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(245), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), + [anon_sym_class] = ACTIONS(69), [anon_sym_async] = ACTIONS(247), - [anon_sym_function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(249), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(253), @@ -19991,97 +19991,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5836), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5836), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5802), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5802), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5836), - [sym_spread_element] = STATE(4704), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2349), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(4704), - [sym_pair] = STATE(4704), - [sym_pair_pattern] = STATE(4567), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5802), + [sym_spread_element] = STATE(4699), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2350), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(4699), + [sym_pair] = STATE(4699), + [sym_pair_pattern] = STATE(4562), [sym__property_name] = STATE(3552), [sym_computed_property_name] = STATE(3552), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_accessibility_modifier] = STATE(2781), - [sym_override_modifier] = STATE(2816), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), + [sym_accessibility_modifier] = STATE(2785), + [sym_override_modifier] = STATE(2801), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3871), - [aux_sym_object_repeat1] = STATE(4657), - [aux_sym_object_pattern_repeat1] = STATE(4878), + [aux_sym_export_statement_repeat1] = STATE(3877), + [aux_sym_object_repeat1] = STATE(4653), + [aux_sym_object_pattern_repeat1] = STATE(4884), [sym_identifier] = ACTIONS(229), [anon_sym_export] = ACTIONS(231), [anon_sym_STAR] = ACTIONS(233), @@ -20114,23 +20114,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(245), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), + [anon_sym_class] = ACTIONS(69), [anon_sym_async] = ACTIONS(247), - [anon_sym_function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(249), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(253), @@ -20164,97 +20164,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5836), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5836), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5802), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5802), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5836), - [sym_spread_element] = STATE(4704), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2349), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(4704), - [sym_pair] = STATE(4704), - [sym_pair_pattern] = STATE(4567), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5802), + [sym_spread_element] = STATE(4699), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2350), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(4699), + [sym_pair] = STATE(4699), + [sym_pair_pattern] = STATE(4562), [sym__property_name] = STATE(3552), [sym_computed_property_name] = STATE(3552), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_accessibility_modifier] = STATE(2781), - [sym_override_modifier] = STATE(2816), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), + [sym_accessibility_modifier] = STATE(2785), + [sym_override_modifier] = STATE(2801), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(3871), - [aux_sym_object_repeat1] = STATE(4657), - [aux_sym_object_pattern_repeat1] = STATE(4878), + [aux_sym_export_statement_repeat1] = STATE(3877), + [aux_sym_object_repeat1] = STATE(4653), + [aux_sym_object_pattern_repeat1] = STATE(4884), [sym_identifier] = ACTIONS(229), [anon_sym_export] = ACTIONS(231), [anon_sym_STAR] = ACTIONS(233), @@ -20287,23 +20287,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(245), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), + [anon_sym_class] = ACTIONS(69), [anon_sym_async] = ACTIONS(247), - [anon_sym_function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(249), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(253), @@ -20337,97 +20337,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5836), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5836), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5802), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5802), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5836), - [sym_spread_element] = STATE(5136), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2349), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5802), + [sym_spread_element] = STATE(5127), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2350), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(5127), + [sym_pair] = STATE(5127), + [sym_pair_pattern] = STATE(4562), [sym__property_name] = STATE(3552), [sym_computed_property_name] = STATE(3552), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_accessibility_modifier] = STATE(2781), - [sym_override_modifier] = STATE(2816), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), + [sym_accessibility_modifier] = STATE(2785), + [sym_override_modifier] = STATE(2801), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(3871), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), + [aux_sym_export_statement_repeat1] = STATE(3877), + [aux_sym_object_repeat1] = STATE(4524), + [aux_sym_object_pattern_repeat1] = STATE(4884), [sym_identifier] = ACTIONS(277), [anon_sym_export] = ACTIONS(279), [anon_sym_STAR] = ACTIONS(233), @@ -20460,23 +20460,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(245), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), + [anon_sym_class] = ACTIONS(69), [anon_sym_async] = ACTIONS(289), - [anon_sym_function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(291), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(253), @@ -20510,97 +20510,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5836), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5836), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5802), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5802), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5836), - [sym_spread_element] = STATE(5136), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2349), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5802), + [sym_spread_element] = STATE(5127), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2350), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(5127), + [sym_pair] = STATE(5127), + [sym_pair_pattern] = STATE(4562), [sym__property_name] = STATE(3552), [sym_computed_property_name] = STATE(3552), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [sym_accessibility_modifier] = STATE(2781), - [sym_override_modifier] = STATE(2816), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), + [sym_accessibility_modifier] = STATE(2785), + [sym_override_modifier] = STATE(2801), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(3871), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), + [aux_sym_export_statement_repeat1] = STATE(3877), + [aux_sym_object_repeat1] = STATE(4524), + [aux_sym_object_pattern_repeat1] = STATE(4884), [sym_identifier] = ACTIONS(309), [anon_sym_export] = ACTIONS(311), [anon_sym_STAR] = ACTIONS(233), @@ -20633,23 +20633,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(245), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), + [anon_sym_class] = ACTIONS(69), [anon_sym_async] = ACTIONS(319), - [anon_sym_function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(321), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(253), @@ -20683,85 +20683,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [ts_builtin_sym_end] = ACTIONS(339), [sym_identifier] = ACTIONS(341), [anon_sym_export] = ACTIONS(344), @@ -20795,22 +20795,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(421), [anon_sym_LBRACK] = ACTIONS(424), [sym_glimmer_opening_tag] = ACTIONS(427), - [anon_sym_DQUOTE] = ACTIONS(430), - [anon_sym_SQUOTE] = ACTIONS(433), - [anon_sym_class] = ACTIONS(436), - [anon_sym_async] = ACTIONS(439), - [anon_sym_function] = ACTIONS(442), - [anon_sym_new] = ACTIONS(445), - [anon_sym_using] = ACTIONS(448), + [anon_sym_class] = ACTIONS(430), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(436), + [anon_sym_new] = ACTIONS(439), + [anon_sym_using] = ACTIONS(442), [anon_sym_PLUS] = ACTIONS(358), [anon_sym_DASH] = ACTIONS(358), - [anon_sym_SLASH] = ACTIONS(451), - [anon_sym_LT] = ACTIONS(454), + [anon_sym_SLASH] = ACTIONS(445), + [anon_sym_LT] = ACTIONS(448), [anon_sym_TILDE] = ACTIONS(376), [anon_sym_void] = ACTIONS(358), [anon_sym_delete] = ACTIONS(358), - [anon_sym_PLUS_PLUS] = ACTIONS(457), - [anon_sym_DASH_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(451), + [anon_sym_DQUOTE] = ACTIONS(454), + [anon_sym_SQUOTE] = ACTIONS(457), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(460), [sym_number] = ACTIONS(463), @@ -20844,85 +20844,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(13), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(496), @@ -20955,22 +20955,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -21004,85 +21004,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(500), @@ -21115,22 +21115,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -21164,85 +21164,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(11), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(504), @@ -21275,22 +21275,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -21324,85 +21324,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(508), @@ -21435,22 +21435,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -21484,85 +21484,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -21593,22 +21593,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -21642,85 +21642,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [ts_builtin_sym_end] = ACTIONS(514), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), @@ -21751,22 +21751,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -21800,85 +21800,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -21909,22 +21909,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -21958,85 +21958,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [ts_builtin_sym_end] = ACTIONS(518), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), @@ -22067,22 +22067,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -22116,85 +22116,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22225,22 +22225,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -22274,85 +22274,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22383,22 +22383,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -22432,85 +22432,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22541,22 +22541,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -22590,85 +22590,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22699,22 +22699,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -22748,85 +22748,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(23), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -22857,22 +22857,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -22906,85 +22906,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23015,22 +23015,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -23064,85 +23064,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23173,22 +23173,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -23222,85 +23222,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23331,22 +23331,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -23380,85 +23380,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23489,22 +23489,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -23538,85 +23538,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(30), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(30), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23647,22 +23647,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -23696,85 +23696,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(26), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -23805,22 +23805,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -23854,85 +23854,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(15), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [ts_builtin_sym_end] = ACTIONS(518), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), @@ -23963,22 +23963,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -24012,85 +24012,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(3871), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -24121,22 +24121,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -24170,84 +24170,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(919), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(920), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3847), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -24277,22 +24277,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(566), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -24326,84 +24326,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [32] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(848), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(849), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3847), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -24433,22 +24433,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(566), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -24482,84 +24482,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [33] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(4696), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(4692), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3847), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -24589,22 +24589,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(566), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -24638,84 +24638,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [34] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(931), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3847), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -24745,22 +24745,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(566), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -24794,84 +24794,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [35] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(866), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3847), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -24901,22 +24901,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(566), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -24950,84 +24950,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [36] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(931), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -25057,22 +25057,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -25106,84 +25106,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [37] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(883), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(884), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3847), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -25213,22 +25213,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(566), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -25262,87 +25262,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [38] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2136), + [sym_import] = STATE(3637), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2138), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(5119), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(5132), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), + [sym_decorator] = STATE(1285), [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), + [sym_pattern] = STATE(4388), [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(4907), + [sym_optional_tuple_parameter] = STATE(4907), + [sym_optional_type] = STATE(4907), + [sym_rest_type] = STATE(4907), + [sym__tuple_type_member] = STATE(4907), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4579), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5463), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4582), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_STAR] = ACTIONS(582), @@ -25361,11 +25361,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(598), [anon_sym_RBRACK] = ACTIONS(600), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(604), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(608), @@ -25374,12 +25372,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(614), [anon_sym_DASH] = ACTIONS(614), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(618), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -25418,84 +25418,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [39] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(5503), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(5513), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3847), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -25525,22 +25525,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(566), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -25574,84 +25574,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [40] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(876), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(877), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3847), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -25681,22 +25681,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(566), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -25730,84 +25730,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [41] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(819), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(820), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3847), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -25837,22 +25837,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(566), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -25886,84 +25886,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [42] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(821), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(822), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3847), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -25993,22 +25993,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(566), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -26042,84 +26042,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [43] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(827), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(828), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3847), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -26149,22 +26149,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(566), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -26198,84 +26198,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [44] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(826), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(827), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3847), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -26305,22 +26305,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(566), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -26354,84 +26354,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [45] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(807), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3847), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -26461,22 +26461,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(566), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -26510,84 +26510,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [46] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(838), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(839), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3847), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -26617,22 +26617,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(566), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -26666,84 +26666,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [47] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(853), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(854), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3847), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -26773,22 +26773,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(566), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -26822,84 +26822,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [48] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(876), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(877), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -26929,22 +26929,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -26978,84 +26978,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [49] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(866), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27085,22 +27085,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -27134,84 +27134,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [50] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(932), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27241,22 +27241,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -27290,84 +27290,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [51] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(919), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(920), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27397,22 +27397,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -27446,84 +27446,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [52] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(819), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(820), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27553,22 +27553,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -27602,84 +27602,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [53] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(821), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(822), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27709,22 +27709,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -27758,84 +27758,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [54] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(827), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(828), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -27865,22 +27865,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -27914,84 +27914,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [55] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(848), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(849), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -28021,22 +28021,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -28070,87 +28070,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [56] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), + [sym_import] = STATE(3637), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2178), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(4611), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), + [sym_decorator] = STATE(1285), [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), + [sym_pattern] = STATE(4388), [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(4907), + [sym_optional_tuple_parameter] = STATE(4907), + [sym_optional_type] = STATE(4907), + [sym_rest_type] = STATE(4907), + [sym__tuple_type_member] = STATE(4907), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5463), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4617), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_STAR] = ACTIONS(582), @@ -28169,11 +28169,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(598), [anon_sym_RBRACK] = ACTIONS(642), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(604), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(608), @@ -28182,12 +28180,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(614), [anon_sym_DASH] = ACTIONS(614), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(618), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -28226,84 +28226,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [57] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(826), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(827), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -28333,22 +28333,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -28382,84 +28382,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [58] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(807), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -28489,22 +28489,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -28538,84 +28538,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [59] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(838), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(839), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -28645,22 +28645,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -28694,87 +28694,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [60] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), + [sym_import] = STATE(3637), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2178), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(4611), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), + [sym_decorator] = STATE(1285), [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), + [sym_pattern] = STATE(4388), [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(4907), + [sym_optional_tuple_parameter] = STATE(4907), + [sym_optional_type] = STATE(4907), + [sym_rest_type] = STATE(4907), + [sym__tuple_type_member] = STATE(4907), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5463), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4617), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_STAR] = ACTIONS(582), @@ -28793,11 +28793,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(598), [anon_sym_RBRACK] = ACTIONS(644), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(604), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(608), @@ -28806,12 +28804,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(614), [anon_sym_DASH] = ACTIONS(614), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(618), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -28850,84 +28850,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [61] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(853), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(854), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -28957,22 +28957,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -29006,84 +29006,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [62] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(883), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(884), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -29113,22 +29113,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -29162,87 +29162,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [63] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), + [sym_import] = STATE(3637), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2178), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(4611), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), + [sym_decorator] = STATE(1285), [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), + [sym_pattern] = STATE(4388), [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(4907), + [sym_optional_tuple_parameter] = STATE(4907), + [sym_optional_type] = STATE(4907), + [sym_rest_type] = STATE(4907), + [sym__tuple_type_member] = STATE(4907), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5463), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4617), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_STAR] = ACTIONS(582), @@ -29261,11 +29261,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(598), [anon_sym_RBRACK] = ACTIONS(646), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(604), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(608), @@ -29274,12 +29272,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(614), [anon_sym_DASH] = ACTIONS(614), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(618), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -29318,87 +29318,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [64] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), + [sym_import] = STATE(3637), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2178), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(4611), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), + [sym_decorator] = STATE(1285), [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), + [sym_pattern] = STATE(4388), [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(4907), + [sym_optional_tuple_parameter] = STATE(4907), + [sym_optional_type] = STATE(4907), + [sym_rest_type] = STATE(4907), + [sym__tuple_type_member] = STATE(4907), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5463), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4617), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_STAR] = ACTIONS(582), @@ -29417,11 +29417,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(598), [anon_sym_RBRACK] = ACTIONS(648), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(604), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(608), @@ -29430,12 +29428,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(614), [anon_sym_DASH] = ACTIONS(614), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(618), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -29474,84 +29474,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [65] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), - [sym_statement] = STATE(788), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), + [sym_statement] = STATE(792), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3871), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3877), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -29581,22 +29581,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), - [anon_sym_async] = ACTIONS(75), - [anon_sym_function] = ACTIONS(77), - [anon_sym_new] = ACTIONS(79), - [anon_sym_using] = ACTIONS(81), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -29630,87 +29630,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [66] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), + [sym_import] = STATE(3637), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2178), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(4611), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), + [sym_decorator] = STATE(1285), [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), + [sym_pattern] = STATE(4388), [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(4907), + [sym_optional_tuple_parameter] = STATE(4907), + [sym_optional_type] = STATE(4907), + [sym_rest_type] = STATE(4907), + [sym__tuple_type_member] = STATE(4907), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5463), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4617), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_STAR] = ACTIONS(582), @@ -29729,11 +29729,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(598), [anon_sym_RBRACK] = ACTIONS(650), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(604), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(608), @@ -29742,12 +29740,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(614), [anon_sym_DASH] = ACTIONS(614), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(618), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -29786,87 +29786,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [67] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2136), + [sym_import] = STATE(3637), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2138), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(5119), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(5132), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), + [sym_decorator] = STATE(1285), [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), + [sym_pattern] = STATE(4388), [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(4907), + [sym_optional_tuple_parameter] = STATE(4907), + [sym_optional_type] = STATE(4907), + [sym_rest_type] = STATE(4907), + [sym__tuple_type_member] = STATE(4907), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4579), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5463), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4582), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_STAR] = ACTIONS(582), @@ -29885,11 +29885,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(598), [anon_sym_RBRACK] = ACTIONS(652), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(604), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(608), @@ -29898,12 +29896,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(614), [anon_sym_DASH] = ACTIONS(614), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(618), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -29942,87 +29942,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [68] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), + [sym_import] = STATE(3637), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2178), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(4611), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), + [sym_decorator] = STATE(1285), [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), + [sym_pattern] = STATE(4388), [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(4907), + [sym_optional_tuple_parameter] = STATE(4907), + [sym_optional_type] = STATE(4907), + [sym_rest_type] = STATE(4907), + [sym__tuple_type_member] = STATE(4907), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5463), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4617), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_STAR] = ACTIONS(582), @@ -30041,11 +30041,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(598), [anon_sym_RBRACK] = ACTIONS(654), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(604), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(608), @@ -30054,12 +30052,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(614), [anon_sym_DASH] = ACTIONS(614), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(618), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -30098,87 +30098,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [69] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), + [sym_import] = STATE(3637), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2178), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(4611), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), + [sym_decorator] = STATE(1285), [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), + [sym_pattern] = STATE(4388), [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4969), - [sym_optional_tuple_parameter] = STATE(4969), - [sym_optional_type] = STATE(4969), - [sym_rest_type] = STATE(4969), - [sym__tuple_type_member] = STATE(4969), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(4976), + [sym_optional_tuple_parameter] = STATE(4976), + [sym_optional_type] = STATE(4976), + [sym_rest_type] = STATE(4976), + [sym__tuple_type_member] = STATE(4976), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5463), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4617), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_STAR] = ACTIONS(582), @@ -30197,11 +30197,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(598), [anon_sym_RBRACK] = ACTIONS(658), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(604), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(608), @@ -30210,12 +30208,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(614), [anon_sym_DASH] = ACTIONS(614), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(618), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -30254,84 +30254,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [70] = { - [sym_export_statement] = STATE(888), - [sym_declaration] = STATE(888), - [sym_import] = STATE(3513), - [sym_import_statement] = STATE(888), + [sym_export_statement] = STATE(889), + [sym_declaration] = STATE(889), + [sym_import] = STATE(3514), + [sym_import_statement] = STATE(889), [sym_statement] = STATE(932), - [sym_expression_statement] = STATE(888), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_statement_block] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_switch_statement] = STATE(888), - [sym_for_statement] = STATE(888), - [sym_for_in_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_do_statement] = STATE(888), - [sym_try_statement] = STATE(888), - [sym_with_statement] = STATE(888), - [sym_break_statement] = STATE(888), - [sym_continue_statement] = STATE(888), - [sym_debugger_statement] = STATE(888), - [sym_return_statement] = STATE(888), - [sym_throw_statement] = STATE(888), - [sym_empty_statement] = STATE(888), - [sym_labeled_statement] = STATE(888), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1940), + [sym_expression_statement] = STATE(889), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_statement_block] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_switch_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_for_in_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_do_statement] = STATE(889), + [sym_try_statement] = STATE(889), + [sym_with_statement] = STATE(889), + [sym_break_statement] = STATE(889), + [sym_continue_statement] = STATE(889), + [sym_debugger_statement] = STATE(889), + [sym_return_statement] = STATE(889), + [sym_throw_statement] = STATE(889), + [sym_empty_statement] = STATE(889), + [sym_labeled_statement] = STATE(889), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1938), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5427), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5227), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(3845), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(3847), [sym_identifier] = ACTIONS(544), [anon_sym_export] = ACTIONS(546), [anon_sym_type] = ACTIONS(548), @@ -30361,22 +30361,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(566), [anon_sym_function] = ACTIONS(568), [anon_sym_new] = ACTIONS(570), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -30410,87 +30410,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [71] = { - [sym_import] = STATE(3634), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), + [sym_import] = STATE(3637), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2178), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(4611), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), + [sym_decorator] = STATE(1285), [sym_formal_parameters] = STATE(4342), - [sym_pattern] = STATE(4511), + [sym_pattern] = STATE(4388), [sym_rest_pattern] = STATE(4089), - [sym_non_null_expression] = STATE(1399), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(4907), + [sym_optional_tuple_parameter] = STATE(4907), + [sym_optional_type] = STATE(4907), + [sym_rest_type] = STATE(4907), + [sym__tuple_type_member] = STATE(4907), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5465), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5463), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4617), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_STAR] = ACTIONS(582), @@ -30509,11 +30509,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(598), [anon_sym_RBRACK] = ACTIONS(660), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(604), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(608), @@ -30522,12 +30520,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(614), [anon_sym_DASH] = ACTIONS(614), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(618), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -30566,51 +30566,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [72] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1335), [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_primary_expression] = STATE(1709), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5604), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), + [sym_new_expression] = STATE(2710), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1335), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), + [aux_sym_object_repeat1] = STATE(4823), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), @@ -30619,46 +30619,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(674), [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(683), [anon_sym_function] = ACTIONS(685), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -30667,25 +30664,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_SLASH] = ACTIONS(79), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -30715,56 +30715,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(664), [anon_sym_object] = ACTIONS(664), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [73] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1335), [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_primary_expression] = STATE(1709), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5604), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), + [sym_new_expression] = STATE(2710), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1335), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), @@ -30773,46 +30773,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(674), [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(683), [anon_sym_function] = ACTIONS(685), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -30821,25 +30818,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_SLASH] = ACTIONS(79), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -30869,56 +30869,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(664), [anon_sym_object] = ACTIONS(664), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [74] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1335), [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_primary_expression] = STATE(1709), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5604), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), + [sym_new_expression] = STATE(2710), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1335), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), @@ -30927,46 +30927,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(674), [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(683), [anon_sym_function] = ACTIONS(685), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -30975,25 +30972,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_SLASH] = ACTIONS(79), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -31023,14 +31023,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(664), [anon_sym_object] = ACTIONS(664), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [75] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -31042,14 +31042,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -31060,19 +31060,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4233), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4232), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -31082,7 +31082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(136), @@ -31094,33 +31094,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(708), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -31131,23 +31128,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(136), [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), + [anon_sym_PLUS_PLUS] = ACTIONS(182), + [anon_sym_DASH_DASH] = ACTIONS(182), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(716), [sym_number] = ACTIONS(719), @@ -31177,13 +31177,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(115), [anon_sym_object] = ACTIONS(115), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [76] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -31195,14 +31195,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -31213,19 +31213,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4236), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4235), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -31235,7 +31235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(136), @@ -31247,33 +31247,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(708), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -31284,23 +31281,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(136), [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), + [anon_sym_PLUS_PLUS] = ACTIONS(182), + [anon_sym_DASH_DASH] = ACTIONS(182), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(716), [sym_number] = ACTIONS(719), @@ -31330,88 +31330,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(115), [anon_sym_object] = ACTIONS(115), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [77] = { - [sym_import] = STATE(3594), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3596), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1834), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4097), + [sym_object_pattern] = STATE(4100), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4097), + [sym_array_pattern] = STATE(4100), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym__formal_parameter] = STATE(4551), + [sym__call_signature] = STATE(5803), + [sym__formal_parameter] = STATE(4540), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1357), [sym_subscript_expression] = STATE(1357), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4097), + [sym__destructuring_pattern] = STATE(4100), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5858), - [sym_string] = STATE(2142), + [sym_sequence_expression] = STATE(5853), + [sym_string] = STATE(2140), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), [sym_non_null_expression] = STATE(1357), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), + [sym_nested_type_identifier] = STATE(2944), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4390), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_required_parameter] = STATE(4540), + [sym_optional_parameter] = STATE(4540), + [sym__parameter_name] = STATE(3613), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4517), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(635), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(729), [anon_sym_export] = ACTIONS(731), @@ -31430,25 +31430,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(747), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(749), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(751), [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(759), [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(761), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(767), [sym_number] = ACTIONS(769), @@ -31487,9 +31487,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [78] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -31501,14 +31501,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -31519,19 +31519,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4327), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4326), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -31541,7 +31541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(136), @@ -31553,33 +31553,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(708), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -31590,23 +31587,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(136), [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), + [anon_sym_PLUS_PLUS] = ACTIONS(182), + [anon_sym_DASH_DASH] = ACTIONS(182), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(716), [sym_number] = ACTIONS(719), @@ -31636,13 +31636,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(115), [anon_sym_object] = ACTIONS(115), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [79] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -31654,14 +31654,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -31672,19 +31672,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(3920), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(3917), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -31694,7 +31694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(136), @@ -31706,33 +31706,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(708), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -31743,23 +31740,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(136), [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), + [anon_sym_PLUS_PLUS] = ACTIONS(182), + [anon_sym_DASH_DASH] = ACTIONS(182), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(716), [sym_number] = ACTIONS(719), @@ -31789,13 +31789,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(115), [anon_sym_object] = ACTIONS(115), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [80] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -31807,14 +31807,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -31825,19 +31825,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4226), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4225), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -31847,7 +31847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(136), @@ -31859,33 +31859,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(708), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -31896,23 +31893,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(136), [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), + [anon_sym_PLUS_PLUS] = ACTIONS(182), + [anon_sym_DASH_DASH] = ACTIONS(182), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(716), [sym_number] = ACTIONS(719), @@ -31942,13 +31942,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(115), [anon_sym_object] = ACTIONS(115), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [81] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -31960,14 +31960,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -31978,19 +31978,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(3926), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(3925), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -32000,7 +32000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(136), @@ -32012,33 +32012,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(708), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -32049,23 +32046,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(136), [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), + [anon_sym_PLUS_PLUS] = ACTIONS(182), + [anon_sym_DASH_DASH] = ACTIONS(182), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(716), [sym_number] = ACTIONS(719), @@ -32095,88 +32095,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(115), [anon_sym_object] = ACTIONS(115), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [82] = { - [sym_import] = STATE(3594), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3596), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1817), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4097), + [sym_object_pattern] = STATE(4100), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4097), + [sym_array_pattern] = STATE(4100), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym__formal_parameter] = STATE(4551), + [sym__call_signature] = STATE(5803), + [sym__formal_parameter] = STATE(4540), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1357), [sym_subscript_expression] = STATE(1357), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4097), + [sym__destructuring_pattern] = STATE(4100), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5646), - [sym_string] = STATE(2142), + [sym_sequence_expression] = STATE(5652), + [sym_string] = STATE(2140), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), [sym_non_null_expression] = STATE(1357), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), + [sym_nested_type_identifier] = STATE(2944), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4390), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_required_parameter] = STATE(4540), + [sym_optional_parameter] = STATE(4540), + [sym__parameter_name] = STATE(3613), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4517), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(635), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(729), [anon_sym_export] = ACTIONS(731), @@ -32195,25 +32195,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(747), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(749), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(751), [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(759), [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(761), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(767), [sym_number] = ACTIONS(769), @@ -32252,9 +32252,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [83] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -32266,14 +32266,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -32284,19 +32284,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4085), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4086), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -32306,7 +32306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(136), @@ -32318,33 +32318,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(708), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -32355,23 +32352,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(136), [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), + [anon_sym_PLUS_PLUS] = ACTIONS(182), + [anon_sym_DASH_DASH] = ACTIONS(182), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(716), [sym_number] = ACTIONS(719), @@ -32401,13 +32401,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(115), [anon_sym_object] = ACTIONS(115), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [84] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -32419,14 +32419,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -32437,19 +32437,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4085), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4086), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_STAR] = ACTIONS(122), @@ -32459,7 +32459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_BANG] = ACTIONS(136), @@ -32471,33 +32471,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(708), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -32508,23 +32505,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(122), [anon_sym_PLUS] = ACTIONS(136), [anon_sym_DASH] = ACTIONS(136), - [anon_sym_SLASH] = ACTIONS(177), + [anon_sym_SLASH] = ACTIONS(173), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(186), - [anon_sym_DASH_DASH] = ACTIONS(186), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), + [anon_sym_PLUS_PLUS] = ACTIONS(182), + [anon_sym_DASH_DASH] = ACTIONS(182), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(716), [sym_number] = ACTIONS(719), @@ -32554,88 +32554,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(115), [anon_sym_object] = ACTIONS(115), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [85] = { - [sym_import] = STATE(3594), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3596), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1817), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4097), + [sym_object_pattern] = STATE(4100), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4097), + [sym_array_pattern] = STATE(4100), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym__formal_parameter] = STATE(4551), + [sym__call_signature] = STATE(5803), + [sym__formal_parameter] = STATE(4540), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1357), [sym_subscript_expression] = STATE(1357), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4097), + [sym__destructuring_pattern] = STATE(4100), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5646), - [sym_string] = STATE(2142), + [sym_sequence_expression] = STATE(5652), + [sym_string] = STATE(2140), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), [sym_non_null_expression] = STATE(1357), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), + [sym_nested_type_identifier] = STATE(2944), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4414), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_required_parameter] = STATE(4540), + [sym_optional_parameter] = STATE(4540), + [sym__parameter_name] = STATE(3613), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4406), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(635), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(729), [anon_sym_export] = ACTIONS(731), @@ -32654,25 +32654,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(747), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(749), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(751), [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(759), [anon_sym_DASH] = ACTIONS(759), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(761), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(767), [sym_number] = ACTIONS(769), @@ -32713,7 +32713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [86] = { [sym_import] = STATE(3702), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -32721,73 +32721,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_array] = STATE(1691), [sym_array_pattern] = STATE(3739), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(4551), + [sym__call_signature] = STATE(5794), + [sym__formal_parameter] = STATE(4540), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), + [sym_nested_type_identifier] = STATE(2944), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4390), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_required_parameter] = STATE(4540), + [sym_optional_parameter] = STATE(4540), + [sym__parameter_name] = STATE(3613), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4517), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), @@ -32799,32 +32799,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_RPAREN] = ACTIONS(741), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(145), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -32863,30 +32863,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [87] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -32895,8 +32895,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -32904,8 +32904,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -32916,10 +32916,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(815), [anon_sym_COMMA] = ACTIONS(128), [anon_sym_RBRACE] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_await] = ACTIONS(141), @@ -32929,32 +32929,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(819), [anon_sym_RBRACK] = ACTIONS(128), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -32963,25 +32960,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -33011,13 +33011,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [88] = { [sym_import] = STATE(3702), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -33025,73 +33025,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_array] = STATE(1691), [sym_array_pattern] = STATE(3739), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(4551), + [sym__call_signature] = STATE(5794), + [sym__formal_parameter] = STATE(4540), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), + [sym_nested_type_identifier] = STATE(2944), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4445), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_required_parameter] = STATE(4540), + [sym_optional_parameter] = STATE(4540), + [sym__parameter_name] = STATE(3613), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4475), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), @@ -33103,32 +33103,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_RPAREN] = ACTIONS(741), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(145), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -33167,30 +33167,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [89] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -33199,8 +33199,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -33208,8 +33208,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -33220,10 +33220,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(815), [anon_sym_COMMA] = ACTIONS(833), [anon_sym_RBRACE] = ACTIONS(833), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_RPAREN] = ACTIONS(833), [anon_sym_await] = ACTIONS(141), @@ -33233,32 +33233,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(819), [anon_sym_RBRACK] = ACTIONS(833), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -33267,25 +33264,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -33315,13 +33315,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [90] = { [sym_import] = STATE(3702), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -33329,73 +33329,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_array] = STATE(1691), [sym_array_pattern] = STATE(3739), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(4551), + [sym__call_signature] = STATE(5794), + [sym__formal_parameter] = STATE(4540), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), + [sym_nested_type_identifier] = STATE(2944), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4414), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_required_parameter] = STATE(4540), + [sym_optional_parameter] = STATE(4540), + [sym__parameter_name] = STATE(3613), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4406), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), @@ -33407,32 +33407,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_RPAREN] = ACTIONS(741), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(145), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -33473,7 +33473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [91] = { [sym_import] = STATE(3702), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -33481,73 +33481,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_array] = STATE(1691), [sym_array_pattern] = STATE(3739), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(4551), + [sym__call_signature] = STATE(5794), + [sym__formal_parameter] = STATE(4540), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), + [sym_nested_type_identifier] = STATE(2944), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4388), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_required_parameter] = STATE(4540), + [sym_optional_parameter] = STATE(4540), + [sym__parameter_name] = STATE(3613), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4513), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), @@ -33559,32 +33559,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_RPAREN] = ACTIONS(741), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(145), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -33625,7 +33625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [92] = { [sym_import] = STATE(3702), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -33633,73 +33633,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_array] = STATE(1691), [sym_array_pattern] = STATE(3739), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(4551), + [sym__call_signature] = STATE(5794), + [sym__formal_parameter] = STATE(4540), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), + [sym_nested_type_identifier] = STATE(2944), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4468), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_required_parameter] = STATE(4540), + [sym_optional_parameter] = STATE(4540), + [sym__parameter_name] = STATE(3613), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4464), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(115), @@ -33711,32 +33711,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_RPAREN] = ACTIONS(741), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(145), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(159), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), + [anon_sym_PLUS] = ACTIONS(171), + [anon_sym_DASH] = ACTIONS(171), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -33775,30 +33775,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [93] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -33807,8 +33807,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4102), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -33816,8 +33816,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5156), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(837), [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), @@ -33826,47 +33826,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(843), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(157), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(157), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -33875,25 +33872,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -33922,34 +33922,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(839), [anon_sym_object] = ACTIONS(839), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [94] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -33958,8 +33958,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -33967,8 +33967,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(837), [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), @@ -33977,47 +33977,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(843), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(157), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(157), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -34026,25 +34023,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -34073,34 +34073,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(839), [anon_sym_object] = ACTIONS(839), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [95] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -34109,8 +34109,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -34118,8 +34118,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -34128,47 +34128,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(157), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(157), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -34177,25 +34174,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -34224,53 +34224,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [96] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1335), [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_primary_expression] = STATE(1709), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5604), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), + [sym_new_expression] = STATE(2710), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1335), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), @@ -34279,45 +34279,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(674), [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(857), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(683), [anon_sym_function] = ACTIONS(685), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -34326,25 +34323,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_SLASH] = ACTIONS(79), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -34373,35 +34373,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(664), [anon_sym_object] = ACTIONS(664), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [97] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -34410,8 +34410,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4102), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -34419,8 +34419,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5156), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -34430,10 +34430,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_await] = ACTIONS(141), @@ -34442,32 +34442,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -34476,25 +34473,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -34524,34 +34524,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [98] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -34560,8 +34560,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4102), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -34569,8 +34569,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5156), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(859), [anon_sym_export] = ACTIONS(861), [anon_sym_STAR] = ACTIONS(122), @@ -34580,10 +34580,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(863), [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_RPAREN] = ACTIONS(224), [anon_sym_await] = ACTIONS(141), @@ -34592,32 +34592,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(865), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(867), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -34626,25 +34623,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -34674,53 +34674,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(861), [anon_sym_object] = ACTIONS(861), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [99] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1335), [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_primary_expression] = STATE(1709), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5604), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), + [sym_new_expression] = STATE(2710), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1335), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), @@ -34729,45 +34729,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(674), [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(869), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(683), [anon_sym_function] = ACTIONS(685), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -34776,25 +34773,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_SLASH] = ACTIONS(79), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -34823,54 +34823,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(664), [anon_sym_object] = ACTIONS(664), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [100] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1335), [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_primary_expression] = STATE(1709), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5604), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), + [sym_new_expression] = STATE(2710), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4102), + [sym_non_null_expression] = STATE(1335), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5156), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), @@ -34879,45 +34879,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(674), [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(683), [anon_sym_function] = ACTIONS(685), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -34926,25 +34923,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_SLASH] = ACTIONS(79), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -34973,54 +34973,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(664), [anon_sym_object] = ACTIONS(664), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [101] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1335), [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_primary_expression] = STATE(1709), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5604), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_call_expression] = STATE(2118), + [sym_new_expression] = STATE(2710), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4102), + [sym_non_null_expression] = STATE(1335), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5156), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(871), [anon_sym_export] = ACTIONS(873), [anon_sym_STAR] = ACTIONS(122), @@ -35029,45 +35029,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(877), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(674), [anon_sym_let] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(879), [anon_sym_function] = ACTIONS(685), [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(883), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -35076,25 +35073,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(885), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -35123,35 +35123,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(873), [anon_sym_object] = ACTIONS(873), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [102] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -35160,8 +35160,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -35169,8 +35169,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -35179,45 +35179,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -35226,25 +35223,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -35273,54 +35273,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [103] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1335), [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_primary_expression] = STATE(1709), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5604), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_call_expression] = STATE(2118), + [sym_new_expression] = STATE(2710), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1335), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(871), [anon_sym_export] = ACTIONS(873), [anon_sym_STAR] = ACTIONS(122), @@ -35329,45 +35329,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(877), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(674), [anon_sym_let] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(879), [anon_sym_function] = ACTIONS(685), [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(883), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -35376,25 +35373,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(885), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -35423,54 +35423,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(873), [anon_sym_object] = ACTIONS(873), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [104] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1335), [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_primary_expression] = STATE(1709), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5604), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), + [sym_new_expression] = STATE(2710), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1335), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(662), [anon_sym_export] = ACTIONS(664), [anon_sym_STAR] = ACTIONS(122), @@ -35479,45 +35479,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(674), [anon_sym_let] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(683), [anon_sym_function] = ACTIONS(685), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(689), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -35526,25 +35523,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_SLASH] = ACTIONS(79), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -35573,35 +35573,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(664), [anon_sym_object] = ACTIONS(664), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [105] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -35610,8 +35610,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -35619,8 +35619,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -35629,45 +35629,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -35676,25 +35673,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -35723,35 +35723,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [106] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -35760,8 +35760,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -35769,8 +35769,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(859), [anon_sym_export] = ACTIONS(861), [anon_sym_STAR] = ACTIONS(122), @@ -35780,10 +35780,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(863), [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_RPAREN] = ACTIONS(224), [anon_sym_await] = ACTIONS(141), @@ -35792,32 +35792,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(865), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(867), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -35826,25 +35823,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -35874,34 +35874,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(861), [anon_sym_object] = ACTIONS(861), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [107] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -35910,8 +35910,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -35919,8 +35919,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(837), [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), @@ -35931,10 +35931,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_COMMA] = ACTIONS(224), [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), @@ -35942,32 +35942,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(847), [anon_sym_RBRACK] = ACTIONS(224), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -35976,25 +35973,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -36023,34 +36023,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(839), [anon_sym_object] = ACTIONS(839), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [108] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -36059,8 +36059,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -36068,8 +36068,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(859), [anon_sym_export] = ACTIONS(861), [anon_sym_STAR] = ACTIONS(122), @@ -36078,45 +36078,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(863), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(157), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(865), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(867), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -36125,25 +36122,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -36172,34 +36172,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(861), [anon_sym_object] = ACTIONS(861), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [109] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -36208,8 +36208,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4102), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -36217,8 +36217,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5156), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(859), [anon_sym_export] = ACTIONS(861), [anon_sym_STAR] = ACTIONS(122), @@ -36227,45 +36227,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(863), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(157), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(865), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(867), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -36274,25 +36271,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -36321,34 +36321,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(861), [anon_sym_object] = ACTIONS(861), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [110] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -36357,8 +36357,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -36366,8 +36366,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(837), [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), @@ -36378,10 +36378,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_COMMA] = ACTIONS(892), [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), @@ -36389,32 +36389,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(847), [anon_sym_RBRACK] = ACTIONS(892), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -36423,25 +36420,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -36470,34 +36470,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(839), [anon_sym_object] = ACTIONS(839), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [111] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -36506,8 +36506,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -36515,8 +36515,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(837), [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), @@ -36525,45 +36525,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(843), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(895), [anon_sym_of] = ACTIONS(898), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -36572,25 +36569,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -36619,19 +36619,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(839), [anon_sym_object] = ACTIONS(839), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [112] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), @@ -36639,14 +36639,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -36655,8 +36655,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -36664,8 +36664,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(900), [anon_sym_export] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(122), @@ -36675,10 +36675,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(907), [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), @@ -36687,32 +36687,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(847), [anon_sym_RBRACK] = ACTIONS(224), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -36721,25 +36718,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -36768,34 +36768,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(902), [anon_sym_object] = ACTIONS(902), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [113] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -36804,8 +36804,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -36813,8 +36813,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -36823,45 +36823,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(157), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -36870,25 +36867,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -36917,34 +36917,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [114] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -36953,8 +36953,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4102), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -36962,8 +36962,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5156), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(837), [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), @@ -36973,10 +36973,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(843), [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_COMMA] = ACTIONS(892), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), @@ -36985,32 +36985,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(847), [anon_sym_RBRACK] = ACTIONS(892), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -37019,25 +37016,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -37066,34 +37066,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(839), [anon_sym_object] = ACTIONS(839), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [115] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -37102,8 +37102,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3956), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3954), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -37111,8 +37111,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5411), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5410), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(837), [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), @@ -37123,42 +37123,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_COMMA] = ACTIONS(224), [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -37167,25 +37164,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -37214,19 +37214,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(839), [anon_sym_object] = ACTIONS(839), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [116] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), @@ -37234,14 +37234,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -37250,8 +37250,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -37259,8 +37259,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(900), [anon_sym_export] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(122), @@ -37270,10 +37270,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(907), [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), @@ -37281,32 +37281,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(847), [anon_sym_RBRACK] = ACTIONS(224), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -37315,25 +37312,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -37362,19 +37362,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(902), [anon_sym_object] = ACTIONS(902), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [117] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), @@ -37382,14 +37382,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -37398,8 +37398,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -37407,8 +37407,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(900), [anon_sym_export] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(122), @@ -37417,44 +37417,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(907), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(919), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(157), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -37463,25 +37460,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -37510,53 +37510,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(902), [anon_sym_object] = ACTIONS(902), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [118] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1335), [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_primary_expression] = STATE(1709), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5604), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), + [sym_new_expression] = STATE(2710), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4102), + [sym_non_null_expression] = STATE(1335), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5156), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(921), [anon_sym_export] = ACTIONS(923), [anon_sym_STAR] = ACTIONS(122), @@ -37565,43 +37565,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(674), [anon_sym_let] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(929), [anon_sym_function] = ACTIONS(685), [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(933), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -37610,25 +37607,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_SLASH] = ACTIONS(79), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -37657,20 +37657,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(923), [anon_sym_object] = ACTIONS(923), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [119] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), @@ -37678,14 +37678,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -37694,8 +37694,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4102), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -37703,8 +37703,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5156), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(935), [anon_sym_export] = ACTIONS(937), [anon_sym_STAR] = ACTIONS(122), @@ -37713,43 +37713,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(941), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(943), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(947), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -37758,25 +37755,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(949), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -37806,34 +37806,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(937), [anon_sym_satisfies] = ACTIONS(122), [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -37842,8 +37842,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -37851,8 +37851,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -37861,43 +37861,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -37906,25 +37903,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -37953,35 +37953,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [121] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -37990,8 +37990,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4346), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4345), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -37999,8 +37999,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5469), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5466), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(837), [anon_sym_export] = ACTIONS(839), [anon_sym_STAR] = ACTIONS(122), @@ -38010,10 +38010,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(843), [anon_sym_LBRACE] = ACTIONS(845), [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), @@ -38021,32 +38021,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(847), [anon_sym_RBRACK] = ACTIONS(224), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(849), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(853), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -38055,25 +38052,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -38102,19 +38102,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(839), [anon_sym_object] = ACTIONS(839), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [122] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), @@ -38122,14 +38122,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -38138,8 +38138,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -38147,8 +38147,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(900), [anon_sym_export] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(122), @@ -38157,44 +38157,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(907), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(909), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(157), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -38203,25 +38200,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -38250,19 +38250,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(902), [anon_sym_object] = ACTIONS(902), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [123] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), @@ -38270,14 +38270,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -38286,8 +38286,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -38295,8 +38295,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(935), [anon_sym_export] = ACTIONS(937), [anon_sym_STAR] = ACTIONS(122), @@ -38305,43 +38305,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(941), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(943), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(947), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -38350,25 +38347,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(949), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -38398,34 +38398,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(937), [anon_sym_satisfies] = ACTIONS(122), [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [124] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -38434,8 +38434,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -38443,8 +38443,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -38453,43 +38453,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -38498,25 +38495,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -38546,53 +38546,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [125] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1325), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1335), [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(1712), + [sym_primary_expression] = STATE(1709), [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5482), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5604), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), - [sym_new_expression] = STATE(2686), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), + [sym_new_expression] = STATE(2710), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1325), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1335), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(921), [anon_sym_export] = ACTIONS(923), [anon_sym_STAR] = ACTIONS(122), @@ -38601,43 +38601,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(927), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(674), [anon_sym_let] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(929), [anon_sym_function] = ACTIONS(685), [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(933), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -38646,25 +38643,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_SLASH] = ACTIONS(79), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -38693,35 +38693,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(923), [anon_sym_object] = ACTIONS(923), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [126] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -38730,8 +38730,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4102), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -38739,8 +38739,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5156), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -38749,10 +38749,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), @@ -38760,32 +38760,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -38794,25 +38791,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -38841,34 +38841,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [127] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -38877,8 +38877,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -38886,8 +38886,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -38896,10 +38896,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(895), @@ -38907,32 +38907,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -38941,25 +38938,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -38988,34 +38988,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [128] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -39024,8 +39024,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4102), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -39033,8 +39033,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5156), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(951), [anon_sym_export] = ACTIONS(953), [anon_sym_STAR] = ACTIONS(122), @@ -39043,43 +39043,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(157), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(959), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(963), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -39088,25 +39085,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -39135,19 +39135,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(953), [anon_sym_object] = ACTIONS(953), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [129] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), @@ -39155,14 +39155,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -39171,8 +39171,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4102), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -39180,8 +39180,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5156), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(900), [anon_sym_export] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(122), @@ -39190,43 +39190,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(907), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(157), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -39235,25 +39232,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -39282,34 +39282,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(902), [anon_sym_object] = ACTIONS(902), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [130] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -39318,8 +39318,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -39327,8 +39327,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(951), [anon_sym_export] = ACTIONS(953), [anon_sym_STAR] = ACTIONS(122), @@ -39337,43 +39337,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(157), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(959), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(963), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -39382,25 +39379,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -39429,19 +39429,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(953), [anon_sym_object] = ACTIONS(953), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [131] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), @@ -39449,14 +39449,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -39465,8 +39465,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -39474,8 +39474,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(900), [anon_sym_export] = ACTIONS(902), [anon_sym_STAR] = ACTIONS(122), @@ -39484,43 +39484,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(907), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(847), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(157), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(911), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(915), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -39529,25 +39526,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -39576,19 +39576,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(902), [anon_sym_object] = ACTIONS(902), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [132] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), @@ -39596,14 +39596,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -39612,8 +39612,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4102), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -39621,8 +39621,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5156), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(965), [anon_sym_export] = ACTIONS(967), [anon_sym_STAR] = ACTIONS(122), @@ -39631,10 +39631,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(971), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), @@ -39642,32 +39642,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(977), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -39676,25 +39673,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(979), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -39723,34 +39723,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(967), [anon_sym_object] = ACTIONS(967), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [133] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -39759,8 +39759,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -39768,8 +39768,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -39778,43 +39778,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(157), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -39823,25 +39820,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -39870,34 +39870,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [134] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -39906,8 +39906,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -39915,8 +39915,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -39925,43 +39925,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_RBRACK] = ACTIONS(157), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -39970,25 +39967,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -40017,19 +40017,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [135] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), @@ -40037,14 +40037,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -40053,8 +40053,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -40062,8 +40062,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(965), [anon_sym_export] = ACTIONS(967), [anon_sym_STAR] = ACTIONS(122), @@ -40072,10 +40072,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(971), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), @@ -40083,32 +40083,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(973), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(977), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -40117,25 +40114,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(979), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -40164,34 +40164,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(967), [anon_sym_object] = ACTIONS(967), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [136] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -40200,8 +40200,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -40209,8 +40209,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -40219,10 +40219,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), @@ -40230,32 +40230,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -40264,25 +40261,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -40311,34 +40311,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [137] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -40347,8 +40347,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -40356,8 +40356,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -40366,42 +40366,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -40410,25 +40407,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -40457,34 +40457,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [138] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -40493,8 +40493,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -40502,8 +40502,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -40512,42 +40512,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -40556,25 +40553,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -40603,34 +40603,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -40639,8 +40639,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -40648,8 +40648,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -40658,42 +40658,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -40702,25 +40699,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -40749,34 +40749,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -40785,8 +40785,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -40794,8 +40794,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -40804,42 +40804,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -40848,25 +40845,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -40895,34 +40895,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -40931,8 +40931,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4101), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4102), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -40940,8 +40940,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5152), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5156), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -40950,42 +40950,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -40994,25 +40991,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -41041,34 +41041,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [142] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -41077,8 +41077,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -41086,8 +41086,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -41096,42 +41096,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -41140,25 +41137,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -41187,34 +41187,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -41223,8 +41223,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -41232,8 +41232,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -41242,42 +41242,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -41286,25 +41283,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -41333,34 +41333,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -41369,8 +41369,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -41378,8 +41378,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -41388,42 +41388,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -41432,25 +41429,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -41479,34 +41479,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [145] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -41515,8 +41515,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -41524,8 +41524,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -41534,42 +41534,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -41578,25 +41575,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -41625,34 +41625,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [146] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -41661,8 +41661,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -41670,8 +41670,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -41680,42 +41680,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -41724,25 +41721,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -41771,36 +41771,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [147] = { - [sym_import] = STATE(3622), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2439), + [sym_import] = STATE(3624), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2436), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5210), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5143), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5583), + [sym_nested_identifier] = STATE(5574), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), + [sym__destructuring_pattern] = STATE(4445), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -41809,45 +41809,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3937), - [sym_pattern] = STATE(4534), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3935), + [sym_pattern] = STATE(4528), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), [sym_type] = STATE(3312), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5333), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5336), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(997), [anon_sym_export] = ACTIONS(580), [anon_sym_STAR] = ACTIONS(999), @@ -41864,25 +41864,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(1009), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1011), [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), [anon_sym_PLUS] = ACTIONS(1017), [anon_sym_DASH] = ACTIONS(1017), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(1019), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1021), [sym_number] = ACTIONS(1023), @@ -41921,30 +41921,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [148] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -41953,8 +41953,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -41962,8 +41962,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -41972,42 +41972,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -42016,25 +42013,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -42063,34 +42063,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [149] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1502), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1498), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -42099,8 +42099,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -42108,8 +42108,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(122), @@ -42118,42 +42118,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(122), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -42162,25 +42159,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(122), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -42209,13 +42209,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(811), [anon_sym_object] = ACTIONS(811), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [150] = { [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2319), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2320), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -42223,19 +42223,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_array] = STATE(1691), [sym_array_pattern] = STATE(5710), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -42243,47 +42243,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), [sym_sequence_expression] = STATE(5796), - [sym_string] = STATE(2142), + [sym_string] = STATE(2140), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4983), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(4114), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(4406), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4974), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(4113), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(4403), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1053), [anon_sym_export] = ACTIONS(1055), [anon_sym_STAR] = ACTIONS(582), @@ -42300,11 +42300,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(1063), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1067), [anon_sym_using] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(755), @@ -42312,12 +42310,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1069), [anon_sym_DASH] = ACTIONS(1069), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(618), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(767), [sym_number] = ACTIONS(769), @@ -42356,9 +42356,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [151] = { - [sym_import] = STATE(3620), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2397), + [sym_import] = STATE(3622), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2400), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -42366,66 +42366,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_array] = STATE(1691), [sym_array_pattern] = STATE(5835), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2351), + [sym_string] = STATE(2352), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3900), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3897), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(617), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1079), [anon_sym_export] = ACTIONS(1081), [anon_sym_STAR] = ACTIONS(582), @@ -42442,11 +42442,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(1095), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1099), [anon_sym_using] = ACTIONS(1101), [anon_sym_AMP] = ACTIONS(755), @@ -42454,12 +42452,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1103), [anon_sym_DASH] = ACTIONS(1103), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1105), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(1113), @@ -42498,76 +42498,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [152] = { - [sym_import] = STATE(3614), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2191), + [sym_import] = STATE(3616), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2192), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_nested_identifier] = STATE(5679), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2424), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3788), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2423), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3784), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(450), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1127), [anon_sym_export] = ACTIONS(1129), [anon_sym_STAR] = ACTIONS(582), @@ -42584,8 +42584,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(1145), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -42595,13 +42593,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(1153), [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1155), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1161), [sym_number] = ACTIONS(1163), @@ -42640,76 +42640,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [153] = { - [sym_import] = STATE(3603), + [sym_import] = STATE(3605), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2560), + [sym_expression] = STATE(2551), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2351), + [sym_string] = STATE(2352), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3900), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3897), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1177), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(582), @@ -42720,30 +42720,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1095), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1183), - [anon_sym_using] = ACTIONS(165), + [anon_sym_using] = ACTIONS(161), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(1185), [anon_sym_DASH] = ACTIONS(1185), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(1113), @@ -42782,9 +42782,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [154] = { - [sym_import] = STATE(3603), + [sym_import] = STATE(3605), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -42792,66 +42792,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_array] = STATE(1691), [sym_array_pattern] = STATE(3727), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1448), - [sym_subscript_expression] = STATE(1448), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3727), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2547), + [sym_string] = STATE(2546), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1448), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_non_null_expression] = STATE(1446), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4112), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4110), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(537), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1193), [anon_sym_export] = ACTIONS(1195), [anon_sym_STAR] = ACTIONS(582), @@ -42862,30 +42862,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1195), [anon_sym_const] = ACTIONS(134), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(139), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1203), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1205), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1207), - [anon_sym_using] = ACTIONS(165), + [anon_sym_using] = ACTIONS(161), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(1209), [anon_sym_DASH] = ACTIONS(1209), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(182), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(178), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1211), [sym_number] = ACTIONS(1213), @@ -42924,76 +42924,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [155] = { - [sym_import] = STATE(3557), + [sym_import] = STATE(3556), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1844), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_nested_identifier] = STATE(5679), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), [sym_string] = STATE(1981), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3788), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3784), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(511), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1225), [anon_sym_export] = ACTIONS(1227), [anon_sym_STAR] = ACTIONS(582), @@ -43010,8 +43010,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(1241), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -43022,12 +43020,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1249), [anon_sym_DASH] = ACTIONS(1249), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1251), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1257), [sym_number] = ACTIONS(1259), @@ -43066,76 +43066,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [156] = { - [sym_import] = STATE(3594), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3596), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1892), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1709), + [sym_string] = STATE(1710), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3900), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3897), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(635), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1273), [anon_sym_export] = ACTIONS(1275), [anon_sym_STAR] = ACTIONS(582), @@ -43152,11 +43152,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(1283), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1287), [anon_sym_using] = ACTIONS(753), [anon_sym_AMP] = ACTIONS(755), @@ -43164,12 +43162,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1289), [anon_sym_DASH] = ACTIONS(1289), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(761), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1291), [sym_number] = ACTIONS(1293), @@ -43209,75 +43209,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [157] = { [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2323), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2324), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4302), + [sym_object_pattern] = STATE(4300), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4302), + [sym_array_pattern] = STATE(4300), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1351), - [sym_subscript_expression] = STATE(1351), + [sym_member_expression] = STATE(1354), + [sym_subscript_expression] = STATE(1354), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4302), + [sym__destructuring_pattern] = STATE(4300), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2255), + [sym_string] = STATE(2232), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1351), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_non_null_expression] = STATE(1354), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4112), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4110), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1305), [anon_sym_export] = ACTIONS(1307), [anon_sym_STAR] = ACTIONS(582), @@ -43294,11 +43294,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(598), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1313), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1315), [anon_sym_using] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(755), @@ -43306,12 +43304,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(614), [anon_sym_DASH] = ACTIONS(614), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(618), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(189), [sym_number] = ACTIONS(191), @@ -43351,7 +43351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [158] = { [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1391), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2088), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -43360,66 +43360,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_array] = STATE(1691), [sym_array_pattern] = STATE(5815), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1709), + [sym_string] = STATE(1710), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3900), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3897), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(564), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1323), [anon_sym_export] = ACTIONS(1325), [anon_sym_STAR] = ACTIONS(582), @@ -43436,11 +43436,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(1283), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1339), [anon_sym_using] = ACTIONS(1341), [anon_sym_AMP] = ACTIONS(755), @@ -43448,12 +43446,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1343), [anon_sym_DASH] = ACTIONS(1343), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1345), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1291), [sym_number] = ACTIONS(1293), @@ -43492,9 +43492,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [159] = { - [sym_import] = STATE(3603), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2370), + [sym_import] = STATE(3605), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2373), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -43502,66 +43502,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_array] = STATE(1691), [sym_array_pattern] = STATE(5827), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2351), + [sym_string] = STATE(2352), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3900), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3897), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(591), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1359), [anon_sym_export] = ACTIONS(1361), [anon_sym_STAR] = ACTIONS(582), @@ -43578,11 +43578,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(1095), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1375), [anon_sym_using] = ACTIONS(1377), [anon_sym_AMP] = ACTIONS(755), @@ -43590,12 +43588,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1379), [anon_sym_DASH] = ACTIONS(1379), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1381), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(1113), @@ -43635,7 +43635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [160] = { [sym_import] = STATE(3702), - [sym_parenthesized_expression] = STATE(1324), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1747), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -43644,66 +43644,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_array] = STATE(1691), [sym_array_pattern] = STATE(5710), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1709), + [sym_string] = STATE(1710), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3900), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3897), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(482), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1395), [anon_sym_export] = ACTIONS(1055), [anon_sym_STAR] = ACTIONS(582), @@ -43720,11 +43720,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(1283), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1067), [anon_sym_using] = ACTIONS(606), [anon_sym_AMP] = ACTIONS(755), @@ -43732,12 +43730,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1399), [anon_sym_DASH] = ACTIONS(1399), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(618), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1291), [sym_number] = ACTIONS(1293), @@ -43776,9 +43776,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [161] = { - [sym_import] = STATE(3603), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2496), + [sym_import] = STATE(3605), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2497), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -43786,66 +43786,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_array] = STATE(1691), [sym_array_pattern] = STATE(5839), [sym_glimmer_template] = STATE(1652), - [sym_nested_identifier] = STATE(5868), + [sym_nested_identifier] = STATE(5679), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_string] = STATE(2351), + [sym_string] = STATE(2352), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3900), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3897), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(644), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1405), [anon_sym_export] = ACTIONS(1407), [anon_sym_STAR] = ACTIONS(582), @@ -43862,11 +43862,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(1095), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1421), [anon_sym_using] = ACTIONS(1423), [anon_sym_AMP] = ACTIONS(755), @@ -43874,12 +43872,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1425), [anon_sym_DASH] = ACTIONS(1425), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1427), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(1113), @@ -43918,76 +43918,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [162] = { - [sym_import] = STATE(3557), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3556), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1796), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_nested_identifier] = STATE(5868), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_nested_identifier] = STATE(5679), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), [sym_string] = STATE(1981), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(4280), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3788), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(4277), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3784), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), [sym_type_arguments] = STATE(427), - [sym_object_type] = STATE(3018), + [sym_object_type] = STATE(2987), [sym_type_parameters] = STATE(5262), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1441), [anon_sym_export] = ACTIONS(1443), [anon_sym_STAR] = ACTIONS(582), @@ -44004,24 +44004,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(1241), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1451), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(1453), [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(1455), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1257), [sym_number] = ACTIONS(1259), @@ -44060,8 +44060,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [163] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1780), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -44074,14 +44074,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -44092,17 +44092,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_STAR] = ACTIONS(1465), @@ -44125,13 +44125,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(847), [anon_sym_RBRACK] = ACTIONS(1469), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1467), [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1469), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), @@ -44148,13 +44145,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(1469), [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_LT_EQ] = ACTIONS(1469), [anon_sym_EQ_EQ] = ACTIONS(1467), [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), [anon_sym_BANG_EQ] = ACTIONS(1467), [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1469), [anon_sym_instanceof] = ACTIONS(1467), [anon_sym_TILDE] = ACTIONS(592), @@ -44162,6 +44160,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -44194,49 +44194,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [164] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1784), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_STAR] = ACTIONS(1477), @@ -44257,16 +44257,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1467), [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_QMARK_DOT] = ACTIONS(1469), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_AMP_AMP] = ACTIONS(1469), [anon_sym_PIPE_PIPE] = ACTIONS(1469), [anon_sym_GT_GT] = ACTIONS(1467), @@ -44277,23 +44274,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1467), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(79), [anon_sym_PERCENT] = ACTIONS(1469), [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_LT_EQ] = ACTIONS(1469), [anon_sym_EQ_EQ] = ACTIONS(1467), [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), [anon_sym_BANG_EQ] = ACTIONS(1467), [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1469), [anon_sym_instanceof] = ACTIONS(1467), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -44327,49 +44327,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [165] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1877), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_STAR] = ACTIONS(1483), @@ -44390,10 +44390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1467), [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -44413,13 +44410,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(885), [anon_sym_PERCENT] = ACTIONS(1469), [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_LT_EQ] = ACTIONS(1469), [anon_sym_EQ_EQ] = ACTIONS(1467), [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), [anon_sym_BANG_EQ] = ACTIONS(1467), [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1469), [anon_sym_instanceof] = ACTIONS(1467), [anon_sym_TILDE] = ACTIONS(1235), @@ -44427,6 +44425,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -44460,30 +44460,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [166] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1894), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -44492,17 +44492,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_STAR] = ACTIONS(1491), @@ -44523,13 +44523,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1467), [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1469), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), @@ -44546,13 +44543,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(1469), [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_LT_EQ] = ACTIONS(1469), [anon_sym_EQ_EQ] = ACTIONS(1467), [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), [anon_sym_BANG_EQ] = ACTIONS(1467), [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1469), [anon_sym_instanceof] = ACTIONS(1467), [anon_sym_TILDE] = ACTIONS(739), @@ -44560,6 +44558,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -44592,49 +44592,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [167] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), [sym_expression] = STATE(2261), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_STAR] = ACTIONS(1499), @@ -44653,10 +44653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1467), [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -44673,16 +44670,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1467), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(79), [anon_sym_PERCENT] = ACTIONS(1469), [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_LT_EQ] = ACTIONS(1469), [anon_sym_EQ_EQ] = ACTIONS(1467), [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), [anon_sym_BANG_EQ] = ACTIONS(1467), [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1469), [anon_sym_instanceof] = ACTIONS(1467), [anon_sym_TILDE] = ACTIONS(1137), @@ -44690,6 +44688,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -44723,8 +44723,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [168] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2110), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -44739,12 +44739,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -44755,17 +44755,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_STAR] = ACTIONS(1507), @@ -44784,13 +44784,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1467), [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1469), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), @@ -44807,13 +44804,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(949), [anon_sym_PERCENT] = ACTIONS(1469), [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_LT_EQ] = ACTIONS(1469), [anon_sym_EQ_EQ] = ACTIONS(1467), [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), [anon_sym_BANG_EQ] = ACTIONS(1467), [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1469), [anon_sym_instanceof] = ACTIONS(1467), [anon_sym_TILDE] = ACTIONS(1331), @@ -44821,6 +44819,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -44854,9 +44854,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [169] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2520), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2521), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -44870,12 +44870,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -44886,17 +44886,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_STAR] = ACTIONS(1515), @@ -44915,13 +44915,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1467), [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1469), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), @@ -44938,13 +44935,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(979), [anon_sym_PERCENT] = ACTIONS(1469), [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_LT_EQ] = ACTIONS(1469), [anon_sym_EQ_EQ] = ACTIONS(1467), [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), [anon_sym_BANG_EQ] = ACTIONS(1467), [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1469), [anon_sym_instanceof] = ACTIONS(1467), [anon_sym_TILDE] = ACTIONS(1413), @@ -44952,6 +44950,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -44984,9 +44984,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [170] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2452), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2454), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -44998,14 +44998,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -45016,17 +45016,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_STAR] = ACTIONS(1523), @@ -45045,13 +45045,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1467), [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1469), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), @@ -45068,13 +45065,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(1469), [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_LT_EQ] = ACTIONS(1469), [anon_sym_EQ_EQ] = ACTIONS(1467), [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), [anon_sym_BANG_EQ] = ACTIONS(1467), [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1469), [anon_sym_instanceof] = ACTIONS(1467), [anon_sym_TILDE] = ACTIONS(1367), @@ -45082,6 +45080,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -45114,9 +45114,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [171] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2460), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2464), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -45130,12 +45130,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -45146,17 +45146,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_STAR] = ACTIONS(1531), @@ -45175,13 +45175,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(847), [anon_sym_RBRACK] = ACTIONS(1469), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1467), [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1469), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), @@ -45198,13 +45195,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(1469), [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_LT_EQ] = ACTIONS(1469), [anon_sym_EQ_EQ] = ACTIONS(1467), [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), [anon_sym_BANG_EQ] = ACTIONS(1467), [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1469), [anon_sym_instanceof] = ACTIONS(1467), [anon_sym_TILDE] = ACTIONS(1089), @@ -45212,6 +45210,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -45244,30 +45244,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2545), + [sym_expression] = STATE(2549), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -45276,8 +45276,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -45285,8 +45285,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_STAR] = ACTIONS(1537), @@ -45294,26 +45294,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1467), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(184), + [anon_sym_BANG] = ACTIONS(180), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_in] = ACTIONS(1467), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1467), [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(1469), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), + [anon_sym_using] = ACTIONS(161), [anon_sym_AMP_AMP] = ACTIONS(1469), [anon_sym_PIPE_PIPE] = ACTIONS(1469), [anon_sym_GT_GT] = ACTIONS(1467), @@ -45322,25 +45319,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1467), [anon_sym_CARET] = ACTIONS(1469), [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), [anon_sym_PERCENT] = ACTIONS(1469), [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_LT_EQ] = ACTIONS(1469), [anon_sym_EQ_EQ] = ACTIONS(1467), [anon_sym_EQ_EQ_EQ] = ACTIONS(1469), [anon_sym_BANG_EQ] = ACTIONS(1467), [anon_sym_BANG_EQ_EQ] = ACTIONS(1469), [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1467), [anon_sym_QMARK_QMARK] = ACTIONS(1469), [anon_sym_instanceof] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -45373,101 +45373,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_typeof] = ACTIONS(1543), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(157), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -45492,67 +45492,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_declaration] = STATE(3969), - [sym_import] = STATE(3513), + [sym_declaration] = STATE(3968), + [sym_import] = STATE(3514), [sym_variable_declaration] = STATE(3912), [sym_lexical_declaration] = STATE(3912), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2417), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2393), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), [sym_class_declaration] = STATE(3912), - [sym_function_expression] = STATE(2117), + [sym_function_expression] = STATE(2118), [sym_function_declaration] = STATE(3912), - [sym_generator_function] = STATE(2117), + [sym_generator_function] = STATE(2118), [sym_generator_function_declaration] = STATE(3912), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), [sym_function_signature] = STATE(3912), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), [sym_ambient_declaration] = STATE(3912), [sym_abstract_class_declaration] = STATE(3912), [sym_module] = STATE(3912), - [sym_internal_module] = STATE(2390), + [sym_internal_module] = STATE(2420), [sym_import_alias] = STATE(3912), [sym_interface_declaration] = STATE(3912), [sym_enum_declaration] = STATE(3912), [sym_type_alias_declaration] = STATE(3912), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4229), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4228), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1571), @@ -45569,8 +45569,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(1581), [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(1585), @@ -45578,13 +45576,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -45619,61 +45619,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [175] = { [sym_declaration] = STATE(929), - [sym_import] = STATE(3513), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_parenthesized_expression] = STATE(1417), + [sym_import] = STATE(3514), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_parenthesized_expression] = STATE(1416), [sym_expression] = STATE(2433), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_export_statement_repeat1] = STATE(4161), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), @@ -45691,22 +45691,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), + [anon_sym_class] = ACTIONS(69), [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(1501), [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -45740,63 +45740,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_declaration] = STATE(4141), - [sym_import] = STATE(3513), + [sym_declaration] = STATE(4140), + [sym_import] = STATE(3514), [sym_variable_declaration] = STATE(3912), [sym_lexical_declaration] = STATE(3912), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2442), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2444), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), [sym_class_declaration] = STATE(3912), - [sym_function_expression] = STATE(2117), + [sym_function_expression] = STATE(2118), [sym_function_declaration] = STATE(3912), - [sym_generator_function] = STATE(2117), + [sym_generator_function] = STATE(2118), [sym_generator_function_declaration] = STATE(3912), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), [sym_function_signature] = STATE(3912), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), [sym_ambient_declaration] = STATE(3912), [sym_abstract_class_declaration] = STATE(3912), [sym_module] = STATE(3912), - [sym_internal_module] = STATE(2390), + [sym_internal_module] = STATE(2420), [sym_import_alias] = STATE(3912), [sym_interface_declaration] = STATE(3912), [sym_enum_declaration] = STATE(3912), [sym_type_alias_declaration] = STATE(3912), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4229), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4228), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1571), @@ -45813,8 +45813,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(1581), [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(1585), @@ -45822,13 +45820,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -45862,99 +45862,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(855), [anon_sym_as] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_typeof] = ACTIONS(1543), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -45979,68 +45979,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [178] = { [sym_declaration] = STATE(934), - [sym_import] = STATE(3513), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_parenthesized_expression] = STATE(1417), + [sym_import] = STATE(3514), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_parenthesized_expression] = STATE(1416), [sym_expression] = STATE(2434), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4135), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4134), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1597), @@ -46057,8 +46057,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(568), @@ -46066,13 +46064,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -46106,99 +46106,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(875), [anon_sym_as] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_typeof] = ACTIONS(1543), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -46223,67 +46223,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [180] = { [sym_declaration] = STATE(934), - [sym_import] = STATE(3513), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_parenthesized_expression] = STATE(1417), + [sym_import] = STATE(3514), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_parenthesized_expression] = STATE(1416), [sym_expression] = STATE(2434), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), [sym_internal_module] = STATE(239), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_export_statement_repeat1] = STATE(4161), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), @@ -46301,22 +46301,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_class] = ACTIONS(73), + [anon_sym_class] = ACTIONS(69), [anon_sym_async] = ACTIONS(1605), - [anon_sym_function] = ACTIONS(77), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(1501), [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -46351,62 +46351,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [181] = { [sym_declaration] = STATE(929), - [sym_import] = STATE(3513), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_parenthesized_expression] = STATE(1417), + [sym_import] = STATE(3514), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_parenthesized_expression] = STATE(1416), [sym_expression] = STATE(2433), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_class_declaration] = STATE(836), - [sym_function_expression] = STATE(2117), - [sym_function_declaration] = STATE(836), - [sym_generator_function] = STATE(2117), - [sym_generator_function_declaration] = STATE(836), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_class_declaration] = STATE(837), + [sym_function_expression] = STATE(2118), + [sym_function_declaration] = STATE(837), + [sym_generator_function] = STATE(2118), + [sym_generator_function_declaration] = STATE(837), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_function_signature] = STATE(836), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(2470), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_function_signature] = STATE(837), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(2487), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4135), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4134), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1597), @@ -46423,8 +46423,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(564), [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(568), @@ -46432,13 +46430,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -46472,37 +46472,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(841), @@ -46518,53 +46518,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(833), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -46589,41 +46589,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(119), @@ -46639,53 +46639,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(128), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -46710,103 +46710,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(890), [anon_sym_as] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_typeof] = ACTIONS(1543), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_RPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(157), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -46831,41 +46831,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(925), @@ -46876,56 +46876,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -46950,42 +46950,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), [sym_type] = STATE(3729), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(887), @@ -47000,28 +47000,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(224), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1613), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -47030,23 +47027,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1615), [anon_sym_CARET] = ACTIONS(122), [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -47071,41 +47071,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3254), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3257), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(1625), [anon_sym_EQ] = ACTIONS(887), @@ -47120,53 +47120,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_in] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(1641), + [anon_sym_AMP] = ACTIONS(1637), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_void] = ACTIONS(1045), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -47191,47 +47191,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(1045), [anon_sym_never] = ACTIONS(1045), [anon_sym_LBRACE_PIPE] = ACTIONS(1047), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(939), [anon_sym_as] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_typeof] = ACTIONS(1543), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), @@ -47239,53 +47239,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_in] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -47311,41 +47311,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(831), @@ -47359,53 +47359,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(833), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -47430,41 +47430,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(917), @@ -47477,54 +47477,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_in] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), + [anon_sym_RBRACK] = ACTIONS(157), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -47549,41 +47549,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [191] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(955), @@ -47595,55 +47595,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(157), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -47668,41 +47668,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(969), @@ -47716,53 +47716,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -47787,41 +47787,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(117), [anon_sym_EQ] = ACTIONS(831), @@ -47834,53 +47834,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_in] = ACTIONS(122), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), [anon_sym_GT_GT_GT] = ACTIONS(122), [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(167), [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(173), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_void] = ACTIONS(217), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -47905,48 +47905,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1817), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4097), + [sym_object_pattern] = STATE(4100), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4097), + [sym_array_pattern] = STATE(4100), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym__formal_parameter] = STATE(4551), + [sym__call_signature] = STATE(5803), + [sym__formal_parameter] = STATE(4540), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1357), [sym_subscript_expression] = STATE(1357), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4097), + [sym__destructuring_pattern] = STATE(4100), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5646), + [sym_sequence_expression] = STATE(5652), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), [sym_non_null_expression] = STATE(1357), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -47955,11 +47955,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), + [sym_required_parameter] = STATE(4540), + [sym_optional_parameter] = STATE(4540), + [sym__parameter_name] = STATE(3613), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(1659), [anon_sym_export] = ACTIONS(731), @@ -47976,23 +47976,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(749), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1661), [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -48023,44 +48023,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1834), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4097), + [sym_object_pattern] = STATE(4100), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4097), + [sym_array_pattern] = STATE(4100), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym__formal_parameter] = STATE(4551), + [sym__call_signature] = STATE(5803), + [sym__formal_parameter] = STATE(4540), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1357), [sym_subscript_expression] = STATE(1357), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4097), + [sym__destructuring_pattern] = STATE(4100), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5858), + [sym_sequence_expression] = STATE(5853), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), [sym_non_null_expression] = STATE(1357), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -48069,11 +48069,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), + [sym_required_parameter] = STATE(4540), + [sym_optional_parameter] = STATE(4540), + [sym__parameter_name] = STATE(3613), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(1659), [anon_sym_export] = ACTIONS(731), @@ -48090,23 +48090,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(749), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1661), [anon_sym_using] = ACTIONS(753), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -48137,9 +48137,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -48151,15 +48151,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(4587), + [sym__call_signature] = STATE(5794), + [sym__formal_parameter] = STATE(4585), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -48170,11 +48170,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48182,44 +48182,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4587), - [sym_optional_parameter] = STATE(4587), - [sym__parameter_name] = STATE(3611), + [sym_required_parameter] = STATE(4585), + [sym_optional_parameter] = STATE(4585), + [sym__parameter_name] = STATE(3613), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_RPAREN] = ACTIONS(1669), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -48250,9 +48250,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [197] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -48264,15 +48264,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(4904), + [sym__call_signature] = STATE(5794), + [sym__formal_parameter] = STATE(4901), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -48283,11 +48283,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48295,44 +48295,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4904), - [sym_optional_parameter] = STATE(4904), - [sym__parameter_name] = STATE(3611), + [sym_required_parameter] = STATE(4901), + [sym_optional_parameter] = STATE(4901), + [sym__parameter_name] = STATE(3613), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_RPAREN] = ACTIONS(1677), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -48363,9 +48363,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [198] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -48377,15 +48377,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(5283), + [sym__call_signature] = STATE(5794), + [sym__formal_parameter] = STATE(5285), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -48396,11 +48396,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48408,44 +48408,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5283), - [sym_optional_parameter] = STATE(5283), - [sym__parameter_name] = STATE(3611), + [sym_required_parameter] = STATE(5285), + [sym_optional_parameter] = STATE(5285), + [sym__parameter_name] = STATE(3613), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_RPAREN] = ACTIONS(1679), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -48476,9 +48476,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [199] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -48490,15 +48490,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(5283), + [sym__call_signature] = STATE(5794), + [sym__formal_parameter] = STATE(5285), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -48509,11 +48509,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48521,44 +48521,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5283), - [sym_optional_parameter] = STATE(5283), - [sym__parameter_name] = STATE(3611), + [sym_required_parameter] = STATE(5285), + [sym_optional_parameter] = STATE(5285), + [sym__parameter_name] = STATE(3613), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_RPAREN] = ACTIONS(1681), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -48589,9 +48589,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [200] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -48603,15 +48603,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(5283), + [sym__call_signature] = STATE(5794), + [sym__formal_parameter] = STATE(5285), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -48622,11 +48622,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48634,44 +48634,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5283), - [sym_optional_parameter] = STATE(5283), - [sym__parameter_name] = STATE(3611), + [sym_required_parameter] = STATE(5285), + [sym_optional_parameter] = STATE(5285), + [sym__parameter_name] = STATE(3613), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_RPAREN] = ACTIONS(1683), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -48702,9 +48702,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [201] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -48716,15 +48716,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(4551), + [sym__call_signature] = STATE(5794), + [sym__formal_parameter] = STATE(4540), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -48735,11 +48735,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48747,44 +48747,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(4551), - [sym_optional_parameter] = STATE(4551), - [sym__parameter_name] = STATE(3611), + [sym_required_parameter] = STATE(4540), + [sym_optional_parameter] = STATE(4540), + [sym__parameter_name] = STATE(3613), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_RPAREN] = ACTIONS(741), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -48815,9 +48815,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [202] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -48829,15 +48829,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(5283), + [sym__call_signature] = STATE(5794), + [sym__formal_parameter] = STATE(5285), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -48848,11 +48848,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48860,44 +48860,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5283), - [sym_optional_parameter] = STATE(5283), - [sym__parameter_name] = STATE(3611), + [sym_required_parameter] = STATE(5285), + [sym_optional_parameter] = STATE(5285), + [sym__parameter_name] = STATE(3613), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_RPAREN] = ACTIONS(1685), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -48928,9 +48928,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [203] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -48942,15 +48942,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(5283), + [sym__call_signature] = STATE(5794), + [sym__formal_parameter] = STATE(5285), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -48961,11 +48961,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -48973,44 +48973,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5283), - [sym_optional_parameter] = STATE(5283), - [sym__parameter_name] = STATE(3611), + [sym_required_parameter] = STATE(5285), + [sym_optional_parameter] = STATE(5285), + [sym__parameter_name] = STATE(3613), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_RPAREN] = ACTIONS(1687), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -49041,9 +49041,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [204] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -49055,15 +49055,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(5283), + [sym__call_signature] = STATE(5794), + [sym__formal_parameter] = STATE(5285), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -49074,11 +49074,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -49086,44 +49086,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_accessibility_modifier] = STATE(288), [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5283), - [sym_optional_parameter] = STATE(5283), - [sym__parameter_name] = STATE(3611), + [sym_required_parameter] = STATE(5285), + [sym_optional_parameter] = STATE(5285), + [sym__parameter_name] = STATE(3613), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), + [sym_type_parameters] = STATE(5354), [aux_sym_export_statement_repeat1] = STATE(265), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_RPAREN] = ACTIONS(1689), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -49154,32 +49154,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [205] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2136), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2138), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(5119), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(5132), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -49188,21 +49188,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4388), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4579), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4582), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(1691), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), @@ -49219,23 +49219,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(819), [anon_sym_RBRACK] = ACTIONS(1695), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1697), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -49266,32 +49266,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [206] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2178), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(4611), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -49300,21 +49300,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4388), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4617), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(1691), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), @@ -49331,23 +49331,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(819), [anon_sym_RBRACK] = ACTIONS(1701), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1697), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -49417,10 +49417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1705), [anon_sym_LBRACK] = ACTIONS(1703), [sym_glimmer_opening_tag] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1707), [anon_sym_DOT] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), [anon_sym_class] = ACTIONS(1705), [anon_sym_async] = ACTIONS(1705), [anon_sym_function] = ACTIONS(1705), @@ -49447,6 +49444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1707), [anon_sym_BANG_EQ_EQ] = ACTIONS(1711), [anon_sym_GT_EQ] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1707), [anon_sym_QMARK_QMARK] = ACTIONS(1711), [anon_sym_instanceof] = ACTIONS(1707), [anon_sym_TILDE] = ACTIONS(1703), @@ -49454,6 +49452,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1705), [anon_sym_PLUS_PLUS] = ACTIONS(1703), [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1703), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1703), [sym_number] = ACTIONS(1703), @@ -49490,32 +49490,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [208] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2178), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(4611), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -49524,21 +49524,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4388), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4617), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(1691), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), @@ -49555,23 +49555,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(819), [anon_sym_RBRACK] = ACTIONS(1715), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1697), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -49602,7 +49602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [209] = { - [sym_statement_block] = STATE(236), + [sym_statement_block] = STATE(244), [ts_builtin_sym_end] = ACTIONS(1717), [sym_identifier] = ACTIONS(1719), [anon_sym_export] = ACTIONS(1719), @@ -49641,10 +49641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1719), [anon_sym_LBRACK] = ACTIONS(1717), [sym_glimmer_opening_tag] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1719), [anon_sym_DOT] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), [anon_sym_class] = ACTIONS(1719), [anon_sym_async] = ACTIONS(1719), [anon_sym_function] = ACTIONS(1719), @@ -49671,6 +49668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1719), [anon_sym_BANG_EQ_EQ] = ACTIONS(1717), [anon_sym_GT_EQ] = ACTIONS(1717), + [anon_sym_GT] = ACTIONS(1719), [anon_sym_QMARK_QMARK] = ACTIONS(1717), [anon_sym_instanceof] = ACTIONS(1719), [anon_sym_TILDE] = ACTIONS(1717), @@ -49678,6 +49676,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1719), [anon_sym_PLUS_PLUS] = ACTIONS(1717), [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_SQUOTE] = ACTIONS(1717), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1717), [sym_number] = ACTIONS(1717), @@ -49714,32 +49714,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [210] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2178), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(4611), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -49748,21 +49748,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4388), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4617), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(1691), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), @@ -49779,23 +49779,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(819), [anon_sym_RBRACK] = ACTIONS(1723), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1697), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -49826,7 +49826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [211] = { - [sym_statement_block] = STATE(236), + [sym_statement_block] = STATE(244), [ts_builtin_sym_end] = ACTIONS(1717), [sym_identifier] = ACTIONS(1719), [anon_sym_export] = ACTIONS(1719), @@ -49865,10 +49865,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1719), [anon_sym_LBRACK] = ACTIONS(1717), [sym_glimmer_opening_tag] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1719), [anon_sym_DOT] = ACTIONS(1725), + [anon_sym_class] = ACTIONS(1719), + [anon_sym_async] = ACTIONS(1719), + [anon_sym_function] = ACTIONS(1719), + [anon_sym_QMARK_DOT] = ACTIONS(1717), + [anon_sym_new] = ACTIONS(1719), + [anon_sym_using] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1717), + [anon_sym_PIPE_PIPE] = ACTIONS(1717), + [anon_sym_GT_GT] = ACTIONS(1719), + [anon_sym_GT_GT_GT] = ACTIONS(1717), + [anon_sym_LT_LT] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1719), + [anon_sym_CARET] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1719), + [anon_sym_PLUS] = ACTIONS(1719), + [anon_sym_DASH] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1719), + [anon_sym_PERCENT] = ACTIONS(1717), + [anon_sym_STAR_STAR] = ACTIONS(1717), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_LT_EQ] = ACTIONS(1717), + [anon_sym_EQ_EQ] = ACTIONS(1719), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1717), + [anon_sym_BANG_EQ] = ACTIONS(1719), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1717), + [anon_sym_GT_EQ] = ACTIONS(1717), + [anon_sym_GT] = ACTIONS(1719), + [anon_sym_QMARK_QMARK] = ACTIONS(1717), + [anon_sym_instanceof] = ACTIONS(1719), + [anon_sym_TILDE] = ACTIONS(1717), + [anon_sym_void] = ACTIONS(1719), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_DASH_DASH] = ACTIONS(1717), [anon_sym_DQUOTE] = ACTIONS(1717), [anon_sym_SQUOTE] = ACTIONS(1717), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1717), + [sym_number] = ACTIONS(1717), + [sym_private_property_identifier] = ACTIONS(1717), + [sym_this] = ACTIONS(1719), + [sym_super] = ACTIONS(1719), + [sym_true] = ACTIONS(1719), + [sym_false] = ACTIONS(1719), + [sym_null] = ACTIONS(1719), + [sym_undefined] = ACTIONS(1719), + [anon_sym_AT] = ACTIONS(1717), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_abstract] = ACTIONS(1719), + [anon_sym_satisfies] = ACTIONS(1719), + [anon_sym_interface] = ACTIONS(1719), + [anon_sym_enum] = ACTIONS(1719), + [sym__automatic_semicolon] = ACTIONS(1717), + [sym__ternary_qmark] = ACTIONS(1717), + [sym_html_comment] = ACTIONS(5), + }, + [212] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1228), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(1512), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1691), + [sym_object_pattern] = STATE(3739), + [sym_array] = STATE(1691), + [sym_array_pattern] = STATE(3739), + [sym_glimmer_template] = STATE(1652), + [sym_class] = STATE(1691), + [sym_function_expression] = STATE(1691), + [sym_generator_function] = STATE(1691), + [sym_arrow_function] = STATE(1691), + [sym__call_signature] = STATE(5794), + [sym__formal_parameter] = STATE(5285), + [sym_call_expression] = STATE(1691), + [sym_new_expression] = STATE(1619), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(2993), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(3739), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1691), + [sym_template_string] = STATE(1691), + [sym_regex] = STATE(1691), + [sym_meta_property] = STATE(1691), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4056), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_accessibility_modifier] = STATE(288), + [sym_override_modifier] = STATE(303), + [sym_required_parameter] = STATE(5285), + [sym_optional_parameter] = STATE(5285), + [sym__parameter_name] = STATE(3613), + [sym_type_arguments] = STATE(537), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(265), + [sym_identifier] = ACTIONS(701), + [anon_sym_export] = ACTIONS(115), + [anon_sym_type] = ACTIONS(115), + [anon_sym_namespace] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(703), + [anon_sym_typeof] = ACTIONS(180), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(115), + [anon_sym_BANG] = ACTIONS(176), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(1671), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(711), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(827), + [sym_number] = ACTIONS(719), + [sym_private_property_identifier] = ACTIONS(193), + [sym_this] = ACTIONS(1673), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(723), + [anon_sym_AT] = ACTIONS(779), + [anon_sym_static] = ACTIONS(115), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(115), + [anon_sym_set] = ACTIONS(115), + [anon_sym_declare] = ACTIONS(115), + [anon_sym_public] = ACTIONS(805), + [anon_sym_private] = ACTIONS(805), + [anon_sym_protected] = ACTIONS(805), + [anon_sym_override] = ACTIONS(807), + [anon_sym_module] = ACTIONS(115), + [anon_sym_any] = ACTIONS(115), + [anon_sym_number] = ACTIONS(115), + [anon_sym_boolean] = ACTIONS(115), + [anon_sym_string] = ACTIONS(115), + [anon_sym_symbol] = ACTIONS(115), + [anon_sym_object] = ACTIONS(115), + [sym_html_comment] = ACTIONS(5), + }, + [213] = { + [sym_statement_block] = STATE(244), + [ts_builtin_sym_end] = ACTIONS(1717), + [sym_identifier] = ACTIONS(1719), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_STAR] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_as] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1721), + [anon_sym_COMMA] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_typeof] = ACTIONS(1719), + [anon_sym_import] = ACTIONS(1719), + [anon_sym_with] = ACTIONS(1719), + [anon_sym_var] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(1719), + [anon_sym_else] = ACTIONS(1719), + [anon_sym_if] = ACTIONS(1719), + [anon_sym_switch] = ACTIONS(1719), + [anon_sym_for] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_in] = ACTIONS(1719), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_do] = ACTIONS(1719), + [anon_sym_try] = ACTIONS(1719), + [anon_sym_break] = ACTIONS(1719), + [anon_sym_continue] = ACTIONS(1719), + [anon_sym_debugger] = ACTIONS(1719), + [anon_sym_return] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1719), + [anon_sym_case] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1717), + [sym_glimmer_opening_tag] = ACTIONS(1717), + [anon_sym_DOT] = ACTIONS(1727), [anon_sym_class] = ACTIONS(1719), [anon_sym_async] = ACTIONS(1719), [anon_sym_function] = ACTIONS(1719), @@ -49895,6 +50116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1719), [anon_sym_BANG_EQ_EQ] = ACTIONS(1717), [anon_sym_GT_EQ] = ACTIONS(1717), + [anon_sym_GT] = ACTIONS(1719), [anon_sym_QMARK_QMARK] = ACTIONS(1717), [anon_sym_instanceof] = ACTIONS(1719), [anon_sym_TILDE] = ACTIONS(1717), @@ -49902,230 +50124,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1719), [anon_sym_PLUS_PLUS] = ACTIONS(1717), [anon_sym_DASH_DASH] = ACTIONS(1717), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1717), - [sym_number] = ACTIONS(1717), - [sym_private_property_identifier] = ACTIONS(1717), - [sym_this] = ACTIONS(1719), - [sym_super] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_undefined] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1719), - [anon_sym_satisfies] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [sym__automatic_semicolon] = ACTIONS(1717), - [sym__ternary_qmark] = ACTIONS(1717), - [sym_html_comment] = ACTIONS(5), - }, - [212] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(3739), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(3739), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym__formal_parameter] = STATE(5283), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(3739), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4057), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_accessibility_modifier] = STATE(288), - [sym_override_modifier] = STATE(303), - [sym_required_parameter] = STATE(5283), - [sym_optional_parameter] = STATE(5283), - [sym__parameter_name] = STATE(3611), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(701), - [anon_sym_export] = ACTIONS(115), - [anon_sym_type] = ACTIONS(115), - [anon_sym_namespace] = ACTIONS(124), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1671), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(1673), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(723), - [anon_sym_AT] = ACTIONS(779), - [anon_sym_static] = ACTIONS(115), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [anon_sym_declare] = ACTIONS(115), - [anon_sym_public] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_protected] = ACTIONS(805), - [anon_sym_override] = ACTIONS(807), - [anon_sym_module] = ACTIONS(115), - [anon_sym_any] = ACTIONS(115), - [anon_sym_number] = ACTIONS(115), - [anon_sym_boolean] = ACTIONS(115), - [anon_sym_string] = ACTIONS(115), - [anon_sym_symbol] = ACTIONS(115), - [anon_sym_object] = ACTIONS(115), - [sym_html_comment] = ACTIONS(5), - }, - [213] = { - [sym_statement_block] = STATE(236), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_typeof] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1719), - [anon_sym_with] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_await] = ACTIONS(1719), - [anon_sym_in] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_debugger] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1717), - [sym_glimmer_opening_tag] = ACTIONS(1717), - [anon_sym_GT] = ACTIONS(1719), - [anon_sym_DOT] = ACTIONS(1727), [anon_sym_DQUOTE] = ACTIONS(1717), [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_function] = ACTIONS(1719), - [anon_sym_QMARK_DOT] = ACTIONS(1717), - [anon_sym_new] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_GT_GT] = ACTIONS(1719), - [anon_sym_GT_GT_GT] = ACTIONS(1717), - [anon_sym_LT_LT] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_PERCENT] = ACTIONS(1717), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1719), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1719), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(1717), - [anon_sym_QMARK_QMARK] = ACTIONS(1717), - [anon_sym_instanceof] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_void] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1717), [sym_number] = ACTIONS(1717), @@ -50162,32 +50162,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(2113), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(5119), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(5132), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -50196,21 +50196,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4388), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4579), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4582), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(1691), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), @@ -50227,23 +50227,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(819), [anon_sym_RBRACK] = ACTIONS(1695), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1697), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -50274,32 +50274,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [215] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2178), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(4611), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -50308,21 +50308,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4388), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4617), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(1691), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), @@ -50339,23 +50339,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(819), [anon_sym_RBRACK] = ACTIONS(1729), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1697), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -50386,32 +50386,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [216] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2177), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2178), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4622), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(4611), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -50420,21 +50420,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4388), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4627), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4617), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(1691), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), @@ -50451,23 +50451,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(819), [anon_sym_RBRACK] = ACTIONS(1731), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1697), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -50536,10 +50536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1735), [anon_sym_LBRACK] = ACTIONS(1733), [sym_glimmer_opening_tag] = ACTIONS(1733), - [anon_sym_GT] = ACTIONS(1737), [anon_sym_DOT] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1733), - [anon_sym_SQUOTE] = ACTIONS(1733), [anon_sym_class] = ACTIONS(1735), [anon_sym_async] = ACTIONS(1735), [anon_sym_function] = ACTIONS(1735), @@ -50566,6 +50563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1737), [anon_sym_BANG_EQ_EQ] = ACTIONS(1739), [anon_sym_GT_EQ] = ACTIONS(1739), + [anon_sym_GT] = ACTIONS(1737), [anon_sym_QMARK_QMARK] = ACTIONS(1739), [anon_sym_instanceof] = ACTIONS(1737), [anon_sym_TILDE] = ACTIONS(1733), @@ -50573,6 +50571,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1735), [anon_sym_PLUS_PLUS] = ACTIONS(1733), [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [anon_sym_SQUOTE] = ACTIONS(1733), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1733), [sym_number] = ACTIONS(1733), @@ -50612,13 +50612,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1743), [sym_identifier] = ACTIONS(1745), [anon_sym_export] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1747), + [anon_sym_STAR] = ACTIONS(1745), [anon_sym_default] = ACTIONS(1745), [anon_sym_type] = ACTIONS(1745), - [anon_sym_as] = ACTIONS(1747), + [anon_sym_as] = ACTIONS(1745), [anon_sym_namespace] = ACTIONS(1745), [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1743), [anon_sym_RBRACE] = ACTIONS(1743), [anon_sym_typeof] = ACTIONS(1745), [anon_sym_import] = ACTIONS(1745), @@ -50634,7 +50634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1743), [anon_sym_SEMI] = ACTIONS(1743), [anon_sym_await] = ACTIONS(1745), - [anon_sym_in] = ACTIONS(1747), + [anon_sym_in] = ACTIONS(1745), [anon_sym_while] = ACTIONS(1745), [anon_sym_do] = ACTIONS(1745), [anon_sym_try] = ACTIONS(1745), @@ -50647,43 +50647,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1745), [anon_sym_LBRACK] = ACTIONS(1743), [sym_glimmer_opening_tag] = ACTIONS(1743), - [anon_sym_GT] = ACTIONS(1747), - [anon_sym_DOT] = ACTIONS(1747), - [anon_sym_DQUOTE] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1743), + [anon_sym_DOT] = ACTIONS(1745), [anon_sym_class] = ACTIONS(1745), [anon_sym_async] = ACTIONS(1745), [anon_sym_function] = ACTIONS(1745), - [anon_sym_QMARK_DOT] = ACTIONS(1749), + [anon_sym_QMARK_DOT] = ACTIONS(1743), [anon_sym_new] = ACTIONS(1745), [anon_sym_using] = ACTIONS(1745), - [anon_sym_AMP_AMP] = ACTIONS(1749), - [anon_sym_PIPE_PIPE] = ACTIONS(1749), - [anon_sym_GT_GT] = ACTIONS(1747), - [anon_sym_GT_GT_GT] = ACTIONS(1749), - [anon_sym_LT_LT] = ACTIONS(1749), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_CARET] = ACTIONS(1749), - [anon_sym_PIPE] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1743), + [anon_sym_PIPE_PIPE] = ACTIONS(1743), + [anon_sym_GT_GT] = ACTIONS(1745), + [anon_sym_GT_GT_GT] = ACTIONS(1743), + [anon_sym_LT_LT] = ACTIONS(1743), + [anon_sym_AMP] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1743), + [anon_sym_PIPE] = ACTIONS(1745), [anon_sym_PLUS] = ACTIONS(1745), [anon_sym_DASH] = ACTIONS(1745), [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_PERCENT] = ACTIONS(1749), - [anon_sym_STAR_STAR] = ACTIONS(1749), + [anon_sym_PERCENT] = ACTIONS(1743), + [anon_sym_STAR_STAR] = ACTIONS(1743), [anon_sym_LT] = ACTIONS(1745), - [anon_sym_LT_EQ] = ACTIONS(1749), - [anon_sym_EQ_EQ] = ACTIONS(1747), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1749), - [anon_sym_BANG_EQ] = ACTIONS(1747), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1749), - [anon_sym_GT_EQ] = ACTIONS(1749), - [anon_sym_QMARK_QMARK] = ACTIONS(1749), - [anon_sym_instanceof] = ACTIONS(1747), + [anon_sym_LT_EQ] = ACTIONS(1743), + [anon_sym_EQ_EQ] = ACTIONS(1745), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1743), + [anon_sym_BANG_EQ] = ACTIONS(1745), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1743), + [anon_sym_GT_EQ] = ACTIONS(1743), + [anon_sym_GT] = ACTIONS(1745), + [anon_sym_QMARK_QMARK] = ACTIONS(1743), + [anon_sym_instanceof] = ACTIONS(1745), [anon_sym_TILDE] = ACTIONS(1743), [anon_sym_void] = ACTIONS(1745), [anon_sym_delete] = ACTIONS(1745), [anon_sym_PLUS_PLUS] = ACTIONS(1743), [anon_sym_DASH_DASH] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1743), + [anon_sym_SQUOTE] = ACTIONS(1743), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1743), [sym_number] = ACTIONS(1743), @@ -50712,349 +50712,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1745), [anon_sym_object] = ACTIONS(1745), [anon_sym_abstract] = ACTIONS(1745), - [anon_sym_satisfies] = ACTIONS(1747), + [anon_sym_satisfies] = ACTIONS(1745), [anon_sym_interface] = ACTIONS(1745), [anon_sym_enum] = ACTIONS(1745), - [sym__automatic_semicolon] = ACTIONS(1751), - [sym__ternary_qmark] = ACTIONS(1749), + [sym__automatic_semicolon] = ACTIONS(1743), + [sym__ternary_qmark] = ACTIONS(1743), [sym_html_comment] = ACTIONS(5), }, [219] = { - [ts_builtin_sym_end] = ACTIONS(1753), - [sym_identifier] = ACTIONS(1755), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1757), - [anon_sym_default] = ACTIONS(1755), - [anon_sym_type] = ACTIONS(1755), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_namespace] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1753), - [anon_sym_COMMA] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1753), - [anon_sym_typeof] = ACTIONS(1755), - [anon_sym_import] = ACTIONS(1755), - [anon_sym_with] = ACTIONS(1755), - [anon_sym_var] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_BANG] = ACTIONS(1755), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_in] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_debugger] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_throw] = ACTIONS(1755), - [anon_sym_case] = ACTIONS(1755), - [anon_sym_yield] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1753), - [sym_glimmer_opening_tag] = ACTIONS(1753), - [anon_sym_GT] = ACTIONS(1757), - [anon_sym_DOT] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1753), - [anon_sym_SQUOTE] = ACTIONS(1753), - [anon_sym_class] = ACTIONS(1755), - [anon_sym_async] = ACTIONS(1755), - [anon_sym_function] = ACTIONS(1755), - [anon_sym_QMARK_DOT] = ACTIONS(1759), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_using] = ACTIONS(1755), - [anon_sym_AMP_AMP] = ACTIONS(1759), - [anon_sym_PIPE_PIPE] = ACTIONS(1759), - [anon_sym_GT_GT] = ACTIONS(1757), - [anon_sym_GT_GT_GT] = ACTIONS(1759), - [anon_sym_LT_LT] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_PERCENT] = ACTIONS(1759), - [anon_sym_STAR_STAR] = ACTIONS(1759), - [anon_sym_LT] = ACTIONS(1755), - [anon_sym_LT_EQ] = ACTIONS(1759), - [anon_sym_EQ_EQ] = ACTIONS(1757), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1759), - [anon_sym_BANG_EQ] = ACTIONS(1757), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1759), - [anon_sym_GT_EQ] = ACTIONS(1759), - [anon_sym_QMARK_QMARK] = ACTIONS(1759), - [anon_sym_instanceof] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1753), - [anon_sym_void] = ACTIONS(1755), - [anon_sym_delete] = ACTIONS(1755), - [anon_sym_PLUS_PLUS] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1753), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1753), - [sym_number] = ACTIONS(1753), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(1755), - [sym_super] = ACTIONS(1755), - [sym_true] = ACTIONS(1755), - [sym_false] = ACTIONS(1755), - [sym_null] = ACTIONS(1755), - [sym_undefined] = ACTIONS(1755), - [anon_sym_AT] = ACTIONS(1753), - [anon_sym_static] = ACTIONS(1755), - [anon_sym_readonly] = ACTIONS(1755), - [anon_sym_get] = ACTIONS(1755), - [anon_sym_set] = ACTIONS(1755), - [anon_sym_declare] = ACTIONS(1755), - [anon_sym_public] = ACTIONS(1755), - [anon_sym_private] = ACTIONS(1755), - [anon_sym_protected] = ACTIONS(1755), - [anon_sym_override] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_any] = ACTIONS(1755), - [anon_sym_number] = ACTIONS(1755), - [anon_sym_boolean] = ACTIONS(1755), - [anon_sym_string] = ACTIONS(1755), - [anon_sym_symbol] = ACTIONS(1755), - [anon_sym_object] = ACTIONS(1755), - [anon_sym_abstract] = ACTIONS(1755), - [anon_sym_satisfies] = ACTIONS(1757), - [anon_sym_interface] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [sym__automatic_semicolon] = ACTIONS(1761), - [sym__ternary_qmark] = ACTIONS(1759), + [ts_builtin_sym_end] = ACTIONS(1747), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_STAR] = ACTIONS(1749), + [anon_sym_default] = ACTIONS(1749), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_namespace] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1747), + [anon_sym_COMMA] = ACTIONS(1747), + [anon_sym_RBRACE] = ACTIONS(1747), + [anon_sym_typeof] = ACTIONS(1749), + [anon_sym_import] = ACTIONS(1749), + [anon_sym_with] = ACTIONS(1749), + [anon_sym_var] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_switch] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_in] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_debugger] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_throw] = ACTIONS(1749), + [anon_sym_case] = ACTIONS(1749), + [anon_sym_yield] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1747), + [sym_glimmer_opening_tag] = ACTIONS(1747), + [anon_sym_DOT] = ACTIONS(1749), + [anon_sym_class] = ACTIONS(1749), + [anon_sym_async] = ACTIONS(1749), + [anon_sym_function] = ACTIONS(1749), + [anon_sym_QMARK_DOT] = ACTIONS(1747), + [anon_sym_new] = ACTIONS(1749), + [anon_sym_using] = ACTIONS(1749), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1747), + [anon_sym_GT_GT] = ACTIONS(1749), + [anon_sym_GT_GT_GT] = ACTIONS(1747), + [anon_sym_LT_LT] = ACTIONS(1747), + [anon_sym_AMP] = ACTIONS(1749), + [anon_sym_CARET] = ACTIONS(1747), + [anon_sym_PIPE] = ACTIONS(1749), + [anon_sym_PLUS] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1749), + [anon_sym_SLASH] = ACTIONS(1749), + [anon_sym_PERCENT] = ACTIONS(1747), + [anon_sym_STAR_STAR] = ACTIONS(1747), + [anon_sym_LT] = ACTIONS(1749), + [anon_sym_LT_EQ] = ACTIONS(1747), + [anon_sym_EQ_EQ] = ACTIONS(1749), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1747), + [anon_sym_BANG_EQ] = ACTIONS(1749), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1747), + [anon_sym_GT_EQ] = ACTIONS(1747), + [anon_sym_GT] = ACTIONS(1749), + [anon_sym_QMARK_QMARK] = ACTIONS(1747), + [anon_sym_instanceof] = ACTIONS(1749), + [anon_sym_TILDE] = ACTIONS(1747), + [anon_sym_void] = ACTIONS(1749), + [anon_sym_delete] = ACTIONS(1749), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [anon_sym_SQUOTE] = ACTIONS(1747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [sym_private_property_identifier] = ACTIONS(1747), + [sym_this] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_true] = ACTIONS(1749), + [sym_false] = ACTIONS(1749), + [sym_null] = ACTIONS(1749), + [sym_undefined] = ACTIONS(1749), + [anon_sym_AT] = ACTIONS(1747), + [anon_sym_static] = ACTIONS(1749), + [anon_sym_readonly] = ACTIONS(1749), + [anon_sym_get] = ACTIONS(1749), + [anon_sym_set] = ACTIONS(1749), + [anon_sym_declare] = ACTIONS(1749), + [anon_sym_public] = ACTIONS(1749), + [anon_sym_private] = ACTIONS(1749), + [anon_sym_protected] = ACTIONS(1749), + [anon_sym_override] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_any] = ACTIONS(1749), + [anon_sym_number] = ACTIONS(1749), + [anon_sym_boolean] = ACTIONS(1749), + [anon_sym_string] = ACTIONS(1749), + [anon_sym_symbol] = ACTIONS(1749), + [anon_sym_object] = ACTIONS(1749), + [anon_sym_abstract] = ACTIONS(1749), + [anon_sym_satisfies] = ACTIONS(1749), + [anon_sym_interface] = ACTIONS(1749), + [anon_sym_enum] = ACTIONS(1749), + [sym__automatic_semicolon] = ACTIONS(1747), + [sym__ternary_qmark] = ACTIONS(1747), [sym_html_comment] = ACTIONS(5), }, [220] = { - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1765), - [anon_sym_default] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_namespace] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_typeof] = ACTIONS(1765), - [anon_sym_import] = ACTIONS(1765), - [anon_sym_with] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_in] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_debugger] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_throw] = ACTIONS(1765), - [anon_sym_case] = ACTIONS(1765), - [anon_sym_yield] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1763), - [sym_glimmer_opening_tag] = ACTIONS(1763), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_DOT] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_SQUOTE] = ACTIONS(1763), - [anon_sym_class] = ACTIONS(1765), - [anon_sym_async] = ACTIONS(1765), - [anon_sym_function] = ACTIONS(1765), - [anon_sym_QMARK_DOT] = ACTIONS(1763), - [anon_sym_new] = ACTIONS(1765), - [anon_sym_using] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_GT_GT] = ACTIONS(1765), - [anon_sym_GT_GT_GT] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - [anon_sym_CARET] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_SLASH] = ACTIONS(1765), - [anon_sym_PERCENT] = ACTIONS(1763), - [anon_sym_STAR_STAR] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1763), - [anon_sym_BANG_EQ] = ACTIONS(1765), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_QMARK_QMARK] = ACTIONS(1763), - [anon_sym_instanceof] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_void] = ACTIONS(1765), - [anon_sym_delete] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1763), - [sym_number] = ACTIONS(1763), - [sym_private_property_identifier] = ACTIONS(1763), - [sym_this] = ACTIONS(1765), - [sym_super] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_null] = ACTIONS(1765), - [sym_undefined] = ACTIONS(1765), - [anon_sym_AT] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1765), - [anon_sym_readonly] = ACTIONS(1765), - [anon_sym_get] = ACTIONS(1765), - [anon_sym_set] = ACTIONS(1765), - [anon_sym_declare] = ACTIONS(1765), - [anon_sym_public] = ACTIONS(1765), - [anon_sym_private] = ACTIONS(1765), - [anon_sym_protected] = ACTIONS(1765), - [anon_sym_override] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_any] = ACTIONS(1765), - [anon_sym_number] = ACTIONS(1765), - [anon_sym_boolean] = ACTIONS(1765), - [anon_sym_string] = ACTIONS(1765), - [anon_sym_symbol] = ACTIONS(1765), - [anon_sym_object] = ACTIONS(1765), - [anon_sym_abstract] = ACTIONS(1765), - [anon_sym_satisfies] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [sym__automatic_semicolon] = ACTIONS(1763), - [sym__ternary_qmark] = ACTIONS(1763), + [ts_builtin_sym_end] = ACTIONS(1751), + [sym_identifier] = ACTIONS(1753), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_STAR] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_as] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1753), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_COMMA] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_typeof] = ACTIONS(1753), + [anon_sym_import] = ACTIONS(1753), + [anon_sym_with] = ACTIONS(1753), + [anon_sym_var] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_const] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1753), + [anon_sym_else] = ACTIONS(1753), + [anon_sym_if] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1753), + [anon_sym_for] = ACTIONS(1753), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_await] = ACTIONS(1753), + [anon_sym_in] = ACTIONS(1753), + [anon_sym_while] = ACTIONS(1753), + [anon_sym_do] = ACTIONS(1753), + [anon_sym_try] = ACTIONS(1753), + [anon_sym_break] = ACTIONS(1753), + [anon_sym_continue] = ACTIONS(1753), + [anon_sym_debugger] = ACTIONS(1753), + [anon_sym_return] = ACTIONS(1753), + [anon_sym_throw] = ACTIONS(1753), + [anon_sym_case] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1751), + [sym_glimmer_opening_tag] = ACTIONS(1751), + [anon_sym_DOT] = ACTIONS(1753), + [anon_sym_class] = ACTIONS(1753), + [anon_sym_async] = ACTIONS(1753), + [anon_sym_function] = ACTIONS(1753), + [anon_sym_QMARK_DOT] = ACTIONS(1751), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1753), + [anon_sym_AMP_AMP] = ACTIONS(1751), + [anon_sym_PIPE_PIPE] = ACTIONS(1751), + [anon_sym_GT_GT] = ACTIONS(1753), + [anon_sym_GT_GT_GT] = ACTIONS(1751), + [anon_sym_LT_LT] = ACTIONS(1751), + [anon_sym_AMP] = ACTIONS(1753), + [anon_sym_CARET] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1753), + [anon_sym_PLUS] = ACTIONS(1753), + [anon_sym_DASH] = ACTIONS(1753), + [anon_sym_SLASH] = ACTIONS(1753), + [anon_sym_PERCENT] = ACTIONS(1751), + [anon_sym_STAR_STAR] = ACTIONS(1751), + [anon_sym_LT] = ACTIONS(1753), + [anon_sym_LT_EQ] = ACTIONS(1751), + [anon_sym_EQ_EQ] = ACTIONS(1753), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1751), + [anon_sym_BANG_EQ] = ACTIONS(1753), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1751), + [anon_sym_GT_EQ] = ACTIONS(1751), + [anon_sym_GT] = ACTIONS(1753), + [anon_sym_QMARK_QMARK] = ACTIONS(1751), + [anon_sym_instanceof] = ACTIONS(1753), + [anon_sym_TILDE] = ACTIONS(1751), + [anon_sym_void] = ACTIONS(1753), + [anon_sym_delete] = ACTIONS(1753), + [anon_sym_PLUS_PLUS] = ACTIONS(1751), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [anon_sym_SQUOTE] = ACTIONS(1751), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1751), + [sym_number] = ACTIONS(1751), + [sym_private_property_identifier] = ACTIONS(1751), + [sym_this] = ACTIONS(1753), + [sym_super] = ACTIONS(1753), + [sym_true] = ACTIONS(1753), + [sym_false] = ACTIONS(1753), + [sym_null] = ACTIONS(1753), + [sym_undefined] = ACTIONS(1753), + [anon_sym_AT] = ACTIONS(1751), + [anon_sym_static] = ACTIONS(1753), + [anon_sym_readonly] = ACTIONS(1753), + [anon_sym_get] = ACTIONS(1753), + [anon_sym_set] = ACTIONS(1753), + [anon_sym_declare] = ACTIONS(1753), + [anon_sym_public] = ACTIONS(1753), + [anon_sym_private] = ACTIONS(1753), + [anon_sym_protected] = ACTIONS(1753), + [anon_sym_override] = ACTIONS(1753), + [anon_sym_module] = ACTIONS(1753), + [anon_sym_any] = ACTIONS(1753), + [anon_sym_number] = ACTIONS(1753), + [anon_sym_boolean] = ACTIONS(1753), + [anon_sym_string] = ACTIONS(1753), + [anon_sym_symbol] = ACTIONS(1753), + [anon_sym_object] = ACTIONS(1753), + [anon_sym_abstract] = ACTIONS(1753), + [anon_sym_satisfies] = ACTIONS(1753), + [anon_sym_interface] = ACTIONS(1753), + [anon_sym_enum] = ACTIONS(1753), + [sym__automatic_semicolon] = ACTIONS(1751), + [sym__ternary_qmark] = ACTIONS(1751), [sym_html_comment] = ACTIONS(5), }, [221] = { - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_STAR] = ACTIONS(1771), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_as] = ACTIONS(1771), - [anon_sym_namespace] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_COMMA] = ACTIONS(1773), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_typeof] = ACTIONS(1769), - [anon_sym_import] = ACTIONS(1769), - [anon_sym_with] = ACTIONS(1769), - [anon_sym_var] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [anon_sym_BANG] = ACTIONS(1769), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_switch] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_in] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_debugger] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1769), - [anon_sym_case] = ACTIONS(1769), - [anon_sym_yield] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1767), - [sym_glimmer_opening_tag] = ACTIONS(1767), - [anon_sym_GT] = ACTIONS(1771), - [anon_sym_DOT] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1767), - [anon_sym_SQUOTE] = ACTIONS(1767), - [anon_sym_class] = ACTIONS(1769), - [anon_sym_async] = ACTIONS(1769), - [anon_sym_function] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(1773), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_using] = ACTIONS(1769), - [anon_sym_AMP_AMP] = ACTIONS(1773), - [anon_sym_PIPE_PIPE] = ACTIONS(1773), - [anon_sym_GT_GT] = ACTIONS(1771), - [anon_sym_GT_GT_GT] = ACTIONS(1773), - [anon_sym_LT_LT] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1771), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_SLASH] = ACTIONS(1769), - [anon_sym_PERCENT] = ACTIONS(1773), - [anon_sym_STAR_STAR] = ACTIONS(1773), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_LT_EQ] = ACTIONS(1773), - [anon_sym_EQ_EQ] = ACTIONS(1771), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1773), - [anon_sym_BANG_EQ] = ACTIONS(1771), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1773), - [anon_sym_GT_EQ] = ACTIONS(1773), - [anon_sym_QMARK_QMARK] = ACTIONS(1773), - [anon_sym_instanceof] = ACTIONS(1771), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_void] = ACTIONS(1769), - [anon_sym_delete] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1767), - [sym_number] = ACTIONS(1767), - [sym_private_property_identifier] = ACTIONS(1767), - [sym_this] = ACTIONS(1769), - [sym_super] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_null] = ACTIONS(1769), - [sym_undefined] = ACTIONS(1769), - [anon_sym_AT] = ACTIONS(1767), - [anon_sym_static] = ACTIONS(1769), - [anon_sym_readonly] = ACTIONS(1769), - [anon_sym_get] = ACTIONS(1769), - [anon_sym_set] = ACTIONS(1769), - [anon_sym_declare] = ACTIONS(1769), - [anon_sym_public] = ACTIONS(1769), - [anon_sym_private] = ACTIONS(1769), - [anon_sym_protected] = ACTIONS(1769), - [anon_sym_override] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_any] = ACTIONS(1769), - [anon_sym_number] = ACTIONS(1769), - [anon_sym_boolean] = ACTIONS(1769), - [anon_sym_string] = ACTIONS(1769), - [anon_sym_symbol] = ACTIONS(1769), - [anon_sym_object] = ACTIONS(1769), - [anon_sym_abstract] = ACTIONS(1769), - [anon_sym_satisfies] = ACTIONS(1771), - [anon_sym_interface] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [sym__automatic_semicolon] = ACTIONS(1775), - [sym__ternary_qmark] = ACTIONS(1773), + [ts_builtin_sym_end] = ACTIONS(1755), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1757), + [anon_sym_STAR] = ACTIONS(1759), + [anon_sym_default] = ACTIONS(1757), + [anon_sym_type] = ACTIONS(1757), + [anon_sym_as] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1755), + [anon_sym_COMMA] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1755), + [anon_sym_typeof] = ACTIONS(1757), + [anon_sym_import] = ACTIONS(1757), + [anon_sym_with] = ACTIONS(1757), + [anon_sym_var] = ACTIONS(1757), + [anon_sym_let] = ACTIONS(1757), + [anon_sym_const] = ACTIONS(1757), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_else] = ACTIONS(1757), + [anon_sym_if] = ACTIONS(1757), + [anon_sym_switch] = ACTIONS(1757), + [anon_sym_for] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_SEMI] = ACTIONS(1755), + [anon_sym_await] = ACTIONS(1757), + [anon_sym_in] = ACTIONS(1759), + [anon_sym_while] = ACTIONS(1757), + [anon_sym_do] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1757), + [anon_sym_break] = ACTIONS(1757), + [anon_sym_continue] = ACTIONS(1757), + [anon_sym_debugger] = ACTIONS(1757), + [anon_sym_return] = ACTIONS(1757), + [anon_sym_throw] = ACTIONS(1757), + [anon_sym_case] = ACTIONS(1757), + [anon_sym_yield] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1755), + [sym_glimmer_opening_tag] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_class] = ACTIONS(1757), + [anon_sym_async] = ACTIONS(1757), + [anon_sym_function] = ACTIONS(1757), + [anon_sym_QMARK_DOT] = ACTIONS(1761), + [anon_sym_new] = ACTIONS(1757), + [anon_sym_using] = ACTIONS(1757), + [anon_sym_AMP_AMP] = ACTIONS(1761), + [anon_sym_PIPE_PIPE] = ACTIONS(1761), + [anon_sym_GT_GT] = ACTIONS(1759), + [anon_sym_GT_GT_GT] = ACTIONS(1761), + [anon_sym_LT_LT] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1759), + [anon_sym_CARET] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_SLASH] = ACTIONS(1757), + [anon_sym_PERCENT] = ACTIONS(1761), + [anon_sym_STAR_STAR] = ACTIONS(1761), + [anon_sym_LT] = ACTIONS(1757), + [anon_sym_LT_EQ] = ACTIONS(1761), + [anon_sym_EQ_EQ] = ACTIONS(1759), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1761), + [anon_sym_BANG_EQ] = ACTIONS(1759), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1761), + [anon_sym_GT_EQ] = ACTIONS(1761), + [anon_sym_GT] = ACTIONS(1759), + [anon_sym_QMARK_QMARK] = ACTIONS(1761), + [anon_sym_instanceof] = ACTIONS(1759), + [anon_sym_TILDE] = ACTIONS(1755), + [anon_sym_void] = ACTIONS(1757), + [anon_sym_delete] = ACTIONS(1757), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_DQUOTE] = ACTIONS(1755), + [anon_sym_SQUOTE] = ACTIONS(1755), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1755), + [sym_number] = ACTIONS(1755), + [sym_private_property_identifier] = ACTIONS(1755), + [sym_this] = ACTIONS(1757), + [sym_super] = ACTIONS(1757), + [sym_true] = ACTIONS(1757), + [sym_false] = ACTIONS(1757), + [sym_null] = ACTIONS(1757), + [sym_undefined] = ACTIONS(1757), + [anon_sym_AT] = ACTIONS(1755), + [anon_sym_static] = ACTIONS(1757), + [anon_sym_readonly] = ACTIONS(1757), + [anon_sym_get] = ACTIONS(1757), + [anon_sym_set] = ACTIONS(1757), + [anon_sym_declare] = ACTIONS(1757), + [anon_sym_public] = ACTIONS(1757), + [anon_sym_private] = ACTIONS(1757), + [anon_sym_protected] = ACTIONS(1757), + [anon_sym_override] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1757), + [anon_sym_any] = ACTIONS(1757), + [anon_sym_number] = ACTIONS(1757), + [anon_sym_boolean] = ACTIONS(1757), + [anon_sym_string] = ACTIONS(1757), + [anon_sym_symbol] = ACTIONS(1757), + [anon_sym_object] = ACTIONS(1757), + [anon_sym_abstract] = ACTIONS(1757), + [anon_sym_satisfies] = ACTIONS(1759), + [anon_sym_interface] = ACTIONS(1757), + [anon_sym_enum] = ACTIONS(1757), + [sym__automatic_semicolon] = ACTIONS(1763), + [sym__ternary_qmark] = ACTIONS(1761), [sym_html_comment] = ACTIONS(5), }, [222] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1778), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -51067,14 +51067,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -51085,24 +51085,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), [anon_sym_namespace] = ACTIONS(1057), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_RBRACE] = ACTIONS(1777), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1055), @@ -51110,28 +51110,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1777), - [anon_sym_RBRACK] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1765), + [anon_sym_RBRACK] = ACTIONS(1765), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(1765), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -51147,7 +51147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(1055), [anon_sym_get] = ACTIONS(1055), [anon_sym_set] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1777), + [anon_sym_QMARK] = ACTIONS(1765), [anon_sym_declare] = ACTIONS(1055), [anon_sym_public] = ACTIONS(1055), [anon_sym_private] = ACTIONS(1055), @@ -51160,565 +51160,787 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1055), [anon_sym_symbol] = ACTIONS(1055), [anon_sym_object] = ACTIONS(1055), - [anon_sym_extends] = ACTIONS(1779), + [anon_sym_extends] = ACTIONS(1767), [sym_html_comment] = ACTIONS(5), }, [223] = { - [ts_builtin_sym_end] = ACTIONS(1781), - [sym_identifier] = ACTIONS(1783), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1785), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_type] = ACTIONS(1783), - [anon_sym_as] = ACTIONS(1785), - [anon_sym_namespace] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_COMMA] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_typeof] = ACTIONS(1783), - [anon_sym_import] = ACTIONS(1783), - [anon_sym_with] = ACTIONS(1783), - [anon_sym_var] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_switch] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_await] = ACTIONS(1783), - [anon_sym_in] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_debugger] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_case] = ACTIONS(1783), - [anon_sym_yield] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1781), - [sym_glimmer_opening_tag] = ACTIONS(1781), - [anon_sym_GT] = ACTIONS(1785), - [anon_sym_DOT] = ACTIONS(1785), - [anon_sym_DQUOTE] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_class] = ACTIONS(1783), - [anon_sym_async] = ACTIONS(1783), - [anon_sym_function] = ACTIONS(1783), - [anon_sym_QMARK_DOT] = ACTIONS(1787), - [anon_sym_new] = ACTIONS(1783), - [anon_sym_using] = ACTIONS(1783), - [anon_sym_AMP_AMP] = ACTIONS(1787), - [anon_sym_PIPE_PIPE] = ACTIONS(1787), - [anon_sym_GT_GT] = ACTIONS(1785), - [anon_sym_GT_GT_GT] = ACTIONS(1787), - [anon_sym_LT_LT] = ACTIONS(1787), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_CARET] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1785), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_SLASH] = ACTIONS(1783), - [anon_sym_PERCENT] = ACTIONS(1787), - [anon_sym_STAR_STAR] = ACTIONS(1787), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_LT_EQ] = ACTIONS(1787), - [anon_sym_EQ_EQ] = ACTIONS(1785), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1787), - [anon_sym_BANG_EQ] = ACTIONS(1785), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1787), - [anon_sym_GT_EQ] = ACTIONS(1787), - [anon_sym_QMARK_QMARK] = ACTIONS(1787), - [anon_sym_instanceof] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_void] = ACTIONS(1783), - [anon_sym_delete] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1781), - [sym_number] = ACTIONS(1781), - [sym_private_property_identifier] = ACTIONS(1781), - [sym_this] = ACTIONS(1783), - [sym_super] = ACTIONS(1783), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_null] = ACTIONS(1783), - [sym_undefined] = ACTIONS(1783), - [anon_sym_AT] = ACTIONS(1781), - [anon_sym_static] = ACTIONS(1783), - [anon_sym_readonly] = ACTIONS(1783), - [anon_sym_get] = ACTIONS(1783), - [anon_sym_set] = ACTIONS(1783), - [anon_sym_declare] = ACTIONS(1783), - [anon_sym_public] = ACTIONS(1783), - [anon_sym_private] = ACTIONS(1783), - [anon_sym_protected] = ACTIONS(1783), - [anon_sym_override] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_any] = ACTIONS(1783), - [anon_sym_number] = ACTIONS(1783), - [anon_sym_boolean] = ACTIONS(1783), - [anon_sym_string] = ACTIONS(1783), - [anon_sym_symbol] = ACTIONS(1783), - [anon_sym_object] = ACTIONS(1783), - [anon_sym_abstract] = ACTIONS(1783), - [anon_sym_satisfies] = ACTIONS(1785), - [anon_sym_interface] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1783), - [sym__automatic_semicolon] = ACTIONS(1789), - [sym__ternary_qmark] = ACTIONS(1787), + [ts_builtin_sym_end] = ACTIONS(1769), + [sym_identifier] = ACTIONS(1771), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_STAR] = ACTIONS(1773), + [anon_sym_default] = ACTIONS(1771), + [anon_sym_type] = ACTIONS(1771), + [anon_sym_as] = ACTIONS(1773), + [anon_sym_namespace] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_COMMA] = ACTIONS(1775), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_typeof] = ACTIONS(1771), + [anon_sym_import] = ACTIONS(1771), + [anon_sym_with] = ACTIONS(1771), + [anon_sym_var] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_switch] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_await] = ACTIONS(1771), + [anon_sym_in] = ACTIONS(1773), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_debugger] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_throw] = ACTIONS(1771), + [anon_sym_case] = ACTIONS(1771), + [anon_sym_yield] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1769), + [sym_glimmer_opening_tag] = ACTIONS(1769), + [anon_sym_DOT] = ACTIONS(1773), + [anon_sym_class] = ACTIONS(1771), + [anon_sym_async] = ACTIONS(1771), + [anon_sym_function] = ACTIONS(1771), + [anon_sym_QMARK_DOT] = ACTIONS(1775), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_AMP_AMP] = ACTIONS(1775), + [anon_sym_PIPE_PIPE] = ACTIONS(1775), + [anon_sym_GT_GT] = ACTIONS(1773), + [anon_sym_GT_GT_GT] = ACTIONS(1775), + [anon_sym_LT_LT] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1773), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_PLUS] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1771), + [anon_sym_SLASH] = ACTIONS(1771), + [anon_sym_PERCENT] = ACTIONS(1775), + [anon_sym_STAR_STAR] = ACTIONS(1775), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_LT_EQ] = ACTIONS(1775), + [anon_sym_EQ_EQ] = ACTIONS(1773), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1775), + [anon_sym_BANG_EQ] = ACTIONS(1773), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1775), + [anon_sym_GT] = ACTIONS(1773), + [anon_sym_QMARK_QMARK] = ACTIONS(1775), + [anon_sym_instanceof] = ACTIONS(1773), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_void] = ACTIONS(1771), + [anon_sym_delete] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [anon_sym_SQUOTE] = ACTIONS(1769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1769), + [sym_number] = ACTIONS(1769), + [sym_private_property_identifier] = ACTIONS(1769), + [sym_this] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_true] = ACTIONS(1771), + [sym_false] = ACTIONS(1771), + [sym_null] = ACTIONS(1771), + [sym_undefined] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(1769), + [anon_sym_static] = ACTIONS(1771), + [anon_sym_readonly] = ACTIONS(1771), + [anon_sym_get] = ACTIONS(1771), + [anon_sym_set] = ACTIONS(1771), + [anon_sym_declare] = ACTIONS(1771), + [anon_sym_public] = ACTIONS(1771), + [anon_sym_private] = ACTIONS(1771), + [anon_sym_protected] = ACTIONS(1771), + [anon_sym_override] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_any] = ACTIONS(1771), + [anon_sym_number] = ACTIONS(1771), + [anon_sym_boolean] = ACTIONS(1771), + [anon_sym_string] = ACTIONS(1771), + [anon_sym_symbol] = ACTIONS(1771), + [anon_sym_object] = ACTIONS(1771), + [anon_sym_abstract] = ACTIONS(1771), + [anon_sym_satisfies] = ACTIONS(1773), + [anon_sym_interface] = ACTIONS(1771), + [anon_sym_enum] = ACTIONS(1771), + [sym__automatic_semicolon] = ACTIONS(1777), + [sym__ternary_qmark] = ACTIONS(1775), [sym_html_comment] = ACTIONS(5), }, [224] = { - [ts_builtin_sym_end] = ACTIONS(1791), - [sym_identifier] = ACTIONS(1793), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_default] = ACTIONS(1793), - [anon_sym_type] = ACTIONS(1793), - [anon_sym_as] = ACTIONS(1795), - [anon_sym_namespace] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_COMMA] = ACTIONS(1797), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(1793), - [anon_sym_import] = ACTIONS(1793), - [anon_sym_with] = ACTIONS(1793), - [anon_sym_var] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_switch] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_await] = ACTIONS(1793), - [anon_sym_in] = ACTIONS(1795), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_debugger] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_throw] = ACTIONS(1793), - [anon_sym_case] = ACTIONS(1793), - [anon_sym_yield] = ACTIONS(1793), - [anon_sym_LBRACK] = ACTIONS(1791), - [sym_glimmer_opening_tag] = ACTIONS(1791), - [anon_sym_GT] = ACTIONS(1795), - [anon_sym_DOT] = ACTIONS(1795), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_class] = ACTIONS(1793), - [anon_sym_async] = ACTIONS(1793), - [anon_sym_function] = ACTIONS(1793), - [anon_sym_QMARK_DOT] = ACTIONS(1797), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1793), - [anon_sym_AMP_AMP] = ACTIONS(1797), - [anon_sym_PIPE_PIPE] = ACTIONS(1797), - [anon_sym_GT_GT] = ACTIONS(1795), - [anon_sym_GT_GT_GT] = ACTIONS(1797), - [anon_sym_LT_LT] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_SLASH] = ACTIONS(1793), - [anon_sym_PERCENT] = ACTIONS(1797), - [anon_sym_STAR_STAR] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1793), - [anon_sym_LT_EQ] = ACTIONS(1797), - [anon_sym_EQ_EQ] = ACTIONS(1795), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1797), - [anon_sym_BANG_EQ] = ACTIONS(1795), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1797), - [anon_sym_GT_EQ] = ACTIONS(1797), - [anon_sym_QMARK_QMARK] = ACTIONS(1797), - [anon_sym_instanceof] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_void] = ACTIONS(1793), - [anon_sym_delete] = ACTIONS(1793), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1791), - [sym_number] = ACTIONS(1791), - [sym_private_property_identifier] = ACTIONS(1791), - [sym_this] = ACTIONS(1793), - [sym_super] = ACTIONS(1793), - [sym_true] = ACTIONS(1793), - [sym_false] = ACTIONS(1793), - [sym_null] = ACTIONS(1793), - [sym_undefined] = ACTIONS(1793), - [anon_sym_AT] = ACTIONS(1791), - [anon_sym_static] = ACTIONS(1793), - [anon_sym_readonly] = ACTIONS(1793), - [anon_sym_get] = ACTIONS(1793), - [anon_sym_set] = ACTIONS(1793), - [anon_sym_declare] = ACTIONS(1793), - [anon_sym_public] = ACTIONS(1793), - [anon_sym_private] = ACTIONS(1793), - [anon_sym_protected] = ACTIONS(1793), - [anon_sym_override] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_any] = ACTIONS(1793), - [anon_sym_number] = ACTIONS(1793), - [anon_sym_boolean] = ACTIONS(1793), - [anon_sym_string] = ACTIONS(1793), - [anon_sym_symbol] = ACTIONS(1793), - [anon_sym_object] = ACTIONS(1793), - [anon_sym_abstract] = ACTIONS(1793), - [anon_sym_satisfies] = ACTIONS(1795), - [anon_sym_interface] = ACTIONS(1793), - [anon_sym_enum] = ACTIONS(1793), - [sym__automatic_semicolon] = ACTIONS(1799), - [sym__ternary_qmark] = ACTIONS(1797), + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_as] = ACTIONS(1783), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1781), + [anon_sym_else] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_in] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_debugger] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [sym_glimmer_opening_tag] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(1781), + [anon_sym_QMARK_DOT] = ACTIONS(1785), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1781), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1783), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1781), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_STAR_STAR] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1783), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1783), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1785), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_instanceof] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_void] = ACTIONS(1781), + [anon_sym_delete] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1779), + [sym_number] = ACTIONS(1779), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_undefined] = ACTIONS(1781), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(1781), + [anon_sym_any] = ACTIONS(1781), + [anon_sym_number] = ACTIONS(1781), + [anon_sym_boolean] = ACTIONS(1781), + [anon_sym_string] = ACTIONS(1781), + [anon_sym_symbol] = ACTIONS(1781), + [anon_sym_object] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1781), + [anon_sym_satisfies] = ACTIONS(1783), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [sym__automatic_semicolon] = ACTIONS(1787), + [sym__ternary_qmark] = ACTIONS(1785), [sym_html_comment] = ACTIONS(5), }, [225] = { - [ts_builtin_sym_end] = ACTIONS(1801), - [sym_identifier] = ACTIONS(1803), - [anon_sym_export] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_type] = ACTIONS(1803), - [anon_sym_as] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_COMMA] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_typeof] = ACTIONS(1803), - [anon_sym_import] = ACTIONS(1803), - [anon_sym_with] = ACTIONS(1803), - [anon_sym_var] = ACTIONS(1803), - [anon_sym_let] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_else] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1803), - [anon_sym_switch] = ACTIONS(1803), - [anon_sym_for] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_await] = ACTIONS(1803), - [anon_sym_in] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_do] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1803), - [anon_sym_continue] = ACTIONS(1803), - [anon_sym_debugger] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1803), - [anon_sym_throw] = ACTIONS(1803), - [anon_sym_case] = ACTIONS(1803), - [anon_sym_yield] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1801), - [sym_glimmer_opening_tag] = ACTIONS(1801), - [anon_sym_GT] = ACTIONS(1803), - [anon_sym_DOT] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_async] = ACTIONS(1803), - [anon_sym_function] = ACTIONS(1803), - [anon_sym_QMARK_DOT] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_PIPE_PIPE] = ACTIONS(1801), - [anon_sym_GT_GT] = ACTIONS(1803), - [anon_sym_GT_GT_GT] = ACTIONS(1801), - [anon_sym_LT_LT] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_PERCENT] = ACTIONS(1801), - [anon_sym_STAR_STAR] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_LT_EQ] = ACTIONS(1801), - [anon_sym_EQ_EQ] = ACTIONS(1803), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1801), - [anon_sym_BANG_EQ] = ACTIONS(1803), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1801), - [anon_sym_GT_EQ] = ACTIONS(1801), - [anon_sym_QMARK_QMARK] = ACTIONS(1801), - [anon_sym_instanceof] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_void] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1801), - [sym_number] = ACTIONS(1801), - [sym_private_property_identifier] = ACTIONS(1801), - [sym_this] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_undefined] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_readonly] = ACTIONS(1803), - [anon_sym_get] = ACTIONS(1803), - [anon_sym_set] = ACTIONS(1803), - [anon_sym_declare] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [anon_sym_override] = ACTIONS(1803), - [anon_sym_module] = ACTIONS(1803), - [anon_sym_any] = ACTIONS(1803), - [anon_sym_number] = ACTIONS(1803), - [anon_sym_boolean] = ACTIONS(1803), - [anon_sym_string] = ACTIONS(1803), - [anon_sym_symbol] = ACTIONS(1803), - [anon_sym_object] = ACTIONS(1803), - [anon_sym_abstract] = ACTIONS(1803), - [anon_sym_satisfies] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [sym__automatic_semicolon] = ACTIONS(1801), - [sym__ternary_qmark] = ACTIONS(1801), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_export] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_namespace] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_typeof] = ACTIONS(1791), + [anon_sym_import] = ACTIONS(1791), + [anon_sym_with] = ACTIONS(1791), + [anon_sym_var] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_BANG] = ACTIONS(1791), + [anon_sym_else] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_switch] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_debugger] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_throw] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1789), + [sym_glimmer_opening_tag] = ACTIONS(1789), + [anon_sym_DOT] = ACTIONS(1791), + [anon_sym_class] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_function] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(1789), + [anon_sym_new] = ACTIONS(1791), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_AMP_AMP] = ACTIONS(1789), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_GT_GT] = ACTIONS(1791), + [anon_sym_GT_GT_GT] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(1789), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_PERCENT] = ACTIONS(1789), + [anon_sym_STAR_STAR] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1789), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1789), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1789), + [anon_sym_GT_EQ] = ACTIONS(1789), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_QMARK_QMARK] = ACTIONS(1789), + [anon_sym_instanceof] = ACTIONS(1791), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1791), + [anon_sym_delete] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1789), + [sym_number] = ACTIONS(1789), + [sym_private_property_identifier] = ACTIONS(1789), + [sym_this] = ACTIONS(1791), + [sym_super] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_undefined] = ACTIONS(1791), + [anon_sym_AT] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_get] = ACTIONS(1791), + [anon_sym_set] = ACTIONS(1791), + [anon_sym_declare] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_private] = ACTIONS(1791), + [anon_sym_protected] = ACTIONS(1791), + [anon_sym_override] = ACTIONS(1791), + [anon_sym_module] = ACTIONS(1791), + [anon_sym_any] = ACTIONS(1791), + [anon_sym_number] = ACTIONS(1791), + [anon_sym_boolean] = ACTIONS(1791), + [anon_sym_string] = ACTIONS(1791), + [anon_sym_symbol] = ACTIONS(1791), + [anon_sym_object] = ACTIONS(1791), + [anon_sym_abstract] = ACTIONS(1791), + [anon_sym_satisfies] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [sym__automatic_semicolon] = ACTIONS(1789), + [sym__ternary_qmark] = ACTIONS(1789), [sym_html_comment] = ACTIONS(5), }, [226] = { - [ts_builtin_sym_end] = ACTIONS(1801), - [sym_identifier] = ACTIONS(1803), - [anon_sym_export] = ACTIONS(1803), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_export] = ACTIONS(1791), + [anon_sym_STAR] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_as] = ACTIONS(1791), + [anon_sym_namespace] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_typeof] = ACTIONS(1791), + [anon_sym_import] = ACTIONS(1791), + [anon_sym_with] = ACTIONS(1791), + [anon_sym_var] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_BANG] = ACTIONS(1791), + [anon_sym_else] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_switch] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_debugger] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_throw] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1789), + [sym_glimmer_opening_tag] = ACTIONS(1789), + [anon_sym_DOT] = ACTIONS(1791), + [anon_sym_class] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_function] = ACTIONS(1791), + [anon_sym_QMARK_DOT] = ACTIONS(1789), + [anon_sym_new] = ACTIONS(1791), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_AMP_AMP] = ACTIONS(1789), + [anon_sym_PIPE_PIPE] = ACTIONS(1789), + [anon_sym_GT_GT] = ACTIONS(1791), + [anon_sym_GT_GT_GT] = ACTIONS(1789), + [anon_sym_LT_LT] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(1789), + [anon_sym_PIPE] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_PERCENT] = ACTIONS(1789), + [anon_sym_STAR_STAR] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1789), + [anon_sym_EQ_EQ] = ACTIONS(1791), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1789), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1789), + [anon_sym_GT_EQ] = ACTIONS(1789), + [anon_sym_GT] = ACTIONS(1791), + [anon_sym_QMARK_QMARK] = ACTIONS(1789), + [anon_sym_instanceof] = ACTIONS(1791), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1791), + [anon_sym_delete] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1789), + [sym_number] = ACTIONS(1789), + [sym_private_property_identifier] = ACTIONS(1789), + [sym_this] = ACTIONS(1791), + [sym_super] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_undefined] = ACTIONS(1791), + [anon_sym_AT] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_get] = ACTIONS(1791), + [anon_sym_set] = ACTIONS(1791), + [anon_sym_declare] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_private] = ACTIONS(1791), + [anon_sym_protected] = ACTIONS(1791), + [anon_sym_override] = ACTIONS(1791), + [anon_sym_module] = ACTIONS(1791), + [anon_sym_any] = ACTIONS(1791), + [anon_sym_number] = ACTIONS(1791), + [anon_sym_boolean] = ACTIONS(1791), + [anon_sym_string] = ACTIONS(1791), + [anon_sym_symbol] = ACTIONS(1791), + [anon_sym_object] = ACTIONS(1791), + [anon_sym_abstract] = ACTIONS(1791), + [anon_sym_satisfies] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [sym__automatic_semicolon] = ACTIONS(1793), + [sym__ternary_qmark] = ACTIONS(1789), + [sym_html_comment] = ACTIONS(5), + }, + [227] = { + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1797), + [anon_sym_export] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_type] = ACTIONS(1797), + [anon_sym_as] = ACTIONS(1797), + [anon_sym_namespace] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_COMMA] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym_import] = ACTIONS(1797), + [anon_sym_with] = ACTIONS(1797), + [anon_sym_var] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_else] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_switch] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1795), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_in] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_do] = ACTIONS(1797), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_debugger] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_throw] = ACTIONS(1797), + [anon_sym_case] = ACTIONS(1797), + [anon_sym_yield] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1795), + [sym_glimmer_opening_tag] = ACTIONS(1795), + [anon_sym_DOT] = ACTIONS(1797), + [anon_sym_class] = ACTIONS(1797), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1797), + [anon_sym_QMARK_DOT] = ACTIONS(1795), + [anon_sym_new] = ACTIONS(1797), + [anon_sym_using] = ACTIONS(1797), + [anon_sym_AMP_AMP] = ACTIONS(1795), + [anon_sym_PIPE_PIPE] = ACTIONS(1795), + [anon_sym_GT_GT] = ACTIONS(1797), + [anon_sym_GT_GT_GT] = ACTIONS(1795), + [anon_sym_LT_LT] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_CARET] = ACTIONS(1795), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_SLASH] = ACTIONS(1797), + [anon_sym_PERCENT] = ACTIONS(1795), + [anon_sym_STAR_STAR] = ACTIONS(1795), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_LT_EQ] = ACTIONS(1795), + [anon_sym_EQ_EQ] = ACTIONS(1797), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1795), + [anon_sym_BANG_EQ] = ACTIONS(1797), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1795), + [anon_sym_GT_EQ] = ACTIONS(1795), + [anon_sym_GT] = ACTIONS(1797), + [anon_sym_QMARK_QMARK] = ACTIONS(1795), + [anon_sym_instanceof] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_void] = ACTIONS(1797), + [anon_sym_delete] = ACTIONS(1797), + [anon_sym_PLUS_PLUS] = ACTIONS(1795), + [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1795), + [sym_number] = ACTIONS(1795), + [sym_private_property_identifier] = ACTIONS(1795), + [sym_this] = ACTIONS(1797), + [sym_super] = ACTIONS(1797), + [sym_true] = ACTIONS(1797), + [sym_false] = ACTIONS(1797), + [sym_null] = ACTIONS(1797), + [sym_undefined] = ACTIONS(1797), + [anon_sym_AT] = ACTIONS(1795), + [anon_sym_static] = ACTIONS(1797), + [anon_sym_readonly] = ACTIONS(1797), + [anon_sym_get] = ACTIONS(1797), + [anon_sym_set] = ACTIONS(1797), + [anon_sym_declare] = ACTIONS(1797), + [anon_sym_public] = ACTIONS(1797), + [anon_sym_private] = ACTIONS(1797), + [anon_sym_protected] = ACTIONS(1797), + [anon_sym_override] = ACTIONS(1797), + [anon_sym_module] = ACTIONS(1797), + [anon_sym_any] = ACTIONS(1797), + [anon_sym_number] = ACTIONS(1797), + [anon_sym_boolean] = ACTIONS(1797), + [anon_sym_string] = ACTIONS(1797), + [anon_sym_symbol] = ACTIONS(1797), + [anon_sym_object] = ACTIONS(1797), + [anon_sym_abstract] = ACTIONS(1797), + [anon_sym_satisfies] = ACTIONS(1797), + [anon_sym_interface] = ACTIONS(1797), + [anon_sym_enum] = ACTIONS(1797), + [sym__automatic_semicolon] = ACTIONS(1795), + [sym__ternary_qmark] = ACTIONS(1795), + [sym_html_comment] = ACTIONS(5), + }, + [228] = { + [ts_builtin_sym_end] = ACTIONS(1799), + [sym_identifier] = ACTIONS(1801), + [anon_sym_export] = ACTIONS(1801), [anon_sym_STAR] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_type] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(1801), + [anon_sym_type] = ACTIONS(1801), [anon_sym_as] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_COMMA] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_typeof] = ACTIONS(1803), - [anon_sym_import] = ACTIONS(1803), - [anon_sym_with] = ACTIONS(1803), - [anon_sym_var] = ACTIONS(1803), - [anon_sym_let] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_else] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1803), - [anon_sym_switch] = ACTIONS(1803), - [anon_sym_for] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_await] = ACTIONS(1803), + [anon_sym_namespace] = ACTIONS(1801), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_COMMA] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_typeof] = ACTIONS(1801), + [anon_sym_import] = ACTIONS(1801), + [anon_sym_with] = ACTIONS(1801), + [anon_sym_var] = ACTIONS(1801), + [anon_sym_let] = ACTIONS(1801), + [anon_sym_const] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1801), + [anon_sym_else] = ACTIONS(1801), + [anon_sym_if] = ACTIONS(1801), + [anon_sym_switch] = ACTIONS(1801), + [anon_sym_for] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_await] = ACTIONS(1801), [anon_sym_in] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_do] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1803), - [anon_sym_continue] = ACTIONS(1803), - [anon_sym_debugger] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1803), - [anon_sym_throw] = ACTIONS(1803), - [anon_sym_case] = ACTIONS(1803), - [anon_sym_yield] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1801), - [sym_glimmer_opening_tag] = ACTIONS(1801), - [anon_sym_GT] = ACTIONS(1803), + [anon_sym_while] = ACTIONS(1801), + [anon_sym_do] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_break] = ACTIONS(1801), + [anon_sym_continue] = ACTIONS(1801), + [anon_sym_debugger] = ACTIONS(1801), + [anon_sym_return] = ACTIONS(1801), + [anon_sym_throw] = ACTIONS(1801), + [anon_sym_case] = ACTIONS(1801), + [anon_sym_yield] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1799), + [sym_glimmer_opening_tag] = ACTIONS(1799), [anon_sym_DOT] = ACTIONS(1803), - [anon_sym_DQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_async] = ACTIONS(1803), - [anon_sym_function] = ACTIONS(1803), - [anon_sym_QMARK_DOT] = ACTIONS(1801), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_PIPE_PIPE] = ACTIONS(1801), + [anon_sym_class] = ACTIONS(1801), + [anon_sym_async] = ACTIONS(1801), + [anon_sym_function] = ACTIONS(1801), + [anon_sym_QMARK_DOT] = ACTIONS(1805), + [anon_sym_new] = ACTIONS(1801), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_AMP_AMP] = ACTIONS(1805), + [anon_sym_PIPE_PIPE] = ACTIONS(1805), [anon_sym_GT_GT] = ACTIONS(1803), - [anon_sym_GT_GT_GT] = ACTIONS(1801), - [anon_sym_LT_LT] = ACTIONS(1801), + [anon_sym_GT_GT_GT] = ACTIONS(1805), + [anon_sym_LT_LT] = ACTIONS(1805), [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_CARET] = ACTIONS(1805), [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_PERCENT] = ACTIONS(1801), - [anon_sym_STAR_STAR] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_LT_EQ] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_SLASH] = ACTIONS(1801), + [anon_sym_PERCENT] = ACTIONS(1805), + [anon_sym_STAR_STAR] = ACTIONS(1805), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_LT_EQ] = ACTIONS(1805), [anon_sym_EQ_EQ] = ACTIONS(1803), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1801), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1805), [anon_sym_BANG_EQ] = ACTIONS(1803), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1801), - [anon_sym_GT_EQ] = ACTIONS(1801), - [anon_sym_QMARK_QMARK] = ACTIONS(1801), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1805), + [anon_sym_GT_EQ] = ACTIONS(1805), + [anon_sym_GT] = ACTIONS(1803), + [anon_sym_QMARK_QMARK] = ACTIONS(1805), [anon_sym_instanceof] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_void] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1801), - [sym_number] = ACTIONS(1801), - [sym_private_property_identifier] = ACTIONS(1801), - [sym_this] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_undefined] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_readonly] = ACTIONS(1803), - [anon_sym_get] = ACTIONS(1803), - [anon_sym_set] = ACTIONS(1803), - [anon_sym_declare] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [anon_sym_override] = ACTIONS(1803), - [anon_sym_module] = ACTIONS(1803), - [anon_sym_any] = ACTIONS(1803), - [anon_sym_number] = ACTIONS(1803), - [anon_sym_boolean] = ACTIONS(1803), - [anon_sym_string] = ACTIONS(1803), - [anon_sym_symbol] = ACTIONS(1803), - [anon_sym_object] = ACTIONS(1803), - [anon_sym_abstract] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(1801), + [anon_sym_delete] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [anon_sym_SQUOTE] = ACTIONS(1799), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1799), + [sym_number] = ACTIONS(1799), + [sym_private_property_identifier] = ACTIONS(1799), + [sym_this] = ACTIONS(1801), + [sym_super] = ACTIONS(1801), + [sym_true] = ACTIONS(1801), + [sym_false] = ACTIONS(1801), + [sym_null] = ACTIONS(1801), + [sym_undefined] = ACTIONS(1801), + [anon_sym_AT] = ACTIONS(1799), + [anon_sym_static] = ACTIONS(1801), + [anon_sym_readonly] = ACTIONS(1801), + [anon_sym_get] = ACTIONS(1801), + [anon_sym_set] = ACTIONS(1801), + [anon_sym_declare] = ACTIONS(1801), + [anon_sym_public] = ACTIONS(1801), + [anon_sym_private] = ACTIONS(1801), + [anon_sym_protected] = ACTIONS(1801), + [anon_sym_override] = ACTIONS(1801), + [anon_sym_module] = ACTIONS(1801), + [anon_sym_any] = ACTIONS(1801), + [anon_sym_number] = ACTIONS(1801), + [anon_sym_boolean] = ACTIONS(1801), + [anon_sym_string] = ACTIONS(1801), + [anon_sym_symbol] = ACTIONS(1801), + [anon_sym_object] = ACTIONS(1801), + [anon_sym_abstract] = ACTIONS(1801), [anon_sym_satisfies] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [sym__automatic_semicolon] = ACTIONS(1805), - [sym__ternary_qmark] = ACTIONS(1801), + [anon_sym_interface] = ACTIONS(1801), + [anon_sym_enum] = ACTIONS(1801), + [sym__automatic_semicolon] = ACTIONS(1807), + [sym__ternary_qmark] = ACTIONS(1805), [sym_html_comment] = ACTIONS(5), }, - [227] = { - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_export] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_as] = ACTIONS(1809), - [anon_sym_namespace] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_COMMA] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_typeof] = ACTIONS(1809), - [anon_sym_import] = ACTIONS(1809), - [anon_sym_with] = ACTIONS(1809), - [anon_sym_var] = ACTIONS(1809), - [anon_sym_let] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_else] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_switch] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_await] = ACTIONS(1809), - [anon_sym_in] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_debugger] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_throw] = ACTIONS(1809), - [anon_sym_case] = ACTIONS(1809), - [anon_sym_yield] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [sym_glimmer_opening_tag] = ACTIONS(1807), - [anon_sym_GT] = ACTIONS(1809), - [anon_sym_DOT] = ACTIONS(1809), - [anon_sym_DQUOTE] = ACTIONS(1807), - [anon_sym_SQUOTE] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1809), - [anon_sym_async] = ACTIONS(1809), - [anon_sym_function] = ACTIONS(1809), - [anon_sym_QMARK_DOT] = ACTIONS(1807), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(1809), - [anon_sym_AMP_AMP] = ACTIONS(1807), - [anon_sym_PIPE_PIPE] = ACTIONS(1807), - [anon_sym_GT_GT] = ACTIONS(1809), - [anon_sym_GT_GT_GT] = ACTIONS(1807), - [anon_sym_LT_LT] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_CARET] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_PERCENT] = ACTIONS(1807), - [anon_sym_STAR_STAR] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_LT_EQ] = ACTIONS(1807), - [anon_sym_EQ_EQ] = ACTIONS(1809), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1807), - [anon_sym_BANG_EQ] = ACTIONS(1809), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1807), - [anon_sym_GT_EQ] = ACTIONS(1807), - [anon_sym_QMARK_QMARK] = ACTIONS(1807), - [anon_sym_instanceof] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_void] = ACTIONS(1809), - [anon_sym_delete] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1807), - [sym_number] = ACTIONS(1807), - [sym_private_property_identifier] = ACTIONS(1807), - [sym_this] = ACTIONS(1809), - [sym_super] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_null] = ACTIONS(1809), - [sym_undefined] = ACTIONS(1809), - [anon_sym_AT] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_readonly] = ACTIONS(1809), - [anon_sym_get] = ACTIONS(1809), - [anon_sym_set] = ACTIONS(1809), - [anon_sym_declare] = ACTIONS(1809), - [anon_sym_public] = ACTIONS(1809), - [anon_sym_private] = ACTIONS(1809), - [anon_sym_protected] = ACTIONS(1809), - [anon_sym_override] = ACTIONS(1809), - [anon_sym_module] = ACTIONS(1809), - [anon_sym_any] = ACTIONS(1809), - [anon_sym_number] = ACTIONS(1809), - [anon_sym_boolean] = ACTIONS(1809), - [anon_sym_string] = ACTIONS(1809), - [anon_sym_symbol] = ACTIONS(1809), - [anon_sym_object] = ACTIONS(1809), - [anon_sym_abstract] = ACTIONS(1809), - [anon_sym_satisfies] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [sym__automatic_semicolon] = ACTIONS(1807), - [sym__ternary_qmark] = ACTIONS(1807), + [229] = { + [ts_builtin_sym_end] = ACTIONS(1703), + [sym_identifier] = ACTIONS(1705), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1705), + [anon_sym_default] = ACTIONS(1705), + [anon_sym_type] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_namespace] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_typeof] = ACTIONS(1705), + [anon_sym_import] = ACTIONS(1705), + [anon_sym_with] = ACTIONS(1705), + [anon_sym_var] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_switch] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_in] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_debugger] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_throw] = ACTIONS(1705), + [anon_sym_case] = ACTIONS(1705), + [anon_sym_yield] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1703), + [sym_glimmer_opening_tag] = ACTIONS(1703), + [anon_sym_DOT] = ACTIONS(1705), + [anon_sym_class] = ACTIONS(1705), + [anon_sym_async] = ACTIONS(1705), + [anon_sym_function] = ACTIONS(1705), + [anon_sym_QMARK_DOT] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1705), + [anon_sym_using] = ACTIONS(1705), + [anon_sym_AMP_AMP] = ACTIONS(1703), + [anon_sym_PIPE_PIPE] = ACTIONS(1703), + [anon_sym_GT_GT] = ACTIONS(1705), + [anon_sym_GT_GT_GT] = ACTIONS(1703), + [anon_sym_LT_LT] = ACTIONS(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_CARET] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_SLASH] = ACTIONS(1705), + [anon_sym_PERCENT] = ACTIONS(1703), + [anon_sym_STAR_STAR] = ACTIONS(1703), + [anon_sym_LT] = ACTIONS(1705), + [anon_sym_LT_EQ] = ACTIONS(1703), + [anon_sym_EQ_EQ] = ACTIONS(1705), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1703), + [anon_sym_BANG_EQ] = ACTIONS(1705), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1703), + [anon_sym_GT_EQ] = ACTIONS(1703), + [anon_sym_GT] = ACTIONS(1705), + [anon_sym_QMARK_QMARK] = ACTIONS(1703), + [anon_sym_instanceof] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1703), + [anon_sym_void] = ACTIONS(1705), + [anon_sym_delete] = ACTIONS(1705), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1703), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1703), + [sym_number] = ACTIONS(1703), + [sym_private_property_identifier] = ACTIONS(1703), + [sym_this] = ACTIONS(1705), + [sym_super] = ACTIONS(1705), + [sym_true] = ACTIONS(1705), + [sym_false] = ACTIONS(1705), + [sym_null] = ACTIONS(1705), + [sym_undefined] = ACTIONS(1705), + [anon_sym_AT] = ACTIONS(1703), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_readonly] = ACTIONS(1705), + [anon_sym_get] = ACTIONS(1705), + [anon_sym_set] = ACTIONS(1705), + [anon_sym_declare] = ACTIONS(1705), + [anon_sym_public] = ACTIONS(1705), + [anon_sym_private] = ACTIONS(1705), + [anon_sym_protected] = ACTIONS(1705), + [anon_sym_override] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_any] = ACTIONS(1705), + [anon_sym_number] = ACTIONS(1705), + [anon_sym_boolean] = ACTIONS(1705), + [anon_sym_string] = ACTIONS(1705), + [anon_sym_symbol] = ACTIONS(1705), + [anon_sym_object] = ACTIONS(1705), + [anon_sym_abstract] = ACTIONS(1705), + [anon_sym_satisfies] = ACTIONS(1705), + [anon_sym_interface] = ACTIONS(1705), + [anon_sym_enum] = ACTIONS(1705), + [sym__automatic_semicolon] = ACTIONS(1809), + [sym__ternary_qmark] = ACTIONS(1703), [sym_html_comment] = ACTIONS(5), }, - [228] = { + [230] = { [ts_builtin_sym_end] = ACTIONS(1811), [sym_identifier] = ACTIONS(1813), [anon_sym_export] = ACTIONS(1813), @@ -51757,10 +51979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1813), [anon_sym_LBRACK] = ACTIONS(1811), [sym_glimmer_opening_tag] = ACTIONS(1811), - [anon_sym_GT] = ACTIONS(1815), [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_DQUOTE] = ACTIONS(1811), - [anon_sym_SQUOTE] = ACTIONS(1811), [anon_sym_class] = ACTIONS(1813), [anon_sym_async] = ACTIONS(1813), [anon_sym_function] = ACTIONS(1813), @@ -51787,6 +52006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1815), [anon_sym_BANG_EQ_EQ] = ACTIONS(1817), [anon_sym_GT_EQ] = ACTIONS(1817), + [anon_sym_GT] = ACTIONS(1815), [anon_sym_QMARK_QMARK] = ACTIONS(1817), [anon_sym_instanceof] = ACTIONS(1815), [anon_sym_TILDE] = ACTIONS(1811), @@ -51794,6 +52014,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1813), [anon_sym_PLUS_PLUS] = ACTIONS(1811), [anon_sym_DASH_DASH] = ACTIONS(1811), + [anon_sym_DQUOTE] = ACTIONS(1811), + [anon_sym_SQUOTE] = ACTIONS(1811), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1811), [sym_number] = ACTIONS(1811), @@ -51829,231 +52051,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [229] = { - [ts_builtin_sym_end] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_default] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_as] = ACTIONS(1705), - [anon_sym_namespace] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_typeof] = ACTIONS(1705), - [anon_sym_import] = ACTIONS(1705), - [anon_sym_with] = ACTIONS(1705), - [anon_sym_var] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_switch] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_debugger] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_throw] = ACTIONS(1705), - [anon_sym_case] = ACTIONS(1705), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1703), - [sym_glimmer_opening_tag] = ACTIONS(1703), - [anon_sym_GT] = ACTIONS(1705), - [anon_sym_DOT] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), - [anon_sym_class] = ACTIONS(1705), - [anon_sym_async] = ACTIONS(1705), - [anon_sym_function] = ACTIONS(1705), - [anon_sym_QMARK_DOT] = ACTIONS(1703), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_using] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1703), - [anon_sym_PIPE_PIPE] = ACTIONS(1703), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_GT_GT_GT] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_PERCENT] = ACTIONS(1703), - [anon_sym_STAR_STAR] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1705), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_EQ_EQ] = ACTIONS(1705), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1703), - [anon_sym_BANG_EQ] = ACTIONS(1705), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_QMARK_QMARK] = ACTIONS(1703), - [anon_sym_instanceof] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1703), - [anon_sym_void] = ACTIONS(1705), - [anon_sym_delete] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1703), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1703), - [sym_number] = ACTIONS(1703), - [sym_private_property_identifier] = ACTIONS(1703), - [sym_this] = ACTIONS(1705), - [sym_super] = ACTIONS(1705), - [sym_true] = ACTIONS(1705), - [sym_false] = ACTIONS(1705), - [sym_null] = ACTIONS(1705), - [sym_undefined] = ACTIONS(1705), - [anon_sym_AT] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1705), - [anon_sym_readonly] = ACTIONS(1705), - [anon_sym_get] = ACTIONS(1705), - [anon_sym_set] = ACTIONS(1705), - [anon_sym_declare] = ACTIONS(1705), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_override] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_any] = ACTIONS(1705), - [anon_sym_number] = ACTIONS(1705), - [anon_sym_boolean] = ACTIONS(1705), - [anon_sym_string] = ACTIONS(1705), - [anon_sym_symbol] = ACTIONS(1705), - [anon_sym_object] = ACTIONS(1705), - [anon_sym_abstract] = ACTIONS(1705), - [anon_sym_satisfies] = ACTIONS(1705), - [anon_sym_interface] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [sym__automatic_semicolon] = ACTIONS(1821), - [sym__ternary_qmark] = ACTIONS(1703), - [sym_html_comment] = ACTIONS(5), - }, - [230] = { - [ts_builtin_sym_end] = ACTIONS(1823), - [sym_identifier] = ACTIONS(1825), - [anon_sym_export] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_as] = ACTIONS(1827), - [anon_sym_namespace] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_COMMA] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_typeof] = ACTIONS(1825), - [anon_sym_import] = ACTIONS(1825), - [anon_sym_with] = ACTIONS(1825), - [anon_sym_var] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1825), - [anon_sym_const] = ACTIONS(1825), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_else] = ACTIONS(1825), - [anon_sym_if] = ACTIONS(1825), - [anon_sym_switch] = ACTIONS(1825), - [anon_sym_for] = ACTIONS(1825), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_await] = ACTIONS(1825), - [anon_sym_in] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1825), - [anon_sym_do] = ACTIONS(1825), - [anon_sym_try] = ACTIONS(1825), - [anon_sym_break] = ACTIONS(1825), - [anon_sym_continue] = ACTIONS(1825), - [anon_sym_debugger] = ACTIONS(1825), - [anon_sym_return] = ACTIONS(1825), - [anon_sym_throw] = ACTIONS(1825), - [anon_sym_case] = ACTIONS(1825), - [anon_sym_yield] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(1823), - [sym_glimmer_opening_tag] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1827), - [anon_sym_DOT] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1825), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(1825), - [anon_sym_QMARK_DOT] = ACTIONS(1829), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1825), - [anon_sym_AMP_AMP] = ACTIONS(1829), - [anon_sym_PIPE_PIPE] = ACTIONS(1829), - [anon_sym_GT_GT] = ACTIONS(1827), - [anon_sym_GT_GT_GT] = ACTIONS(1829), - [anon_sym_LT_LT] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_CARET] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_SLASH] = ACTIONS(1825), - [anon_sym_PERCENT] = ACTIONS(1829), - [anon_sym_STAR_STAR] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(1825), - [anon_sym_LT_EQ] = ACTIONS(1829), - [anon_sym_EQ_EQ] = ACTIONS(1827), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1829), - [anon_sym_BANG_EQ] = ACTIONS(1827), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1829), - [anon_sym_GT_EQ] = ACTIONS(1829), - [anon_sym_QMARK_QMARK] = ACTIONS(1829), - [anon_sym_instanceof] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_void] = ACTIONS(1825), - [anon_sym_delete] = ACTIONS(1825), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [sym_private_property_identifier] = ACTIONS(1823), - [sym_this] = ACTIONS(1825), - [sym_super] = ACTIONS(1825), - [sym_true] = ACTIONS(1825), - [sym_false] = ACTIONS(1825), - [sym_null] = ACTIONS(1825), - [sym_undefined] = ACTIONS(1825), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(1825), - [anon_sym_readonly] = ACTIONS(1825), - [anon_sym_get] = ACTIONS(1825), - [anon_sym_set] = ACTIONS(1825), - [anon_sym_declare] = ACTIONS(1825), - [anon_sym_public] = ACTIONS(1825), - [anon_sym_private] = ACTIONS(1825), - [anon_sym_protected] = ACTIONS(1825), - [anon_sym_override] = ACTIONS(1825), - [anon_sym_module] = ACTIONS(1825), - [anon_sym_any] = ACTIONS(1825), - [anon_sym_number] = ACTIONS(1825), - [anon_sym_boolean] = ACTIONS(1825), - [anon_sym_string] = ACTIONS(1825), - [anon_sym_symbol] = ACTIONS(1825), - [anon_sym_object] = ACTIONS(1825), - [anon_sym_abstract] = ACTIONS(1825), - [anon_sym_satisfies] = ACTIONS(1827), - [anon_sym_interface] = ACTIONS(1825), - [anon_sym_enum] = ACTIONS(1825), - [sym__automatic_semicolon] = ACTIONS(1831), - [sym__ternary_qmark] = ACTIONS(1829), - [sym_html_comment] = ACTIONS(5), - }, [231] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1778), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -52066,14 +52066,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -52084,52 +52084,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), [anon_sym_namespace] = ACTIONS(1057), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_RBRACE] = ACTIONS(1777), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), [anon_sym_typeof] = ACTIONS(620), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1055), [anon_sym_BANG] = ACTIONS(592), [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(1777), + [anon_sym_SEMI] = ACTIONS(1765), [anon_sym_await] = ACTIONS(594), [anon_sym_yield] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1765), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1779), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1767), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -52157,1132 +52157,1132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1055), [anon_sym_symbol] = ACTIONS(1055), [anon_sym_object] = ACTIONS(1055), - [anon_sym_extends] = ACTIONS(1779), - [anon_sym_PIPE_RBRACE] = ACTIONS(1777), - [sym__automatic_semicolon] = ACTIONS(1777), + [anon_sym_extends] = ACTIONS(1767), + [anon_sym_PIPE_RBRACE] = ACTIONS(1765), + [sym__automatic_semicolon] = ACTIONS(1765), [sym_html_comment] = ACTIONS(5), }, [232] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [sym_identifier] = ACTIONS(1835), - [anon_sym_export] = ACTIONS(1835), + [ts_builtin_sym_end] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1823), + [anon_sym_export] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_type] = ACTIONS(1823), + [anon_sym_as] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_COMMA] = ACTIONS(1827), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_typeof] = ACTIONS(1823), + [anon_sym_import] = ACTIONS(1823), + [anon_sym_with] = ACTIONS(1823), + [anon_sym_var] = ACTIONS(1823), + [anon_sym_let] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_else] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_switch] = ACTIONS(1823), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_in] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_do] = ACTIONS(1823), + [anon_sym_try] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_debugger] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_throw] = ACTIONS(1823), + [anon_sym_case] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [sym_glimmer_opening_tag] = ACTIONS(1821), + [anon_sym_DOT] = ACTIONS(1825), + [anon_sym_class] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_function] = ACTIONS(1823), + [anon_sym_QMARK_DOT] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1823), + [anon_sym_using] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1827), + [anon_sym_PIPE_PIPE] = ACTIONS(1827), + [anon_sym_GT_GT] = ACTIONS(1825), + [anon_sym_GT_GT_GT] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1827), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_CARET] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_PLUS] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1827), + [anon_sym_STAR_STAR] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_EQ] = ACTIONS(1827), + [anon_sym_EQ_EQ] = ACTIONS(1825), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1827), + [anon_sym_BANG_EQ] = ACTIONS(1825), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1827), + [anon_sym_GT_EQ] = ACTIONS(1827), + [anon_sym_GT] = ACTIONS(1825), + [anon_sym_QMARK_QMARK] = ACTIONS(1827), + [anon_sym_instanceof] = ACTIONS(1825), + [anon_sym_TILDE] = ACTIONS(1821), + [anon_sym_void] = ACTIONS(1823), + [anon_sym_delete] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1821), + [anon_sym_DASH_DASH] = ACTIONS(1821), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_SQUOTE] = ACTIONS(1821), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1821), + [sym_number] = ACTIONS(1821), + [sym_private_property_identifier] = ACTIONS(1821), + [sym_this] = ACTIONS(1823), + [sym_super] = ACTIONS(1823), + [sym_true] = ACTIONS(1823), + [sym_false] = ACTIONS(1823), + [sym_null] = ACTIONS(1823), + [sym_undefined] = ACTIONS(1823), + [anon_sym_AT] = ACTIONS(1821), + [anon_sym_static] = ACTIONS(1823), + [anon_sym_readonly] = ACTIONS(1823), + [anon_sym_get] = ACTIONS(1823), + [anon_sym_set] = ACTIONS(1823), + [anon_sym_declare] = ACTIONS(1823), + [anon_sym_public] = ACTIONS(1823), + [anon_sym_private] = ACTIONS(1823), + [anon_sym_protected] = ACTIONS(1823), + [anon_sym_override] = ACTIONS(1823), + [anon_sym_module] = ACTIONS(1823), + [anon_sym_any] = ACTIONS(1823), + [anon_sym_number] = ACTIONS(1823), + [anon_sym_boolean] = ACTIONS(1823), + [anon_sym_string] = ACTIONS(1823), + [anon_sym_symbol] = ACTIONS(1823), + [anon_sym_object] = ACTIONS(1823), + [anon_sym_abstract] = ACTIONS(1823), + [anon_sym_satisfies] = ACTIONS(1825), + [anon_sym_interface] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(1829), + [sym__ternary_qmark] = ACTIONS(1827), + [sym_html_comment] = ACTIONS(5), + }, + [233] = { + [ts_builtin_sym_end] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1833), + [anon_sym_type] = ACTIONS(1833), + [anon_sym_as] = ACTIONS(1833), + [anon_sym_namespace] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_COMMA] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_typeof] = ACTIONS(1833), + [anon_sym_import] = ACTIONS(1833), + [anon_sym_with] = ACTIONS(1833), + [anon_sym_var] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1833), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_switch] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_in] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_debugger] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_throw] = ACTIONS(1833), + [anon_sym_case] = ACTIONS(1833), + [anon_sym_yield] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1831), + [sym_glimmer_opening_tag] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(1833), + [anon_sym_class] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1833), + [anon_sym_QMARK_DOT] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1833), + [anon_sym_AMP_AMP] = ACTIONS(1831), + [anon_sym_PIPE_PIPE] = ACTIONS(1831), + [anon_sym_GT_GT] = ACTIONS(1833), + [anon_sym_GT_GT_GT] = ACTIONS(1831), + [anon_sym_LT_LT] = ACTIONS(1831), + [anon_sym_AMP] = ACTIONS(1833), + [anon_sym_CARET] = ACTIONS(1831), + [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_SLASH] = ACTIONS(1833), + [anon_sym_PERCENT] = ACTIONS(1831), + [anon_sym_STAR_STAR] = ACTIONS(1831), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_LT_EQ] = ACTIONS(1831), + [anon_sym_EQ_EQ] = ACTIONS(1833), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), + [anon_sym_BANG_EQ] = ACTIONS(1833), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), + [anon_sym_GT_EQ] = ACTIONS(1831), + [anon_sym_GT] = ACTIONS(1833), + [anon_sym_QMARK_QMARK] = ACTIONS(1831), + [anon_sym_instanceof] = ACTIONS(1833), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1833), + [anon_sym_delete] = ACTIONS(1833), + [anon_sym_PLUS_PLUS] = ACTIONS(1831), + [anon_sym_DASH_DASH] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1831), + [sym_number] = ACTIONS(1831), + [sym_private_property_identifier] = ACTIONS(1831), + [sym_this] = ACTIONS(1833), + [sym_super] = ACTIONS(1833), + [sym_true] = ACTIONS(1833), + [sym_false] = ACTIONS(1833), + [sym_null] = ACTIONS(1833), + [sym_undefined] = ACTIONS(1833), + [anon_sym_AT] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1833), + [anon_sym_readonly] = ACTIONS(1833), + [anon_sym_get] = ACTIONS(1833), + [anon_sym_set] = ACTIONS(1833), + [anon_sym_declare] = ACTIONS(1833), + [anon_sym_public] = ACTIONS(1833), + [anon_sym_private] = ACTIONS(1833), + [anon_sym_protected] = ACTIONS(1833), + [anon_sym_override] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_any] = ACTIONS(1833), + [anon_sym_number] = ACTIONS(1833), + [anon_sym_boolean] = ACTIONS(1833), + [anon_sym_string] = ACTIONS(1833), + [anon_sym_symbol] = ACTIONS(1833), + [anon_sym_object] = ACTIONS(1833), + [anon_sym_abstract] = ACTIONS(1833), + [anon_sym_satisfies] = ACTIONS(1833), + [anon_sym_interface] = ACTIONS(1833), + [anon_sym_enum] = ACTIONS(1833), + [sym__automatic_semicolon] = ACTIONS(1831), + [sym__ternary_qmark] = ACTIONS(1831), + [sym_html_comment] = ACTIONS(5), + }, + [234] = { + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1837), [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_default] = ACTIONS(1835), - [anon_sym_type] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), [anon_sym_as] = ACTIONS(1837), - [anon_sym_namespace] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_typeof] = ACTIONS(1835), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_var] = ACTIONS(1835), - [anon_sym_let] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_switch] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_await] = ACTIONS(1835), + [anon_sym_namespace] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_COMMA] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_typeof] = ACTIONS(1837), + [anon_sym_import] = ACTIONS(1837), + [anon_sym_with] = ACTIONS(1837), + [anon_sym_var] = ACTIONS(1837), + [anon_sym_let] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_else] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_switch] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(1837), [anon_sym_in] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_debugger] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_throw] = ACTIONS(1835), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), - [sym_glimmer_opening_tag] = ACTIONS(1833), - [anon_sym_GT] = ACTIONS(1837), + [anon_sym_while] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_debugger] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_throw] = ACTIONS(1837), + [anon_sym_case] = ACTIONS(1837), + [anon_sym_yield] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [sym_glimmer_opening_tag] = ACTIONS(1835), [anon_sym_DOT] = ACTIONS(1837), - [anon_sym_DQUOTE] = ACTIONS(1833), - [anon_sym_SQUOTE] = ACTIONS(1833), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_function] = ACTIONS(1835), - [anon_sym_QMARK_DOT] = ACTIONS(1839), - [anon_sym_new] = ACTIONS(1835), - [anon_sym_using] = ACTIONS(1835), - [anon_sym_AMP_AMP] = ACTIONS(1839), - [anon_sym_PIPE_PIPE] = ACTIONS(1839), + [anon_sym_class] = ACTIONS(1837), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(1837), + [anon_sym_QMARK_DOT] = ACTIONS(1835), + [anon_sym_new] = ACTIONS(1837), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1835), + [anon_sym_PIPE_PIPE] = ACTIONS(1835), [anon_sym_GT_GT] = ACTIONS(1837), - [anon_sym_GT_GT_GT] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(1839), + [anon_sym_GT_GT_GT] = ACTIONS(1835), + [anon_sym_LT_LT] = ACTIONS(1835), [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_CARET] = ACTIONS(1835), [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_PERCENT] = ACTIONS(1839), - [anon_sym_STAR_STAR] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_LT_EQ] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_PERCENT] = ACTIONS(1835), + [anon_sym_STAR_STAR] = ACTIONS(1835), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_LT_EQ] = ACTIONS(1835), [anon_sym_EQ_EQ] = ACTIONS(1837), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1839), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1835), [anon_sym_BANG_EQ] = ACTIONS(1837), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1839), - [anon_sym_GT_EQ] = ACTIONS(1839), - [anon_sym_QMARK_QMARK] = ACTIONS(1839), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1835), + [anon_sym_GT_EQ] = ACTIONS(1835), + [anon_sym_GT] = ACTIONS(1837), + [anon_sym_QMARK_QMARK] = ACTIONS(1835), [anon_sym_instanceof] = ACTIONS(1837), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_void] = ACTIONS(1835), - [anon_sym_delete] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(1833), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1833), - [sym_number] = ACTIONS(1833), - [sym_private_property_identifier] = ACTIONS(1833), - [sym_this] = ACTIONS(1835), - [sym_super] = ACTIONS(1835), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_null] = ACTIONS(1835), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_static] = ACTIONS(1835), - [anon_sym_readonly] = ACTIONS(1835), - [anon_sym_get] = ACTIONS(1835), - [anon_sym_set] = ACTIONS(1835), - [anon_sym_declare] = ACTIONS(1835), - [anon_sym_public] = ACTIONS(1835), - [anon_sym_private] = ACTIONS(1835), - [anon_sym_protected] = ACTIONS(1835), - [anon_sym_override] = ACTIONS(1835), - [anon_sym_module] = ACTIONS(1835), - [anon_sym_any] = ACTIONS(1835), - [anon_sym_number] = ACTIONS(1835), - [anon_sym_boolean] = ACTIONS(1835), - [anon_sym_string] = ACTIONS(1835), - [anon_sym_symbol] = ACTIONS(1835), - [anon_sym_object] = ACTIONS(1835), - [anon_sym_abstract] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_void] = ACTIONS(1837), + [anon_sym_delete] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [anon_sym_SQUOTE] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1835), + [sym_number] = ACTIONS(1835), + [sym_private_property_identifier] = ACTIONS(1835), + [sym_this] = ACTIONS(1837), + [sym_super] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_null] = ACTIONS(1837), + [sym_undefined] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1835), + [anon_sym_static] = ACTIONS(1837), + [anon_sym_readonly] = ACTIONS(1837), + [anon_sym_get] = ACTIONS(1837), + [anon_sym_set] = ACTIONS(1837), + [anon_sym_declare] = ACTIONS(1837), + [anon_sym_public] = ACTIONS(1837), + [anon_sym_private] = ACTIONS(1837), + [anon_sym_protected] = ACTIONS(1837), + [anon_sym_override] = ACTIONS(1837), + [anon_sym_module] = ACTIONS(1837), + [anon_sym_any] = ACTIONS(1837), + [anon_sym_number] = ACTIONS(1837), + [anon_sym_boolean] = ACTIONS(1837), + [anon_sym_string] = ACTIONS(1837), + [anon_sym_symbol] = ACTIONS(1837), + [anon_sym_object] = ACTIONS(1837), + [anon_sym_abstract] = ACTIONS(1837), [anon_sym_satisfies] = ACTIONS(1837), - [anon_sym_interface] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [sym__automatic_semicolon] = ACTIONS(1841), - [sym__ternary_qmark] = ACTIONS(1839), - [sym_html_comment] = ACTIONS(5), - }, - [233] = { - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_as] = ACTIONS(1845), - [anon_sym_namespace] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_typeof] = ACTIONS(1845), - [anon_sym_import] = ACTIONS(1845), - [anon_sym_with] = ACTIONS(1845), - [anon_sym_var] = ACTIONS(1845), - [anon_sym_let] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_switch] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_await] = ACTIONS(1845), - [anon_sym_in] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_do] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_debugger] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_throw] = ACTIONS(1845), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [sym_glimmer_opening_tag] = ACTIONS(1843), - [anon_sym_GT] = ACTIONS(1845), - [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_DQUOTE] = ACTIONS(1843), - [anon_sym_SQUOTE] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1845), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_QMARK_DOT] = ACTIONS(1843), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_using] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1843), - [anon_sym_PIPE_PIPE] = ACTIONS(1843), - [anon_sym_GT_GT] = ACTIONS(1845), - [anon_sym_GT_GT_GT] = ACTIONS(1843), - [anon_sym_LT_LT] = ACTIONS(1843), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_CARET] = ACTIONS(1843), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_PERCENT] = ACTIONS(1843), - [anon_sym_STAR_STAR] = ACTIONS(1843), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_LT_EQ] = ACTIONS(1843), - [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), - [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), - [anon_sym_GT_EQ] = ACTIONS(1843), - [anon_sym_QMARK_QMARK] = ACTIONS(1843), - [anon_sym_instanceof] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_void] = ACTIONS(1845), - [anon_sym_delete] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1843), - [sym_number] = ACTIONS(1843), - [sym_private_property_identifier] = ACTIONS(1843), - [sym_this] = ACTIONS(1845), - [sym_super] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_null] = ACTIONS(1845), - [sym_undefined] = ACTIONS(1845), - [anon_sym_AT] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1845), - [anon_sym_readonly] = ACTIONS(1845), - [anon_sym_get] = ACTIONS(1845), - [anon_sym_set] = ACTIONS(1845), - [anon_sym_declare] = ACTIONS(1845), - [anon_sym_public] = ACTIONS(1845), - [anon_sym_private] = ACTIONS(1845), - [anon_sym_protected] = ACTIONS(1845), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_module] = ACTIONS(1845), - [anon_sym_any] = ACTIONS(1845), - [anon_sym_number] = ACTIONS(1845), - [anon_sym_boolean] = ACTIONS(1845), - [anon_sym_string] = ACTIONS(1845), - [anon_sym_symbol] = ACTIONS(1845), - [anon_sym_object] = ACTIONS(1845), - [anon_sym_abstract] = ACTIONS(1845), - [anon_sym_satisfies] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [sym__automatic_semicolon] = ACTIONS(1843), - [sym__ternary_qmark] = ACTIONS(1843), + [anon_sym_interface] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [sym__automatic_semicolon] = ACTIONS(1835), + [sym__ternary_qmark] = ACTIONS(1835), [sym_html_comment] = ACTIONS(5), }, - [234] = { - [ts_builtin_sym_end] = ACTIONS(1847), - [sym_identifier] = ACTIONS(1849), - [anon_sym_export] = ACTIONS(1849), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_default] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_as] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1849), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_typeof] = ACTIONS(1849), - [anon_sym_import] = ACTIONS(1849), - [anon_sym_with] = ACTIONS(1849), - [anon_sym_var] = ACTIONS(1849), - [anon_sym_let] = ACTIONS(1849), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_else] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1847), - [anon_sym_await] = ACTIONS(1849), - [anon_sym_in] = ACTIONS(1849), - [anon_sym_while] = ACTIONS(1849), - [anon_sym_do] = ACTIONS(1849), - [anon_sym_try] = ACTIONS(1849), - [anon_sym_break] = ACTIONS(1849), - [anon_sym_continue] = ACTIONS(1849), - [anon_sym_debugger] = ACTIONS(1849), - [anon_sym_return] = ACTIONS(1849), - [anon_sym_throw] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1849), - [anon_sym_yield] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1847), - [sym_glimmer_opening_tag] = ACTIONS(1847), - [anon_sym_GT] = ACTIONS(1849), - [anon_sym_DOT] = ACTIONS(1849), - [anon_sym_DQUOTE] = ACTIONS(1847), - [anon_sym_SQUOTE] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1849), - [anon_sym_async] = ACTIONS(1849), - [anon_sym_function] = ACTIONS(1849), - [anon_sym_QMARK_DOT] = ACTIONS(1847), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1849), - [anon_sym_AMP_AMP] = ACTIONS(1847), - [anon_sym_PIPE_PIPE] = ACTIONS(1847), - [anon_sym_GT_GT] = ACTIONS(1849), - [anon_sym_GT_GT_GT] = ACTIONS(1847), - [anon_sym_LT_LT] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_CARET] = ACTIONS(1847), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1849), - [anon_sym_PERCENT] = ACTIONS(1847), - [anon_sym_STAR_STAR] = ACTIONS(1847), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_LT_EQ] = ACTIONS(1847), - [anon_sym_EQ_EQ] = ACTIONS(1849), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1847), - [anon_sym_BANG_EQ] = ACTIONS(1849), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1847), - [anon_sym_GT_EQ] = ACTIONS(1847), - [anon_sym_QMARK_QMARK] = ACTIONS(1847), - [anon_sym_instanceof] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_void] = ACTIONS(1849), - [anon_sym_delete] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1847), - [sym_number] = ACTIONS(1847), - [sym_private_property_identifier] = ACTIONS(1847), - [sym_this] = ACTIONS(1849), - [sym_super] = ACTIONS(1849), - [sym_true] = ACTIONS(1849), - [sym_false] = ACTIONS(1849), - [sym_null] = ACTIONS(1849), - [sym_undefined] = ACTIONS(1849), - [anon_sym_AT] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1849), - [anon_sym_readonly] = ACTIONS(1849), - [anon_sym_get] = ACTIONS(1849), - [anon_sym_set] = ACTIONS(1849), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_public] = ACTIONS(1849), - [anon_sym_private] = ACTIONS(1849), - [anon_sym_protected] = ACTIONS(1849), - [anon_sym_override] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1849), - [anon_sym_any] = ACTIONS(1849), - [anon_sym_number] = ACTIONS(1849), - [anon_sym_boolean] = ACTIONS(1849), - [anon_sym_string] = ACTIONS(1849), - [anon_sym_symbol] = ACTIONS(1849), - [anon_sym_object] = ACTIONS(1849), - [anon_sym_abstract] = ACTIONS(1849), - [anon_sym_satisfies] = ACTIONS(1849), - [anon_sym_interface] = ACTIONS(1849), - [anon_sym_enum] = ACTIONS(1849), + [235] = { + [ts_builtin_sym_end] = ACTIONS(1839), + [sym_identifier] = ACTIONS(1841), + [anon_sym_export] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_default] = ACTIONS(1841), + [anon_sym_type] = ACTIONS(1841), + [anon_sym_as] = ACTIONS(1843), + [anon_sym_namespace] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_typeof] = ACTIONS(1841), + [anon_sym_import] = ACTIONS(1841), + [anon_sym_with] = ACTIONS(1841), + [anon_sym_var] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_else] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_switch] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_in] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_do] = ACTIONS(1841), + [anon_sym_try] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_debugger] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_throw] = ACTIONS(1841), + [anon_sym_case] = ACTIONS(1841), + [anon_sym_yield] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1839), + [sym_glimmer_opening_tag] = ACTIONS(1839), + [anon_sym_DOT] = ACTIONS(1843), + [anon_sym_class] = ACTIONS(1841), + [anon_sym_async] = ACTIONS(1841), + [anon_sym_function] = ACTIONS(1841), + [anon_sym_QMARK_DOT] = ACTIONS(1845), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_AMP_AMP] = ACTIONS(1845), + [anon_sym_PIPE_PIPE] = ACTIONS(1845), + [anon_sym_GT_GT] = ACTIONS(1843), + [anon_sym_GT_GT_GT] = ACTIONS(1845), + [anon_sym_LT_LT] = ACTIONS(1845), + [anon_sym_AMP] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_PIPE] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_PERCENT] = ACTIONS(1845), + [anon_sym_STAR_STAR] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_EQ_EQ] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1845), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1845), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_GT] = ACTIONS(1843), + [anon_sym_QMARK_QMARK] = ACTIONS(1845), + [anon_sym_instanceof] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1839), + [anon_sym_void] = ACTIONS(1841), + [anon_sym_delete] = ACTIONS(1841), + [anon_sym_PLUS_PLUS] = ACTIONS(1839), + [anon_sym_DASH_DASH] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1839), + [sym_number] = ACTIONS(1839), + [sym_private_property_identifier] = ACTIONS(1839), + [sym_this] = ACTIONS(1841), + [sym_super] = ACTIONS(1841), + [sym_true] = ACTIONS(1841), + [sym_false] = ACTIONS(1841), + [sym_null] = ACTIONS(1841), + [sym_undefined] = ACTIONS(1841), + [anon_sym_AT] = ACTIONS(1839), + [anon_sym_static] = ACTIONS(1841), + [anon_sym_readonly] = ACTIONS(1841), + [anon_sym_get] = ACTIONS(1841), + [anon_sym_set] = ACTIONS(1841), + [anon_sym_declare] = ACTIONS(1841), + [anon_sym_public] = ACTIONS(1841), + [anon_sym_private] = ACTIONS(1841), + [anon_sym_protected] = ACTIONS(1841), + [anon_sym_override] = ACTIONS(1841), + [anon_sym_module] = ACTIONS(1841), + [anon_sym_any] = ACTIONS(1841), + [anon_sym_number] = ACTIONS(1841), + [anon_sym_boolean] = ACTIONS(1841), + [anon_sym_string] = ACTIONS(1841), + [anon_sym_symbol] = ACTIONS(1841), + [anon_sym_object] = ACTIONS(1841), + [anon_sym_abstract] = ACTIONS(1841), + [anon_sym_satisfies] = ACTIONS(1843), + [anon_sym_interface] = ACTIONS(1841), + [anon_sym_enum] = ACTIONS(1841), [sym__automatic_semicolon] = ACTIONS(1847), - [sym__ternary_qmark] = ACTIONS(1847), + [sym__ternary_qmark] = ACTIONS(1845), [sym_html_comment] = ACTIONS(5), }, - [235] = { - [ts_builtin_sym_end] = ACTIONS(1851), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1853), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1853), - [anon_sym_type] = ACTIONS(1853), - [anon_sym_as] = ACTIONS(1855), - [anon_sym_namespace] = ACTIONS(1853), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(1857), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_typeof] = ACTIONS(1853), - [anon_sym_import] = ACTIONS(1853), - [anon_sym_with] = ACTIONS(1853), - [anon_sym_var] = ACTIONS(1853), - [anon_sym_let] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1853), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_in] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1853), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_try] = ACTIONS(1853), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1853), - [anon_sym_debugger] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_throw] = ACTIONS(1853), - [anon_sym_case] = ACTIONS(1853), - [anon_sym_yield] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1851), - [sym_glimmer_opening_tag] = ACTIONS(1851), - [anon_sym_GT] = ACTIONS(1855), - [anon_sym_DOT] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1851), - [anon_sym_SQUOTE] = ACTIONS(1851), - [anon_sym_class] = ACTIONS(1853), - [anon_sym_async] = ACTIONS(1853), - [anon_sym_function] = ACTIONS(1853), - [anon_sym_QMARK_DOT] = ACTIONS(1857), - [anon_sym_new] = ACTIONS(1853), - [anon_sym_using] = ACTIONS(1853), - [anon_sym_AMP_AMP] = ACTIONS(1857), - [anon_sym_PIPE_PIPE] = ACTIONS(1857), - [anon_sym_GT_GT] = ACTIONS(1855), - [anon_sym_GT_GT_GT] = ACTIONS(1857), - [anon_sym_LT_LT] = ACTIONS(1857), - [anon_sym_AMP] = ACTIONS(1855), - [anon_sym_CARET] = ACTIONS(1857), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1853), - [anon_sym_SLASH] = ACTIONS(1853), - [anon_sym_PERCENT] = ACTIONS(1857), - [anon_sym_STAR_STAR] = ACTIONS(1857), - [anon_sym_LT] = ACTIONS(1853), - [anon_sym_LT_EQ] = ACTIONS(1857), - [anon_sym_EQ_EQ] = ACTIONS(1855), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1857), - [anon_sym_BANG_EQ] = ACTIONS(1855), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1857), - [anon_sym_GT_EQ] = ACTIONS(1857), - [anon_sym_QMARK_QMARK] = ACTIONS(1857), - [anon_sym_instanceof] = ACTIONS(1855), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_void] = ACTIONS(1853), - [anon_sym_delete] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1851), - [sym_number] = ACTIONS(1851), - [sym_private_property_identifier] = ACTIONS(1851), - [sym_this] = ACTIONS(1853), - [sym_super] = ACTIONS(1853), - [sym_true] = ACTIONS(1853), - [sym_false] = ACTIONS(1853), - [sym_null] = ACTIONS(1853), - [sym_undefined] = ACTIONS(1853), - [anon_sym_AT] = ACTIONS(1851), - [anon_sym_static] = ACTIONS(1853), - [anon_sym_readonly] = ACTIONS(1853), - [anon_sym_get] = ACTIONS(1853), - [anon_sym_set] = ACTIONS(1853), - [anon_sym_declare] = ACTIONS(1853), - [anon_sym_public] = ACTIONS(1853), - [anon_sym_private] = ACTIONS(1853), - [anon_sym_protected] = ACTIONS(1853), - [anon_sym_override] = ACTIONS(1853), - [anon_sym_module] = ACTIONS(1853), - [anon_sym_any] = ACTIONS(1853), - [anon_sym_number] = ACTIONS(1853), - [anon_sym_boolean] = ACTIONS(1853), - [anon_sym_string] = ACTIONS(1853), - [anon_sym_symbol] = ACTIONS(1853), - [anon_sym_object] = ACTIONS(1853), - [anon_sym_abstract] = ACTIONS(1853), - [anon_sym_satisfies] = ACTIONS(1855), - [anon_sym_interface] = ACTIONS(1853), - [anon_sym_enum] = ACTIONS(1853), - [sym__automatic_semicolon] = ACTIONS(1859), - [sym__ternary_qmark] = ACTIONS(1857), + [236] = { + [ts_builtin_sym_end] = ACTIONS(1849), + [sym_identifier] = ACTIONS(1851), + [anon_sym_export] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_default] = ACTIONS(1851), + [anon_sym_type] = ACTIONS(1851), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_namespace] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_typeof] = ACTIONS(1851), + [anon_sym_import] = ACTIONS(1851), + [anon_sym_with] = ACTIONS(1851), + [anon_sym_var] = ACTIONS(1851), + [anon_sym_let] = ACTIONS(1851), + [anon_sym_const] = ACTIONS(1851), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_else] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_switch] = ACTIONS(1851), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_in] = ACTIONS(1853), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_do] = ACTIONS(1851), + [anon_sym_try] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_debugger] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_throw] = ACTIONS(1851), + [anon_sym_case] = ACTIONS(1851), + [anon_sym_yield] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1849), + [sym_glimmer_opening_tag] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(1851), + [anon_sym_async] = ACTIONS(1851), + [anon_sym_function] = ACTIONS(1851), + [anon_sym_QMARK_DOT] = ACTIONS(1855), + [anon_sym_new] = ACTIONS(1851), + [anon_sym_using] = ACTIONS(1851), + [anon_sym_AMP_AMP] = ACTIONS(1855), + [anon_sym_PIPE_PIPE] = ACTIONS(1855), + [anon_sym_GT_GT] = ACTIONS(1853), + [anon_sym_GT_GT_GT] = ACTIONS(1855), + [anon_sym_LT_LT] = ACTIONS(1855), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_CARET] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_SLASH] = ACTIONS(1851), + [anon_sym_PERCENT] = ACTIONS(1855), + [anon_sym_STAR_STAR] = ACTIONS(1855), + [anon_sym_LT] = ACTIONS(1851), + [anon_sym_LT_EQ] = ACTIONS(1855), + [anon_sym_EQ_EQ] = ACTIONS(1853), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), + [anon_sym_BANG_EQ] = ACTIONS(1853), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), + [anon_sym_GT_EQ] = ACTIONS(1855), + [anon_sym_GT] = ACTIONS(1853), + [anon_sym_QMARK_QMARK] = ACTIONS(1855), + [anon_sym_instanceof] = ACTIONS(1853), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_void] = ACTIONS(1851), + [anon_sym_delete] = ACTIONS(1851), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_DQUOTE] = ACTIONS(1849), + [anon_sym_SQUOTE] = ACTIONS(1849), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1849), + [sym_number] = ACTIONS(1849), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(1851), + [sym_super] = ACTIONS(1851), + [sym_true] = ACTIONS(1851), + [sym_false] = ACTIONS(1851), + [sym_null] = ACTIONS(1851), + [sym_undefined] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(1849), + [anon_sym_static] = ACTIONS(1851), + [anon_sym_readonly] = ACTIONS(1851), + [anon_sym_get] = ACTIONS(1851), + [anon_sym_set] = ACTIONS(1851), + [anon_sym_declare] = ACTIONS(1851), + [anon_sym_public] = ACTIONS(1851), + [anon_sym_private] = ACTIONS(1851), + [anon_sym_protected] = ACTIONS(1851), + [anon_sym_override] = ACTIONS(1851), + [anon_sym_module] = ACTIONS(1851), + [anon_sym_any] = ACTIONS(1851), + [anon_sym_number] = ACTIONS(1851), + [anon_sym_boolean] = ACTIONS(1851), + [anon_sym_string] = ACTIONS(1851), + [anon_sym_symbol] = ACTIONS(1851), + [anon_sym_object] = ACTIONS(1851), + [anon_sym_abstract] = ACTIONS(1851), + [anon_sym_satisfies] = ACTIONS(1853), + [anon_sym_interface] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1851), + [sym__automatic_semicolon] = ACTIONS(1857), + [sym__ternary_qmark] = ACTIONS(1855), [sym_html_comment] = ACTIONS(5), }, - [236] = { - [ts_builtin_sym_end] = ACTIONS(1861), - [sym_identifier] = ACTIONS(1863), - [anon_sym_export] = ACTIONS(1863), + [237] = { + [ts_builtin_sym_end] = ACTIONS(1859), + [sym_identifier] = ACTIONS(1861), + [anon_sym_export] = ACTIONS(1861), [anon_sym_STAR] = ACTIONS(1863), - [anon_sym_default] = ACTIONS(1863), - [anon_sym_type] = ACTIONS(1863), + [anon_sym_default] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), [anon_sym_as] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_COMMA] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_typeof] = ACTIONS(1863), - [anon_sym_import] = ACTIONS(1863), - [anon_sym_with] = ACTIONS(1863), - [anon_sym_var] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_else] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_switch] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_await] = ACTIONS(1863), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1865), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_typeof] = ACTIONS(1861), + [anon_sym_import] = ACTIONS(1861), + [anon_sym_with] = ACTIONS(1861), + [anon_sym_var] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1861), + [anon_sym_else] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_switch] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_SEMI] = ACTIONS(1859), + [anon_sym_await] = ACTIONS(1861), [anon_sym_in] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_debugger] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_throw] = ACTIONS(1863), - [anon_sym_case] = ACTIONS(1863), - [anon_sym_yield] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1861), - [sym_glimmer_opening_tag] = ACTIONS(1861), - [anon_sym_GT] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1861), + [anon_sym_do] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_debugger] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_throw] = ACTIONS(1861), + [anon_sym_case] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1859), + [sym_glimmer_opening_tag] = ACTIONS(1859), [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_class] = ACTIONS(1863), - [anon_sym_async] = ACTIONS(1863), - [anon_sym_function] = ACTIONS(1863), - [anon_sym_QMARK_DOT] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_using] = ACTIONS(1863), - [anon_sym_AMP_AMP] = ACTIONS(1861), - [anon_sym_PIPE_PIPE] = ACTIONS(1861), + [anon_sym_class] = ACTIONS(1861), + [anon_sym_async] = ACTIONS(1861), + [anon_sym_function] = ACTIONS(1861), + [anon_sym_QMARK_DOT] = ACTIONS(1865), + [anon_sym_new] = ACTIONS(1861), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_AMP_AMP] = ACTIONS(1865), + [anon_sym_PIPE_PIPE] = ACTIONS(1865), [anon_sym_GT_GT] = ACTIONS(1863), - [anon_sym_GT_GT_GT] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1861), + [anon_sym_GT_GT_GT] = ACTIONS(1865), + [anon_sym_LT_LT] = ACTIONS(1865), [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1861), + [anon_sym_CARET] = ACTIONS(1865), [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_SLASH] = ACTIONS(1863), - [anon_sym_PERCENT] = ACTIONS(1861), - [anon_sym_STAR_STAR] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1863), - [anon_sym_LT_EQ] = ACTIONS(1861), + [anon_sym_PLUS] = ACTIONS(1861), + [anon_sym_DASH] = ACTIONS(1861), + [anon_sym_SLASH] = ACTIONS(1861), + [anon_sym_PERCENT] = ACTIONS(1865), + [anon_sym_STAR_STAR] = ACTIONS(1865), + [anon_sym_LT] = ACTIONS(1861), + [anon_sym_LT_EQ] = ACTIONS(1865), [anon_sym_EQ_EQ] = ACTIONS(1863), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1861), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1865), [anon_sym_BANG_EQ] = ACTIONS(1863), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1861), - [anon_sym_GT_EQ] = ACTIONS(1861), - [anon_sym_QMARK_QMARK] = ACTIONS(1861), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1865), + [anon_sym_GT_EQ] = ACTIONS(1865), + [anon_sym_GT] = ACTIONS(1863), + [anon_sym_QMARK_QMARK] = ACTIONS(1865), [anon_sym_instanceof] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_void] = ACTIONS(1863), - [anon_sym_delete] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1861), - [sym_number] = ACTIONS(1861), - [sym_private_property_identifier] = ACTIONS(1861), - [sym_this] = ACTIONS(1863), - [sym_super] = ACTIONS(1863), - [sym_true] = ACTIONS(1863), - [sym_false] = ACTIONS(1863), - [sym_null] = ACTIONS(1863), - [sym_undefined] = ACTIONS(1863), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_static] = ACTIONS(1863), - [anon_sym_readonly] = ACTIONS(1863), - [anon_sym_get] = ACTIONS(1863), - [anon_sym_set] = ACTIONS(1863), - [anon_sym_declare] = ACTIONS(1863), - [anon_sym_public] = ACTIONS(1863), - [anon_sym_private] = ACTIONS(1863), - [anon_sym_protected] = ACTIONS(1863), - [anon_sym_override] = ACTIONS(1863), - [anon_sym_module] = ACTIONS(1863), - [anon_sym_any] = ACTIONS(1863), - [anon_sym_number] = ACTIONS(1863), - [anon_sym_boolean] = ACTIONS(1863), - [anon_sym_string] = ACTIONS(1863), - [anon_sym_symbol] = ACTIONS(1863), - [anon_sym_object] = ACTIONS(1863), - [anon_sym_abstract] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1859), + [anon_sym_void] = ACTIONS(1861), + [anon_sym_delete] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1859), + [anon_sym_DASH_DASH] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1859), + [anon_sym_SQUOTE] = ACTIONS(1859), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1859), + [sym_number] = ACTIONS(1859), + [sym_private_property_identifier] = ACTIONS(1859), + [sym_this] = ACTIONS(1861), + [sym_super] = ACTIONS(1861), + [sym_true] = ACTIONS(1861), + [sym_false] = ACTIONS(1861), + [sym_null] = ACTIONS(1861), + [sym_undefined] = ACTIONS(1861), + [anon_sym_AT] = ACTIONS(1859), + [anon_sym_static] = ACTIONS(1861), + [anon_sym_readonly] = ACTIONS(1861), + [anon_sym_get] = ACTIONS(1861), + [anon_sym_set] = ACTIONS(1861), + [anon_sym_declare] = ACTIONS(1861), + [anon_sym_public] = ACTIONS(1861), + [anon_sym_private] = ACTIONS(1861), + [anon_sym_protected] = ACTIONS(1861), + [anon_sym_override] = ACTIONS(1861), + [anon_sym_module] = ACTIONS(1861), + [anon_sym_any] = ACTIONS(1861), + [anon_sym_number] = ACTIONS(1861), + [anon_sym_boolean] = ACTIONS(1861), + [anon_sym_string] = ACTIONS(1861), + [anon_sym_symbol] = ACTIONS(1861), + [anon_sym_object] = ACTIONS(1861), + [anon_sym_abstract] = ACTIONS(1861), [anon_sym_satisfies] = ACTIONS(1863), - [anon_sym_interface] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1863), - [sym__automatic_semicolon] = ACTIONS(1861), - [sym__ternary_qmark] = ACTIONS(1861), - [sym_html_comment] = ACTIONS(5), - }, - [237] = { - [ts_builtin_sym_end] = ACTIONS(1865), - [sym_identifier] = ACTIONS(1867), - [anon_sym_export] = ACTIONS(1867), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_default] = ACTIONS(1867), - [anon_sym_type] = ACTIONS(1867), - [anon_sym_as] = ACTIONS(1869), - [anon_sym_namespace] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_COMMA] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(1867), - [anon_sym_with] = ACTIONS(1867), - [anon_sym_var] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_else] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_await] = ACTIONS(1867), - [anon_sym_in] = ACTIONS(1869), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_debugger] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_case] = ACTIONS(1867), - [anon_sym_yield] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1865), - [sym_glimmer_opening_tag] = ACTIONS(1865), - [anon_sym_GT] = ACTIONS(1869), - [anon_sym_DOT] = ACTIONS(1869), - [anon_sym_DQUOTE] = ACTIONS(1865), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_class] = ACTIONS(1867), - [anon_sym_async] = ACTIONS(1867), - [anon_sym_function] = ACTIONS(1867), - [anon_sym_QMARK_DOT] = ACTIONS(1871), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_using] = ACTIONS(1867), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [anon_sym_GT_GT] = ACTIONS(1869), - [anon_sym_GT_GT_GT] = ACTIONS(1871), - [anon_sym_LT_LT] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1867), - [anon_sym_PERCENT] = ACTIONS(1871), - [anon_sym_STAR_STAR] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_LT_EQ] = ACTIONS(1871), - [anon_sym_EQ_EQ] = ACTIONS(1869), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), - [anon_sym_BANG_EQ] = ACTIONS(1869), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), - [anon_sym_GT_EQ] = ACTIONS(1871), - [anon_sym_QMARK_QMARK] = ACTIONS(1871), - [anon_sym_instanceof] = ACTIONS(1869), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1865), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1865), - [sym_number] = ACTIONS(1865), - [sym_private_property_identifier] = ACTIONS(1865), - [sym_this] = ACTIONS(1867), - [sym_super] = ACTIONS(1867), - [sym_true] = ACTIONS(1867), - [sym_false] = ACTIONS(1867), - [sym_null] = ACTIONS(1867), - [sym_undefined] = ACTIONS(1867), - [anon_sym_AT] = ACTIONS(1865), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_readonly] = ACTIONS(1867), - [anon_sym_get] = ACTIONS(1867), - [anon_sym_set] = ACTIONS(1867), - [anon_sym_declare] = ACTIONS(1867), - [anon_sym_public] = ACTIONS(1867), - [anon_sym_private] = ACTIONS(1867), - [anon_sym_protected] = ACTIONS(1867), - [anon_sym_override] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_any] = ACTIONS(1867), - [anon_sym_number] = ACTIONS(1867), - [anon_sym_boolean] = ACTIONS(1867), - [anon_sym_string] = ACTIONS(1867), - [anon_sym_symbol] = ACTIONS(1867), - [anon_sym_object] = ACTIONS(1867), - [anon_sym_abstract] = ACTIONS(1867), - [anon_sym_satisfies] = ACTIONS(1869), - [anon_sym_interface] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [sym__automatic_semicolon] = ACTIONS(1873), - [sym__ternary_qmark] = ACTIONS(1871), + [anon_sym_interface] = ACTIONS(1861), + [anon_sym_enum] = ACTIONS(1861), + [sym__automatic_semicolon] = ACTIONS(1867), + [sym__ternary_qmark] = ACTIONS(1865), [sym_html_comment] = ACTIONS(5), }, [238] = { - [ts_builtin_sym_end] = ACTIONS(1875), - [sym_identifier] = ACTIONS(1877), - [anon_sym_export] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1879), - [anon_sym_default] = ACTIONS(1877), - [anon_sym_type] = ACTIONS(1877), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_namespace] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1875), - [anon_sym_COMMA] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_typeof] = ACTIONS(1877), - [anon_sym_import] = ACTIONS(1877), - [anon_sym_with] = ACTIONS(1877), - [anon_sym_var] = ACTIONS(1877), - [anon_sym_let] = ACTIONS(1877), - [anon_sym_const] = ACTIONS(1877), - [anon_sym_BANG] = ACTIONS(1877), - [anon_sym_else] = ACTIONS(1877), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_switch] = ACTIONS(1877), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1875), - [anon_sym_SEMI] = ACTIONS(1875), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1877), - [anon_sym_do] = ACTIONS(1877), - [anon_sym_try] = ACTIONS(1877), - [anon_sym_break] = ACTIONS(1877), - [anon_sym_continue] = ACTIONS(1877), - [anon_sym_debugger] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1877), - [anon_sym_throw] = ACTIONS(1877), - [anon_sym_case] = ACTIONS(1877), - [anon_sym_yield] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1875), - [sym_glimmer_opening_tag] = ACTIONS(1875), - [anon_sym_GT] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1875), - [anon_sym_SQUOTE] = ACTIONS(1875), - [anon_sym_class] = ACTIONS(1877), - [anon_sym_async] = ACTIONS(1877), - [anon_sym_function] = ACTIONS(1877), - [anon_sym_QMARK_DOT] = ACTIONS(1881), - [anon_sym_new] = ACTIONS(1877), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_AMP_AMP] = ACTIONS(1881), - [anon_sym_PIPE_PIPE] = ACTIONS(1881), - [anon_sym_GT_GT] = ACTIONS(1879), - [anon_sym_GT_GT_GT] = ACTIONS(1881), - [anon_sym_LT_LT] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_SLASH] = ACTIONS(1877), - [anon_sym_PERCENT] = ACTIONS(1881), - [anon_sym_STAR_STAR] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1877), - [anon_sym_LT_EQ] = ACTIONS(1881), - [anon_sym_EQ_EQ] = ACTIONS(1879), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1881), - [anon_sym_BANG_EQ] = ACTIONS(1879), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(1881), - [anon_sym_QMARK_QMARK] = ACTIONS(1881), - [anon_sym_instanceof] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1875), - [anon_sym_void] = ACTIONS(1877), - [anon_sym_delete] = ACTIONS(1877), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1875), - [sym_number] = ACTIONS(1875), - [sym_private_property_identifier] = ACTIONS(1875), - [sym_this] = ACTIONS(1877), - [sym_super] = ACTIONS(1877), - [sym_true] = ACTIONS(1877), - [sym_false] = ACTIONS(1877), - [sym_null] = ACTIONS(1877), - [sym_undefined] = ACTIONS(1877), - [anon_sym_AT] = ACTIONS(1875), - [anon_sym_static] = ACTIONS(1877), - [anon_sym_readonly] = ACTIONS(1877), - [anon_sym_get] = ACTIONS(1877), - [anon_sym_set] = ACTIONS(1877), - [anon_sym_declare] = ACTIONS(1877), - [anon_sym_public] = ACTIONS(1877), - [anon_sym_private] = ACTIONS(1877), - [anon_sym_protected] = ACTIONS(1877), - [anon_sym_override] = ACTIONS(1877), - [anon_sym_module] = ACTIONS(1877), - [anon_sym_any] = ACTIONS(1877), - [anon_sym_number] = ACTIONS(1877), - [anon_sym_boolean] = ACTIONS(1877), - [anon_sym_string] = ACTIONS(1877), - [anon_sym_symbol] = ACTIONS(1877), - [anon_sym_object] = ACTIONS(1877), - [anon_sym_abstract] = ACTIONS(1877), - [anon_sym_satisfies] = ACTIONS(1879), - [anon_sym_interface] = ACTIONS(1877), - [anon_sym_enum] = ACTIONS(1877), - [sym__automatic_semicolon] = ACTIONS(1883), - [sym__ternary_qmark] = ACTIONS(1881), + [ts_builtin_sym_end] = ACTIONS(1869), + [sym_identifier] = ACTIONS(1871), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_type] = ACTIONS(1871), + [anon_sym_as] = ACTIONS(1873), + [anon_sym_namespace] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_COMMA] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_typeof] = ACTIONS(1871), + [anon_sym_import] = ACTIONS(1871), + [anon_sym_with] = ACTIONS(1871), + [anon_sym_var] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_switch] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(1873), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_debugger] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(1871), + [anon_sym_case] = ACTIONS(1871), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1869), + [sym_glimmer_opening_tag] = ACTIONS(1869), + [anon_sym_DOT] = ACTIONS(1873), + [anon_sym_class] = ACTIONS(1871), + [anon_sym_async] = ACTIONS(1871), + [anon_sym_function] = ACTIONS(1871), + [anon_sym_QMARK_DOT] = ACTIONS(1875), + [anon_sym_new] = ACTIONS(1871), + [anon_sym_using] = ACTIONS(1871), + [anon_sym_AMP_AMP] = ACTIONS(1875), + [anon_sym_PIPE_PIPE] = ACTIONS(1875), + [anon_sym_GT_GT] = ACTIONS(1873), + [anon_sym_GT_GT_GT] = ACTIONS(1875), + [anon_sym_LT_LT] = ACTIONS(1875), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_CARET] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1875), + [anon_sym_STAR_STAR] = ACTIONS(1875), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1875), + [anon_sym_EQ_EQ] = ACTIONS(1873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1875), + [anon_sym_BANG_EQ] = ACTIONS(1873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1875), + [anon_sym_GT_EQ] = ACTIONS(1875), + [anon_sym_GT] = ACTIONS(1873), + [anon_sym_QMARK_QMARK] = ACTIONS(1875), + [anon_sym_instanceof] = ACTIONS(1873), + [anon_sym_TILDE] = ACTIONS(1869), + [anon_sym_void] = ACTIONS(1871), + [anon_sym_delete] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1869), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1869), + [sym_number] = ACTIONS(1869), + [sym_private_property_identifier] = ACTIONS(1869), + [sym_this] = ACTIONS(1871), + [sym_super] = ACTIONS(1871), + [sym_true] = ACTIONS(1871), + [sym_false] = ACTIONS(1871), + [sym_null] = ACTIONS(1871), + [sym_undefined] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1869), + [anon_sym_static] = ACTIONS(1871), + [anon_sym_readonly] = ACTIONS(1871), + [anon_sym_get] = ACTIONS(1871), + [anon_sym_set] = ACTIONS(1871), + [anon_sym_declare] = ACTIONS(1871), + [anon_sym_public] = ACTIONS(1871), + [anon_sym_private] = ACTIONS(1871), + [anon_sym_protected] = ACTIONS(1871), + [anon_sym_override] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_any] = ACTIONS(1871), + [anon_sym_number] = ACTIONS(1871), + [anon_sym_boolean] = ACTIONS(1871), + [anon_sym_string] = ACTIONS(1871), + [anon_sym_symbol] = ACTIONS(1871), + [anon_sym_object] = ACTIONS(1871), + [anon_sym_abstract] = ACTIONS(1871), + [anon_sym_satisfies] = ACTIONS(1873), + [anon_sym_interface] = ACTIONS(1871), + [anon_sym_enum] = ACTIONS(1871), + [sym__automatic_semicolon] = ACTIONS(1877), + [sym__ternary_qmark] = ACTIONS(1875), [sym_html_comment] = ACTIONS(5), }, [239] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_export] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_as] = ACTIONS(1883), + [anon_sym_namespace] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_typeof] = ACTIONS(1881), + [anon_sym_import] = ACTIONS(1881), + [anon_sym_with] = ACTIONS(1881), + [anon_sym_var] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_else] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_switch] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1881), + [anon_sym_do] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_debugger] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_throw] = ACTIONS(1881), + [anon_sym_case] = ACTIONS(1881), + [anon_sym_yield] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1879), + [sym_glimmer_opening_tag] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(1883), + [anon_sym_class] = ACTIONS(1881), + [anon_sym_async] = ACTIONS(1881), + [anon_sym_function] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(1885), + [anon_sym_new] = ACTIONS(1881), + [anon_sym_using] = ACTIONS(1881), + [anon_sym_AMP_AMP] = ACTIONS(1885), + [anon_sym_PIPE_PIPE] = ACTIONS(1885), + [anon_sym_GT_GT] = ACTIONS(1883), + [anon_sym_GT_GT_GT] = ACTIONS(1885), + [anon_sym_LT_LT] = ACTIONS(1885), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_CARET] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1883), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_SLASH] = ACTIONS(1881), + [anon_sym_PERCENT] = ACTIONS(1885), + [anon_sym_STAR_STAR] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1885), + [anon_sym_EQ_EQ] = ACTIONS(1883), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1885), + [anon_sym_BANG_EQ] = ACTIONS(1883), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1885), + [anon_sym_GT_EQ] = ACTIONS(1885), + [anon_sym_GT] = ACTIONS(1883), + [anon_sym_QMARK_QMARK] = ACTIONS(1885), + [anon_sym_instanceof] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_void] = ACTIONS(1881), + [anon_sym_delete] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1879), + [anon_sym_SQUOTE] = ACTIONS(1879), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1879), + [sym_number] = ACTIONS(1879), + [sym_private_property_identifier] = ACTIONS(1879), + [sym_this] = ACTIONS(1881), + [sym_super] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_null] = ACTIONS(1881), + [sym_undefined] = ACTIONS(1881), + [anon_sym_AT] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1881), + [anon_sym_readonly] = ACTIONS(1881), + [anon_sym_get] = ACTIONS(1881), + [anon_sym_set] = ACTIONS(1881), + [anon_sym_declare] = ACTIONS(1881), + [anon_sym_public] = ACTIONS(1881), + [anon_sym_private] = ACTIONS(1881), + [anon_sym_protected] = ACTIONS(1881), + [anon_sym_override] = ACTIONS(1881), + [anon_sym_module] = ACTIONS(1881), + [anon_sym_any] = ACTIONS(1881), + [anon_sym_number] = ACTIONS(1881), + [anon_sym_boolean] = ACTIONS(1881), + [anon_sym_string] = ACTIONS(1881), + [anon_sym_symbol] = ACTIONS(1881), + [anon_sym_object] = ACTIONS(1881), + [anon_sym_abstract] = ACTIONS(1881), + [anon_sym_satisfies] = ACTIONS(1883), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [sym__automatic_semicolon] = ACTIONS(1885), + [sym__ternary_qmark] = ACTIONS(1885), + [sym_html_comment] = ACTIONS(5), + }, + [240] = { + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_export] = ACTIONS(1889), [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_default] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), + [anon_sym_default] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), [anon_sym_as] = ACTIONS(1889), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_COMMA] = ACTIONS(1891), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_typeof] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_switch] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_await] = ACTIONS(1887), + [anon_sym_namespace] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_typeof] = ACTIONS(1889), + [anon_sym_import] = ACTIONS(1889), + [anon_sym_with] = ACTIONS(1889), + [anon_sym_var] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_else] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_switch] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(1889), [anon_sym_in] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_debugger] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_throw] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_yield] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [sym_glimmer_opening_tag] = ACTIONS(1885), - [anon_sym_GT] = ACTIONS(1889), + [anon_sym_while] = ACTIONS(1889), + [anon_sym_do] = ACTIONS(1889), + [anon_sym_try] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_debugger] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_throw] = ACTIONS(1889), + [anon_sym_case] = ACTIONS(1889), + [anon_sym_yield] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1887), + [sym_glimmer_opening_tag] = ACTIONS(1887), [anon_sym_DOT] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_function] = ACTIONS(1887), + [anon_sym_class] = ACTIONS(1889), + [anon_sym_async] = ACTIONS(1889), + [anon_sym_function] = ACTIONS(1889), + [anon_sym_QMARK_DOT] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_using] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(1887), + [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT_GT] = ACTIONS(1887), + [anon_sym_LT_LT] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_CARET] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_PERCENT] = ACTIONS(1887), + [anon_sym_STAR_STAR] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_EQ_EQ] = ACTIONS(1889), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ] = ACTIONS(1889), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1887), + [anon_sym_GT_EQ] = ACTIONS(1887), + [anon_sym_GT] = ACTIONS(1889), + [anon_sym_QMARK_QMARK] = ACTIONS(1887), + [anon_sym_instanceof] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_void] = ACTIONS(1889), + [anon_sym_delete] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [anon_sym_SQUOTE] = ACTIONS(1887), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1887), + [sym_number] = ACTIONS(1887), + [sym_private_property_identifier] = ACTIONS(1887), + [sym_this] = ACTIONS(1889), + [sym_super] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_null] = ACTIONS(1889), + [sym_undefined] = ACTIONS(1889), + [anon_sym_AT] = ACTIONS(1887), + [anon_sym_static] = ACTIONS(1889), + [anon_sym_readonly] = ACTIONS(1889), + [anon_sym_get] = ACTIONS(1889), + [anon_sym_set] = ACTIONS(1889), + [anon_sym_declare] = ACTIONS(1889), + [anon_sym_public] = ACTIONS(1889), + [anon_sym_private] = ACTIONS(1889), + [anon_sym_protected] = ACTIONS(1889), + [anon_sym_override] = ACTIONS(1889), + [anon_sym_module] = ACTIONS(1889), + [anon_sym_any] = ACTIONS(1889), + [anon_sym_number] = ACTIONS(1889), + [anon_sym_boolean] = ACTIONS(1889), + [anon_sym_string] = ACTIONS(1889), + [anon_sym_symbol] = ACTIONS(1889), + [anon_sym_object] = ACTIONS(1889), + [anon_sym_abstract] = ACTIONS(1889), + [anon_sym_satisfies] = ACTIONS(1889), + [anon_sym_interface] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), + [sym__automatic_semicolon] = ACTIONS(1887), + [sym__ternary_qmark] = ACTIONS(1887), + [sym_html_comment] = ACTIONS(5), + }, + [241] = { + [ts_builtin_sym_end] = ACTIONS(1891), + [sym_identifier] = ACTIONS(1893), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_default] = ACTIONS(1893), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_as] = ACTIONS(1893), + [anon_sym_namespace] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_typeof] = ACTIONS(1893), + [anon_sym_import] = ACTIONS(1893), + [anon_sym_with] = ACTIONS(1893), + [anon_sym_var] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_else] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_switch] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_await] = ACTIONS(1893), + [anon_sym_in] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_do] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_debugger] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1893), + [anon_sym_case] = ACTIONS(1893), + [anon_sym_yield] = ACTIONS(1893), + [anon_sym_LBRACK] = ACTIONS(1891), + [sym_glimmer_opening_tag] = ACTIONS(1891), + [anon_sym_DOT] = ACTIONS(1893), + [anon_sym_class] = ACTIONS(1893), + [anon_sym_async] = ACTIONS(1893), + [anon_sym_function] = ACTIONS(1893), [anon_sym_QMARK_DOT] = ACTIONS(1891), - [anon_sym_new] = ACTIONS(1887), - [anon_sym_using] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1893), + [anon_sym_using] = ACTIONS(1893), [anon_sym_AMP_AMP] = ACTIONS(1891), [anon_sym_PIPE_PIPE] = ACTIONS(1891), - [anon_sym_GT_GT] = ACTIONS(1889), + [anon_sym_GT_GT] = ACTIONS(1893), [anon_sym_GT_GT_GT] = ACTIONS(1891), [anon_sym_LT_LT] = ACTIONS(1891), - [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1893), [anon_sym_CARET] = ACTIONS(1891), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), [anon_sym_PERCENT] = ACTIONS(1891), [anon_sym_STAR_STAR] = ACTIONS(1891), - [anon_sym_LT] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(1893), [anon_sym_LT_EQ] = ACTIONS(1891), - [anon_sym_EQ_EQ] = ACTIONS(1889), + [anon_sym_EQ_EQ] = ACTIONS(1893), [anon_sym_EQ_EQ_EQ] = ACTIONS(1891), - [anon_sym_BANG_EQ] = ACTIONS(1889), + [anon_sym_BANG_EQ] = ACTIONS(1893), [anon_sym_BANG_EQ_EQ] = ACTIONS(1891), [anon_sym_GT_EQ] = ACTIONS(1891), + [anon_sym_GT] = ACTIONS(1893), [anon_sym_QMARK_QMARK] = ACTIONS(1891), - [anon_sym_instanceof] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_void] = ACTIONS(1887), - [anon_sym_delete] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1885), - [sym_number] = ACTIONS(1885), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(1887), - [sym_super] = ACTIONS(1887), - [sym_true] = ACTIONS(1887), - [sym_false] = ACTIONS(1887), - [sym_null] = ACTIONS(1887), - [sym_undefined] = ACTIONS(1887), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_readonly] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1887), - [anon_sym_set] = ACTIONS(1887), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_satisfies] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), + [anon_sym_instanceof] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_void] = ACTIONS(1893), + [anon_sym_delete] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(1891), + [anon_sym_SQUOTE] = ACTIONS(1891), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1891), + [sym_number] = ACTIONS(1891), + [sym_private_property_identifier] = ACTIONS(1891), + [sym_this] = ACTIONS(1893), + [sym_super] = ACTIONS(1893), + [sym_true] = ACTIONS(1893), + [sym_false] = ACTIONS(1893), + [sym_null] = ACTIONS(1893), + [sym_undefined] = ACTIONS(1893), + [anon_sym_AT] = ACTIONS(1891), + [anon_sym_static] = ACTIONS(1893), + [anon_sym_readonly] = ACTIONS(1893), + [anon_sym_get] = ACTIONS(1893), + [anon_sym_set] = ACTIONS(1893), + [anon_sym_declare] = ACTIONS(1893), + [anon_sym_public] = ACTIONS(1893), + [anon_sym_private] = ACTIONS(1893), + [anon_sym_protected] = ACTIONS(1893), + [anon_sym_override] = ACTIONS(1893), + [anon_sym_module] = ACTIONS(1893), + [anon_sym_any] = ACTIONS(1893), + [anon_sym_number] = ACTIONS(1893), + [anon_sym_boolean] = ACTIONS(1893), + [anon_sym_string] = ACTIONS(1893), + [anon_sym_symbol] = ACTIONS(1893), + [anon_sym_object] = ACTIONS(1893), + [anon_sym_abstract] = ACTIONS(1893), + [anon_sym_satisfies] = ACTIONS(1893), + [anon_sym_interface] = ACTIONS(1893), + [anon_sym_enum] = ACTIONS(1893), [sym__automatic_semicolon] = ACTIONS(1891), [sym__ternary_qmark] = ACTIONS(1891), [sym_html_comment] = ACTIONS(5), }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(1893), - [sym_identifier] = ACTIONS(1895), - [anon_sym_export] = ACTIONS(1895), - [anon_sym_STAR] = ACTIONS(1895), - [anon_sym_default] = ACTIONS(1895), - [anon_sym_type] = ACTIONS(1895), - [anon_sym_as] = ACTIONS(1895), - [anon_sym_namespace] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_COMMA] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_typeof] = ACTIONS(1895), - [anon_sym_import] = ACTIONS(1895), - [anon_sym_with] = ACTIONS(1895), - [anon_sym_var] = ACTIONS(1895), - [anon_sym_let] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [anon_sym_BANG] = ACTIONS(1895), - [anon_sym_else] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_switch] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_in] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_debugger] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_throw] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1895), - [anon_sym_yield] = ACTIONS(1895), - [anon_sym_LBRACK] = ACTIONS(1893), - [sym_glimmer_opening_tag] = ACTIONS(1893), - [anon_sym_GT] = ACTIONS(1895), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_class] = ACTIONS(1895), - [anon_sym_async] = ACTIONS(1895), - [anon_sym_function] = ACTIONS(1895), - [anon_sym_QMARK_DOT] = ACTIONS(1893), - [anon_sym_new] = ACTIONS(1895), - [anon_sym_using] = ACTIONS(1895), - [anon_sym_AMP_AMP] = ACTIONS(1893), - [anon_sym_PIPE_PIPE] = ACTIONS(1893), - [anon_sym_GT_GT] = ACTIONS(1895), - [anon_sym_GT_GT_GT] = ACTIONS(1893), - [anon_sym_LT_LT] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1895), - [anon_sym_CARET] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1895), - [anon_sym_PLUS] = ACTIONS(1895), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_SLASH] = ACTIONS(1895), - [anon_sym_PERCENT] = ACTIONS(1893), - [anon_sym_STAR_STAR] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1895), - [anon_sym_LT_EQ] = ACTIONS(1893), - [anon_sym_EQ_EQ] = ACTIONS(1895), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1893), - [anon_sym_BANG_EQ] = ACTIONS(1895), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1893), - [anon_sym_GT_EQ] = ACTIONS(1893), - [anon_sym_QMARK_QMARK] = ACTIONS(1893), - [anon_sym_instanceof] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1893), - [anon_sym_void] = ACTIONS(1895), - [anon_sym_delete] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1893), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1893), - [sym_number] = ACTIONS(1893), - [sym_private_property_identifier] = ACTIONS(1893), - [sym_this] = ACTIONS(1895), - [sym_super] = ACTIONS(1895), - [sym_true] = ACTIONS(1895), - [sym_false] = ACTIONS(1895), - [sym_null] = ACTIONS(1895), - [sym_undefined] = ACTIONS(1895), - [anon_sym_AT] = ACTIONS(1893), - [anon_sym_static] = ACTIONS(1895), - [anon_sym_readonly] = ACTIONS(1895), - [anon_sym_get] = ACTIONS(1895), - [anon_sym_set] = ACTIONS(1895), - [anon_sym_declare] = ACTIONS(1895), - [anon_sym_public] = ACTIONS(1895), - [anon_sym_private] = ACTIONS(1895), - [anon_sym_protected] = ACTIONS(1895), - [anon_sym_override] = ACTIONS(1895), - [anon_sym_module] = ACTIONS(1895), - [anon_sym_any] = ACTIONS(1895), - [anon_sym_number] = ACTIONS(1895), - [anon_sym_boolean] = ACTIONS(1895), - [anon_sym_string] = ACTIONS(1895), - [anon_sym_symbol] = ACTIONS(1895), - [anon_sym_object] = ACTIONS(1895), - [anon_sym_abstract] = ACTIONS(1895), - [anon_sym_satisfies] = ACTIONS(1895), - [anon_sym_interface] = ACTIONS(1895), - [anon_sym_enum] = ACTIONS(1895), - [sym__automatic_semicolon] = ACTIONS(1893), - [sym__ternary_qmark] = ACTIONS(1893), - [sym_html_comment] = ACTIONS(5), - }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_export] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_typeof] = ACTIONS(1899), - [anon_sym_import] = ACTIONS(1899), - [anon_sym_with] = ACTIONS(1899), - [anon_sym_var] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_switch] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_await] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_debugger] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_throw] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1899), - [anon_sym_yield] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [sym_glimmer_opening_tag] = ACTIONS(1897), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_class] = ACTIONS(1899), - [anon_sym_async] = ACTIONS(1899), - [anon_sym_function] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1897), - [anon_sym_new] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(1899), - [anon_sym_AMP_AMP] = ACTIONS(1897), - [anon_sym_PIPE_PIPE] = ACTIONS(1897), - [anon_sym_GT_GT] = ACTIONS(1899), - [anon_sym_GT_GT_GT] = ACTIONS(1897), - [anon_sym_LT_LT] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_PERCENT] = ACTIONS(1897), - [anon_sym_STAR_STAR] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1897), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1897), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1897), - [anon_sym_GT_EQ] = ACTIONS(1897), - [anon_sym_QMARK_QMARK] = ACTIONS(1897), - [anon_sym_instanceof] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_void] = ACTIONS(1899), - [anon_sym_delete] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1897), - [sym_number] = ACTIONS(1897), - [sym_private_property_identifier] = ACTIONS(1897), - [sym_this] = ACTIONS(1899), - [sym_super] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_null] = ACTIONS(1899), - [sym_undefined] = ACTIONS(1899), - [anon_sym_AT] = ACTIONS(1897), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_readonly] = ACTIONS(1899), - [anon_sym_get] = ACTIONS(1899), - [anon_sym_set] = ACTIONS(1899), - [anon_sym_declare] = ACTIONS(1899), - [anon_sym_public] = ACTIONS(1899), - [anon_sym_private] = ACTIONS(1899), - [anon_sym_protected] = ACTIONS(1899), - [anon_sym_override] = ACTIONS(1899), - [anon_sym_module] = ACTIONS(1899), - [anon_sym_any] = ACTIONS(1899), - [anon_sym_number] = ACTIONS(1899), - [anon_sym_boolean] = ACTIONS(1899), - [anon_sym_string] = ACTIONS(1899), - [anon_sym_symbol] = ACTIONS(1899), - [anon_sym_object] = ACTIONS(1899), - [anon_sym_abstract] = ACTIONS(1899), - [anon_sym_satisfies] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [sym__automatic_semicolon] = ACTIONS(1897), - [sym__ternary_qmark] = ACTIONS(1897), - [sym_html_comment] = ACTIONS(5), - }, [242] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2605), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2603), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5106), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(5105), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5106), + [sym_array_pattern] = STATE(5105), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), @@ -53290,14 +53290,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1412), - [sym_subscript_expression] = STATE(1412), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5106), + [sym__destructuring_pattern] = STATE(5105), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -53306,54 +53306,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1412), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4388), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1402), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_mapped_type_clause] = STATE(5723), + [sym_mapped_type_clause] = STATE(5623), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_pattern_repeat1] = STATE(4615), - [sym_identifier] = ACTIONS(1901), - [anon_sym_export] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_namespace] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(1909), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_pattern_repeat1] = STATE(4619), + [sym_identifier] = ACTIONS(1895), + [anon_sym_export] = ACTIONS(1897), + [anon_sym_type] = ACTIONS(1897), + [anon_sym_namespace] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_COMMA] = ACTIONS(1903), [anon_sym_typeof] = ACTIONS(1107), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1903), + [anon_sym_let] = ACTIONS(1897), [anon_sym_BANG] = ACTIONS(1089), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(1091), [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_RBRACK] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1905), + [anon_sym_RBRACK] = ACTIONS(1907), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1909), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1911), [anon_sym_using] = ACTIONS(1101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -53363,134 +53363,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1919), + [sym_undefined] = ACTIONS(1913), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_readonly] = ACTIONS(1903), - [anon_sym_get] = ACTIONS(1903), - [anon_sym_set] = ACTIONS(1903), - [anon_sym_declare] = ACTIONS(1903), - [anon_sym_public] = ACTIONS(1903), - [anon_sym_private] = ACTIONS(1903), - [anon_sym_protected] = ACTIONS(1903), - [anon_sym_override] = ACTIONS(1903), - [anon_sym_module] = ACTIONS(1903), - [anon_sym_any] = ACTIONS(1903), - [anon_sym_number] = ACTIONS(1903), - [anon_sym_boolean] = ACTIONS(1903), - [anon_sym_string] = ACTIONS(1903), - [anon_sym_symbol] = ACTIONS(1903), - [anon_sym_object] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1897), + [anon_sym_readonly] = ACTIONS(1897), + [anon_sym_get] = ACTIONS(1897), + [anon_sym_set] = ACTIONS(1897), + [anon_sym_declare] = ACTIONS(1897), + [anon_sym_public] = ACTIONS(1897), + [anon_sym_private] = ACTIONS(1897), + [anon_sym_protected] = ACTIONS(1897), + [anon_sym_override] = ACTIONS(1897), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_any] = ACTIONS(1897), + [anon_sym_number] = ACTIONS(1897), + [anon_sym_boolean] = ACTIONS(1897), + [anon_sym_string] = ACTIONS(1897), + [anon_sym_symbol] = ACTIONS(1897), + [anon_sym_object] = ACTIONS(1897), [sym_html_comment] = ACTIONS(5), }, [243] = { - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_identifier] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1923), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_default] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_as] = ACTIONS(1923), - [anon_sym_namespace] = ACTIONS(1923), - [anon_sym_LBRACE] = ACTIONS(1921), + [ts_builtin_sym_end] = ACTIONS(1915), + [sym_identifier] = ACTIONS(1917), + [anon_sym_export] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1919), + [anon_sym_default] = ACTIONS(1917), + [anon_sym_type] = ACTIONS(1917), + [anon_sym_as] = ACTIONS(1919), + [anon_sym_namespace] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1915), [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_typeof] = ACTIONS(1923), - [anon_sym_import] = ACTIONS(1923), - [anon_sym_with] = ACTIONS(1923), - [anon_sym_var] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1923), - [anon_sym_const] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_else] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_switch] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_await] = ACTIONS(1923), - [anon_sym_in] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_do] = ACTIONS(1923), - [anon_sym_try] = ACTIONS(1923), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_debugger] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_throw] = ACTIONS(1923), - [anon_sym_case] = ACTIONS(1923), - [anon_sym_yield] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1921), - [sym_glimmer_opening_tag] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1923), - [anon_sym_DOT] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1921), - [anon_sym_SQUOTE] = ACTIONS(1921), - [anon_sym_class] = ACTIONS(1923), - [anon_sym_async] = ACTIONS(1923), - [anon_sym_function] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_typeof] = ACTIONS(1917), + [anon_sym_import] = ACTIONS(1917), + [anon_sym_with] = ACTIONS(1917), + [anon_sym_var] = ACTIONS(1917), + [anon_sym_let] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [anon_sym_BANG] = ACTIONS(1917), + [anon_sym_else] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_switch] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1917), + [anon_sym_in] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_do] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_debugger] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_throw] = ACTIONS(1917), + [anon_sym_case] = ACTIONS(1917), + [anon_sym_yield] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1915), + [sym_glimmer_opening_tag] = ACTIONS(1915), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_class] = ACTIONS(1917), + [anon_sym_async] = ACTIONS(1917), + [anon_sym_function] = ACTIONS(1917), [anon_sym_QMARK_DOT] = ACTIONS(1921), - [anon_sym_new] = ACTIONS(1923), - [anon_sym_using] = ACTIONS(1923), + [anon_sym_new] = ACTIONS(1917), + [anon_sym_using] = ACTIONS(1917), [anon_sym_AMP_AMP] = ACTIONS(1921), [anon_sym_PIPE_PIPE] = ACTIONS(1921), - [anon_sym_GT_GT] = ACTIONS(1923), + [anon_sym_GT_GT] = ACTIONS(1919), [anon_sym_GT_GT_GT] = ACTIONS(1921), [anon_sym_LT_LT] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1919), [anon_sym_CARET] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1919), + [anon_sym_PLUS] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1917), [anon_sym_PERCENT] = ACTIONS(1921), [anon_sym_STAR_STAR] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1917), [anon_sym_LT_EQ] = ACTIONS(1921), - [anon_sym_EQ_EQ] = ACTIONS(1923), + [anon_sym_EQ_EQ] = ACTIONS(1919), [anon_sym_EQ_EQ_EQ] = ACTIONS(1921), - [anon_sym_BANG_EQ] = ACTIONS(1923), + [anon_sym_BANG_EQ] = ACTIONS(1919), [anon_sym_BANG_EQ_EQ] = ACTIONS(1921), [anon_sym_GT_EQ] = ACTIONS(1921), + [anon_sym_GT] = ACTIONS(1919), [anon_sym_QMARK_QMARK] = ACTIONS(1921), - [anon_sym_instanceof] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_void] = ACTIONS(1923), - [anon_sym_delete] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1921), - [sym_number] = ACTIONS(1921), - [sym_private_property_identifier] = ACTIONS(1921), - [sym_this] = ACTIONS(1923), - [sym_super] = ACTIONS(1923), - [sym_true] = ACTIONS(1923), - [sym_false] = ACTIONS(1923), - [sym_null] = ACTIONS(1923), - [sym_undefined] = ACTIONS(1923), - [anon_sym_AT] = ACTIONS(1921), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1923), - [anon_sym_get] = ACTIONS(1923), - [anon_sym_set] = ACTIONS(1923), - [anon_sym_declare] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_override] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1923), - [anon_sym_number] = ACTIONS(1923), - [anon_sym_boolean] = ACTIONS(1923), - [anon_sym_string] = ACTIONS(1923), - [anon_sym_symbol] = ACTIONS(1923), - [anon_sym_object] = ACTIONS(1923), - [anon_sym_abstract] = ACTIONS(1923), - [anon_sym_satisfies] = ACTIONS(1923), - [anon_sym_interface] = ACTIONS(1923), - [anon_sym_enum] = ACTIONS(1923), - [sym__automatic_semicolon] = ACTIONS(1921), + [anon_sym_instanceof] = ACTIONS(1919), + [anon_sym_TILDE] = ACTIONS(1915), + [anon_sym_void] = ACTIONS(1917), + [anon_sym_delete] = ACTIONS(1917), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(1915), + [anon_sym_SQUOTE] = ACTIONS(1915), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1915), + [sym_number] = ACTIONS(1915), + [sym_private_property_identifier] = ACTIONS(1915), + [sym_this] = ACTIONS(1917), + [sym_super] = ACTIONS(1917), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_null] = ACTIONS(1917), + [sym_undefined] = ACTIONS(1917), + [anon_sym_AT] = ACTIONS(1915), + [anon_sym_static] = ACTIONS(1917), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_get] = ACTIONS(1917), + [anon_sym_set] = ACTIONS(1917), + [anon_sym_declare] = ACTIONS(1917), + [anon_sym_public] = ACTIONS(1917), + [anon_sym_private] = ACTIONS(1917), + [anon_sym_protected] = ACTIONS(1917), + [anon_sym_override] = ACTIONS(1917), + [anon_sym_module] = ACTIONS(1917), + [anon_sym_any] = ACTIONS(1917), + [anon_sym_number] = ACTIONS(1917), + [anon_sym_boolean] = ACTIONS(1917), + [anon_sym_string] = ACTIONS(1917), + [anon_sym_symbol] = ACTIONS(1917), + [anon_sym_object] = ACTIONS(1917), + [anon_sym_abstract] = ACTIONS(1917), + [anon_sym_satisfies] = ACTIONS(1919), + [anon_sym_interface] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1917), + [sym__automatic_semicolon] = ACTIONS(1923), [sym__ternary_qmark] = ACTIONS(1921), [sym_html_comment] = ACTIONS(5), }, @@ -53533,10 +53533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1927), [anon_sym_LBRACK] = ACTIONS(1925), [sym_glimmer_opening_tag] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1927), [anon_sym_DOT] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_SQUOTE] = ACTIONS(1925), [anon_sym_class] = ACTIONS(1927), [anon_sym_async] = ACTIONS(1927), [anon_sym_function] = ACTIONS(1927), @@ -53563,6 +53560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1927), [anon_sym_BANG_EQ_EQ] = ACTIONS(1925), [anon_sym_GT_EQ] = ACTIONS(1925), + [anon_sym_GT] = ACTIONS(1927), [anon_sym_QMARK_QMARK] = ACTIONS(1925), [anon_sym_instanceof] = ACTIONS(1927), [anon_sym_TILDE] = ACTIONS(1925), @@ -53570,6 +53568,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1927), [anon_sym_PLUS_PLUS] = ACTIONS(1925), [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_SQUOTE] = ACTIONS(1925), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1925), [sym_number] = ACTIONS(1925), @@ -53606,14 +53606,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [245] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), [sym_object_pattern] = STATE(3739), - [sym_assignment_pattern] = STATE(5020), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), [sym_array_pattern] = STATE(3739), [sym_glimmer_template] = STATE(1652), @@ -53621,14 +53621,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -53639,53 +53639,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4388), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(1909), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_RBRACK] = ACTIONS(1913), + [anon_sym_RBRACK] = ACTIONS(1907), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -53716,16 +53716,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [246] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2600), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2604), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5106), - [sym_assignment_pattern] = STATE(5020), + [sym_object_pattern] = STATE(5105), + [sym_assignment_pattern] = STATE(5126), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5106), + [sym_array_pattern] = STATE(5105), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), @@ -53733,14 +53733,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1412), - [sym_subscript_expression] = STATE(1412), + [sym_member_expression] = STATE(1402), + [sym_subscript_expression] = STATE(1402), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5106), + [sym__destructuring_pattern] = STATE(5105), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -53749,26 +53749,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4511), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1412), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4388), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1402), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_pattern_repeat1] = STATE(4615), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_pattern_repeat1] = STATE(4619), [sym_identifier] = ACTIONS(1929), [anon_sym_export] = ACTIONS(1931), [anon_sym_type] = ACTIONS(1931), [anon_sym_namespace] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_COMMA] = ACTIONS(1903), [anon_sym_typeof] = ACTIONS(1107), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1931), @@ -53776,26 +53776,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(1091), [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1911), - [anon_sym_RBRACK] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1905), + [anon_sym_RBRACK] = ACTIONS(1907), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1935), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1937), [anon_sym_using] = ACTIONS(1101), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -53805,7 +53805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1919), + [sym_undefined] = ACTIONS(1913), [anon_sym_AT] = ACTIONS(99), [anon_sym_static] = ACTIONS(1931), [anon_sym_readonly] = ACTIONS(1931), @@ -53826,32 +53826,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [247] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2428), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2439), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5357), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5434), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4549), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(4552), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -53860,19 +53860,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4553), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4565), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1691), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), @@ -53889,23 +53889,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(819), [anon_sym_RBRACK] = ACTIONS(1939), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1697), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -53936,32 +53936,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [248] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2428), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2439), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5357), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5434), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4549), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(4552), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -53970,19 +53970,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4553), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4565), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1691), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), @@ -53999,23 +53999,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(819), [anon_sym_RBRACK] = ACTIONS(1942), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1697), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -54046,32 +54046,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [249] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2428), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2439), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5357), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5434), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), - [sym_spread_element] = STATE(4549), + [sym__destructuring_pattern] = STATE(4445), + [sym_spread_element] = STATE(4552), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -54080,19 +54080,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4553), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4565), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1691), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), @@ -54109,23 +54109,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(819), [anon_sym_RBRACK] = ACTIONS(1946), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1697), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -54156,53 +54156,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [250] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1228), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(1512), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1691), + [sym_object_pattern] = STATE(5604), + [sym_array] = STATE(1691), + [sym_array_pattern] = STATE(5604), + [sym_glimmer_template] = STATE(1652), + [sym_class] = STATE(1691), + [sym_function_expression] = STATE(1691), + [sym_generator_function] = STATE(1691), + [sym_arrow_function] = STATE(1691), + [sym__call_signature] = STATE(5794), + [sym_call_expression] = STATE(1691), + [sym_new_expression] = STATE(1619), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1228), + [sym_subscript_expression] = STATE(1228), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(2993), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5604), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1691), + [sym_template_string] = STATE(1691), + [sym_regex] = STATE(1691), + [sym_meta_property] = STATE(1691), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1228), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(537), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(809), + [anon_sym_export] = ACTIONS(811), + [anon_sym_type] = ACTIONS(811), + [anon_sym_namespace] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_typeof] = ACTIONS(180), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(811), + [anon_sym_BANG] = ACTIONS(176), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_RPAREN] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(141), + [anon_sym_yield] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(1765), + [anon_sym_RBRACK] = ACTIONS(1765), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(823), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(825), + [anon_sym_using] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), + [anon_sym_PLUS_PLUS] = ACTIONS(691), + [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(827), + [sym_number] = ACTIONS(719), + [sym_private_property_identifier] = ACTIONS(193), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(829), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(811), + [anon_sym_readonly] = ACTIONS(811), + [anon_sym_get] = ACTIONS(811), + [anon_sym_set] = ACTIONS(811), + [anon_sym_declare] = ACTIONS(811), + [anon_sym_public] = ACTIONS(811), + [anon_sym_private] = ACTIONS(811), + [anon_sym_protected] = ACTIONS(811), + [anon_sym_override] = ACTIONS(811), + [anon_sym_module] = ACTIONS(811), + [anon_sym_any] = ACTIONS(811), + [anon_sym_number] = ACTIONS(811), + [anon_sym_boolean] = ACTIONS(811), + [anon_sym_string] = ACTIONS(811), + [anon_sym_symbol] = ACTIONS(811), + [anon_sym_object] = ACTIONS(811), + [anon_sym_extends] = ACTIONS(1767), + [sym_html_comment] = ACTIONS(5), + }, + [251] = { + [sym_import] = STATE(3541), [sym_variable_declaration] = STATE(299), [sym_lexical_declaration] = STATE(299), [sym_empty_statement] = STATE(299), - [sym_parenthesized_expression] = STATE(1383), - [sym_expression] = STATE(2233), + [sym_parenthesized_expression] = STATE(1382), + [sym_expression] = STATE(2236), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4588), + [sym_object_pattern] = STATE(4587), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4588), + [sym_array_pattern] = STATE(4587), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4588), + [sym__destructuring_pattern] = STATE(4587), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5507), + [sym_sequence_expression] = STATE(5550), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1383), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1382), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1950), [anon_sym_export] = ACTIONS(1952), [anon_sym_type] = ACTIONS(1952), @@ -54220,22 +54330,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(1964), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1966), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1968), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -54265,144 +54375,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1952), [sym_html_comment] = ACTIONS(5), }, - [251] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1228), - [sym_subscript_expression] = STATE(1228), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1228), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(809), - [anon_sym_export] = ACTIONS(811), - [anon_sym_type] = ACTIONS(811), - [anon_sym_namespace] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(184), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1777), - [anon_sym_await] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(1777), - [anon_sym_RBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), - [anon_sym_PLUS_PLUS] = ACTIONS(691), - [anon_sym_DASH_DASH] = ACTIONS(691), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(193), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(811), - [anon_sym_readonly] = ACTIONS(811), - [anon_sym_get] = ACTIONS(811), - [anon_sym_set] = ACTIONS(811), - [anon_sym_declare] = ACTIONS(811), - [anon_sym_public] = ACTIONS(811), - [anon_sym_private] = ACTIONS(811), - [anon_sym_protected] = ACTIONS(811), - [anon_sym_override] = ACTIONS(811), - [anon_sym_module] = ACTIONS(811), - [anon_sym_any] = ACTIONS(811), - [anon_sym_number] = ACTIONS(811), - [anon_sym_boolean] = ACTIONS(811), - [anon_sym_string] = ACTIONS(811), - [anon_sym_symbol] = ACTIONS(811), - [anon_sym_object] = ACTIONS(811), - [anon_sym_extends] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, [252] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_variable_declaration] = STATE(304), [sym_lexical_declaration] = STATE(304), [sym_empty_statement] = STATE(304), - [sym_parenthesized_expression] = STATE(1383), + [sym_parenthesized_expression] = STATE(1382), [sym_expression] = STATE(2361), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4588), + [sym_object_pattern] = STATE(4587), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4588), + [sym_array_pattern] = STATE(4587), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1383), - [sym_subscript_expression] = STATE(1383), + [sym_member_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4588), + [sym__destructuring_pattern] = STATE(4587), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -54412,17 +54412,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1383), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1382), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1950), [anon_sym_export] = ACTIONS(1952), [anon_sym_type] = ACTIONS(1952), @@ -54440,22 +54440,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(1964), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1966), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1968), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -54486,14 +54486,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [253] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), [sym_object_pattern] = STATE(3739), - [sym_assignment_pattern] = STATE(4617), + [sym_assignment_pattern] = STATE(4604), [sym_array] = STATE(1691), [sym_array_pattern] = STATE(3739), [sym_glimmer_template] = STATE(1652), @@ -54501,14 +54501,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -54519,53 +54519,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4428), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4397), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_pattern_repeat1] = STATE(4629), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_pattern_repeat1] = STATE(4625), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_COMMA] = ACTIONS(1909), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [anon_sym_RBRACK] = ACTIONS(1972), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -54596,30 +54596,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [254] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1924), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -54628,52 +54628,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), [anon_sym_namespace] = ACTIONS(1277), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1777), + [anon_sym_COMMA] = ACTIONS(1765), [anon_sym_typeof] = ACTIONS(763), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1275), [anon_sym_BANG] = ACTIONS(739), [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_RPAREN] = ACTIONS(1777), + [anon_sym_RPAREN] = ACTIONS(1765), [anon_sym_await] = ACTIONS(743), [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1765), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(1765), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -54701,18 +54701,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1275), [anon_sym_symbol] = ACTIONS(1275), [anon_sym_object] = ACTIONS(1275), - [anon_sym_extends] = ACTIONS(1779), + [anon_sym_extends] = ACTIONS(1767), [sym_html_comment] = ACTIONS(5), }, [255] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), [sym_object_pattern] = STATE(3739), - [sym_assignment_pattern] = STATE(5357), + [sym_assignment_pattern] = STATE(5434), [sym_array] = STATE(1691), [sym_array_pattern] = STATE(3739), [sym_glimmer_template] = STATE(1652), @@ -54720,14 +54720,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -54738,52 +54738,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4553), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4565), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), [anon_sym_COMMA] = ACTIONS(1974), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [anon_sym_RBRACK] = ACTIONS(1974), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -54814,31 +54814,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [256] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2462), + [sym_primary_expression] = STATE(1512), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1691), + [sym_object_pattern] = STATE(5835), + [sym_array] = STATE(1691), + [sym_array_pattern] = STATE(5835), + [sym_glimmer_template] = STATE(1652), + [sym_class] = STATE(1691), + [sym_function_expression] = STATE(1691), + [sym_generator_function] = STATE(1691), + [sym_arrow_function] = STATE(1691), + [sym__call_signature] = STATE(5489), + [sym_call_expression] = STATE(1691), + [sym_new_expression] = STATE(1619), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3028), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5835), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1691), + [sym_template_string] = STATE(1691), + [sym_regex] = STATE(1691), + [sym_meta_property] = STATE(1691), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(617), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(1529), + [anon_sym_export] = ACTIONS(1081), + [anon_sym_type] = ACTIONS(1081), + [anon_sym_namespace] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1081), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1765), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1089), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(827), + [sym_number] = ACTIONS(719), + [sym_private_property_identifier] = ACTIONS(1115), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1535), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1081), + [anon_sym_readonly] = ACTIONS(1081), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1081), + [anon_sym_declare] = ACTIONS(1081), + [anon_sym_public] = ACTIONS(1081), + [anon_sym_private] = ACTIONS(1081), + [anon_sym_protected] = ACTIONS(1081), + [anon_sym_override] = ACTIONS(1081), + [anon_sym_module] = ACTIONS(1081), + [anon_sym_any] = ACTIONS(1081), + [anon_sym_number] = ACTIONS(1081), + [anon_sym_boolean] = ACTIONS(1081), + [anon_sym_string] = ACTIONS(1081), + [anon_sym_symbol] = ACTIONS(1081), + [anon_sym_object] = ACTIONS(1081), + [anon_sym_extends] = ACTIONS(1767), + [sym_html_comment] = ACTIONS(5), + }, + [257] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(2258), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_spread_element] = STATE(4648), + [sym__destructuring_pattern] = STATE(5559), + [sym_spread_element] = STATE(4644), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -54847,18 +54955,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4649), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4645), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -54875,23 +54983,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -54921,9 +55029,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1275), [sym_html_comment] = ACTIONS(5), }, - [257] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [258] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2108), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -54938,12 +55046,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -54954,23 +55062,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), [anon_sym_namespace] = ACTIONS(1327), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1777), + [anon_sym_COMMA] = ACTIONS(1765), [anon_sym_typeof] = ACTIONS(1347), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1325), @@ -54978,27 +55086,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(1333), [anon_sym_yield] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1765), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(1765), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -55026,142 +55134,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1325), [anon_sym_symbol] = ACTIONS(1325), [anon_sym_object] = ACTIONS(1325), - [anon_sym_extends] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, - [258] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2458), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1777), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1777), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), - [anon_sym_extends] = ACTIONS(1779), + [anon_sym_extends] = ACTIONS(1767), [sym_html_comment] = ACTIONS(5), }, [259] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2192), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2193), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_spread_element] = STATE(4563), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), @@ -55171,17 +55171,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [aux_sym_array_repeat1] = STATE(4564), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), @@ -55199,23 +55199,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -55267,32 +55267,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1984), [anon_sym_LBRACK] = ACTIONS(1986), [sym_glimmer_opening_tag] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), [anon_sym_class] = ACTIONS(1984), [anon_sym_async] = ACTIONS(1984), [anon_sym_function] = ACTIONS(1984), [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1984), [anon_sym_using] = ACTIONS(1984), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_DOT_DOT_DOT] = ACTIONS(1986), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), @@ -55308,12 +55305,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(1984), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_TILDE] = ACTIONS(1986), @@ -55321,6 +55319,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1984), [anon_sym_PLUS_PLUS] = ACTIONS(1986), [anon_sym_DASH_DASH] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1986), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1986), [sym_number] = ACTIONS(1986), @@ -55350,59 +55350,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1984), [anon_sym_object] = ACTIONS(1984), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [261] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1826), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), [anon_sym_namespace] = ACTIONS(1445), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1777), + [anon_sym_COMMA] = ACTIONS(1765), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(674), [anon_sym_let] = ACTIONS(1443), @@ -55410,27 +55410,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(45), [anon_sym_yield] = ACTIONS(63), - [anon_sym_LBRACK] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1765), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(1765), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -55458,7 +55458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1443), [anon_sym_symbol] = ACTIONS(1443), [anon_sym_object] = ACTIONS(1443), - [anon_sym_extends] = ACTIONS(1779), + [anon_sym_extends] = ACTIONS(1767), [sym_html_comment] = ACTIONS(5), }, [262] = { @@ -55483,32 +55483,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1988), [anon_sym_LBRACK] = ACTIONS(1990), [sym_glimmer_opening_tag] = ACTIONS(1990), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), [anon_sym_class] = ACTIONS(1988), [anon_sym_async] = ACTIONS(1988), [anon_sym_function] = ACTIONS(1988), [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1988), [anon_sym_using] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_DOT_DOT_DOT] = ACTIONS(1990), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), @@ -55524,12 +55521,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(1988), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_TILDE] = ACTIONS(1990), @@ -55537,6 +55535,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1988), [anon_sym_PLUS_PLUS] = ACTIONS(1990), [anon_sym_DASH_DASH] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1990), [sym_number] = ACTIONS(1990), @@ -55566,13 +55566,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1988), [anon_sym_object] = ACTIONS(1988), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [263] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2450), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2452), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -55584,14 +55584,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -55602,23 +55602,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), [anon_sym_namespace] = ACTIONS(1363), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(1777), + [anon_sym_COMMA] = ACTIONS(1765), [anon_sym_typeof] = ACTIONS(1383), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1361), @@ -55626,27 +55626,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(1369), [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1765), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(1765), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -55674,35 +55674,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1361), [anon_sym_symbol] = ACTIONS(1361), [anon_sym_object] = ACTIONS(1361), - [anon_sym_extends] = ACTIONS(1779), + [anon_sym_extends] = ACTIONS(1767), [sym_html_comment] = ACTIONS(5), }, [264] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(2256), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_spread_element] = STATE(4637), + [sym__destructuring_pattern] = STATE(5559), + [sym_spread_element] = STATE(4633), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -55711,18 +55711,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4638), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4634), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -55739,23 +55739,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -55786,9 +55786,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [265] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -55800,14 +55800,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -55818,11 +55818,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(3921), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(3920), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -55831,39 +55831,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_accessibility_modifier] = STATE(279), [sym_override_modifier] = STATE(298), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(1257), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(1260), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), [anon_sym_class] = ACTIONS(1994), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -55894,31 +55894,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [266] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2251), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2252), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_spread_element] = STATE(4595), + [sym__destructuring_pattern] = STATE(5559), + [sym_spread_element] = STATE(4592), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -55927,18 +55927,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4596), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4593), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -55955,23 +55955,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -56002,31 +56002,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [267] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2347), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2348), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_spread_element] = STATE(4571), + [sym__destructuring_pattern] = STATE(5559), + [sym_spread_element] = STATE(4866), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -56035,18 +56035,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4554), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4586), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -56063,23 +56063,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -56131,32 +56131,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1984), [anon_sym_LBRACK] = ACTIONS(1986), [sym_glimmer_opening_tag] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), [anon_sym_class] = ACTIONS(1984), [anon_sym_async] = ACTIONS(1984), [anon_sym_function] = ACTIONS(1984), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1984), [anon_sym_using] = ACTIONS(1984), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_DOT_DOT_DOT] = ACTIONS(1986), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), @@ -56172,12 +56169,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(1984), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_TILDE] = ACTIONS(1986), @@ -56185,6 +56183,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1984), [anon_sym_PLUS_PLUS] = ACTIONS(1986), [anon_sym_DASH_DASH] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1986), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1986), [sym_number] = ACTIONS(1986), @@ -56214,7 +56214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1984), [anon_sym_object] = ACTIONS(1984), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [269] = { @@ -56239,32 +56239,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1988), [anon_sym_LBRACK] = ACTIONS(1990), [sym_glimmer_opening_tag] = ACTIONS(1990), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), [anon_sym_class] = ACTIONS(1988), [anon_sym_async] = ACTIONS(1988), [anon_sym_function] = ACTIONS(1988), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1988), [anon_sym_using] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_DOT_DOT_DOT] = ACTIONS(1990), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), @@ -56280,12 +56277,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(1988), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), [anon_sym_TILDE] = ACTIONS(1990), @@ -56293,6 +56291,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1988), [anon_sym_PLUS_PLUS] = ACTIONS(1990), [anon_sym_DASH_DASH] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1990), [sym_number] = ACTIONS(1990), @@ -56322,59 +56322,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1988), [anon_sym_object] = ACTIONS(1988), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [270] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1875), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), [anon_sym_namespace] = ACTIONS(1229), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1777), + [anon_sym_COMMA] = ACTIONS(1765), [anon_sym_typeof] = ACTIONS(1253), [anon_sym_import] = ACTIONS(674), [anon_sym_let] = ACTIONS(1227), @@ -56382,27 +56382,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1237), [anon_sym_yield] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1765), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1485), [anon_sym_using] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(1765), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -56430,35 +56430,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1227), [anon_sym_symbol] = ACTIONS(1227), [anon_sym_object] = ACTIONS(1227), - [anon_sym_extends] = ACTIONS(1779), + [anon_sym_extends] = ACTIONS(1767), [sym_html_comment] = ACTIONS(5), }, [271] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(2241), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_spread_element] = STATE(4997), + [sym__destructuring_pattern] = STATE(5559), + [sym_spread_element] = STATE(5000), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -56467,18 +56467,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4998), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(5001), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -56495,23 +56495,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -56542,9 +56542,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [272] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2518), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2519), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -56558,12 +56558,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -56574,23 +56574,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), [anon_sym_namespace] = ACTIONS(1409), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(1777), + [anon_sym_COMMA] = ACTIONS(1765), [anon_sym_typeof] = ACTIONS(1429), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(1407), @@ -56598,27 +56598,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(1415), [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1765), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(1765), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -56646,59 +56646,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1407), [anon_sym_symbol] = ACTIONS(1407), [anon_sym_object] = ACTIONS(1407), - [anon_sym_extends] = ACTIONS(1779), + [anon_sym_extends] = ACTIONS(1767), [sym_html_comment] = ACTIONS(5), }, [273] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), [sym_expression] = STATE(2259), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), [anon_sym_namespace] = ACTIONS(1131), [anon_sym_LBRACE] = ACTIONS(670), - [anon_sym_COMMA] = ACTIONS(1777), + [anon_sym_COMMA] = ACTIONS(1765), [anon_sym_typeof] = ACTIONS(1157), [anon_sym_import] = ACTIONS(674), [anon_sym_let] = ACTIONS(1129), @@ -56706,27 +56706,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(41), [anon_sym_await] = ACTIONS(1141), [anon_sym_yield] = ACTIONS(1143), - [anon_sym_LBRACK] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1765), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(1777), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1501), [anon_sym_using] = ACTIONS(1151), - [anon_sym_AMP] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_GT] = ACTIONS(1765), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -56754,35 +56754,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1129), [anon_sym_symbol] = ACTIONS(1129), [anon_sym_object] = ACTIONS(1129), - [anon_sym_extends] = ACTIONS(1779), + [anon_sym_extends] = ACTIONS(1767), [sym_html_comment] = ACTIONS(5), }, [274] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2248), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2362), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_spread_element] = STATE(4547), + [sym__destructuring_pattern] = STATE(5559), + [sym_spread_element] = STATE(4543), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -56791,18 +56791,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [aux_sym_array_repeat1] = STATE(4548), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [aux_sym_array_repeat1] = STATE(4544), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -56819,23 +56819,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -56866,8 +56866,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [275] = { - [sym_import] = STATE(3623), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3625), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1778), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -56880,14 +56880,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -56898,21 +56898,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2931), - [sym__type_query_subscript_expression] = STATE(2926), - [sym__type_query_call_expression] = STATE(3123), - [sym__type_query_instantiation_expression] = STATE(3222), + [sym__type_query_member_expression] = STATE(2935), + [sym__type_query_subscript_expression] = STATE(2937), + [sym__type_query_call_expression] = STATE(3128), + [sym__type_query_instantiation_expression] = STATE(3229), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2008), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -56927,22 +56927,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -56973,9 +56973,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [276] = { - [sym_import] = STATE(3604), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2518), + [sym_import] = STATE(3608), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2519), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -56989,12 +56989,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -57005,21 +57005,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), + [sym__type_query_member_expression] = STATE(2880), + [sym__type_query_subscript_expression] = STATE(2882), + [sym__type_query_call_expression] = STATE(2925), + [sym__type_query_instantiation_expression] = STATE(3044), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2012), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -57034,22 +57034,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -57081,52 +57081,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [277] = { [sym_import] = STATE(3566), - [sym_parenthesized_expression] = STATE(1353), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1826), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), + [sym__type_query_member_expression] = STATE(2880), + [sym__type_query_subscript_expression] = STATE(2882), + [sym__type_query_call_expression] = STATE(2925), + [sym__type_query_instantiation_expression] = STATE(3044), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(2016), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -57141,22 +57141,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -57187,31 +57187,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [278] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2439), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2436), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4448), - [sym_assignment_pattern] = STATE(5210), + [sym_object_pattern] = STATE(4445), + [sym_assignment_pattern] = STATE(5143), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4448), + [sym_array_pattern] = STATE(4445), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1399), - [sym_subscript_expression] = STATE(1399), + [sym_member_expression] = STATE(1379), + [sym_subscript_expression] = STATE(1379), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4448), + [sym__destructuring_pattern] = STATE(4445), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -57220,19 +57220,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4534), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1399), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4528), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1379), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1691), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(580), @@ -57247,23 +57247,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(602), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1697), [anon_sym_using] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -57294,9 +57294,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [279] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -57308,14 +57308,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -57326,11 +57326,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(3927), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(3926), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -57338,39 +57338,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_override_modifier] = STATE(302), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -57401,9 +57401,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [280] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2428), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2439), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -57415,17 +57415,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), - [sym_spread_element] = STATE(4549), + [sym_spread_element] = STATE(4552), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -57434,17 +57434,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -57461,23 +57461,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(847), [anon_sym_RBRACK] = ACTIONS(2024), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -57508,8 +57508,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [281] = { - [sym_import] = STATE(3615), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3617), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1778), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -57522,14 +57522,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -57540,21 +57540,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), + [sym__type_query_member_expression] = STATE(2880), + [sym__type_query_subscript_expression] = STATE(2882), + [sym__type_query_call_expression] = STATE(2925), + [sym__type_query_instantiation_expression] = STATE(3044), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2028), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -57569,22 +57569,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -57615,30 +57615,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [282] = { - [sym_import] = STATE(3604), + [sym_import] = STATE(3608), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2543), + [sym_expression] = STATE(2547), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -57647,51 +57647,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), + [sym__type_query_member_expression] = STATE(2880), + [sym__type_query_subscript_expression] = STATE(2882), + [sym__type_query_call_expression] = STATE(2925), + [sym__type_query_instantiation_expression] = STATE(3044), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2030), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -57722,30 +57722,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [283] = { - [sym_import] = STATE(3597), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3599), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1924), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -57754,21 +57754,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), + [sym__type_query_member_expression] = STATE(2880), + [sym__type_query_subscript_expression] = STATE(2882), + [sym__type_query_call_expression] = STATE(2925), + [sym__type_query_instantiation_expression] = STATE(3044), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2032), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -57783,22 +57783,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -57829,30 +57829,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [284] = { - [sym_import] = STATE(3615), + [sym_import] = STATE(3617), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2543), + [sym_expression] = STATE(2547), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -57861,51 +57861,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), + [sym__type_query_member_expression] = STATE(2880), + [sym__type_query_subscript_expression] = STATE(2882), + [sym__type_query_call_expression] = STATE(2925), + [sym__type_query_instantiation_expression] = STATE(3044), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2034), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -57936,8 +57936,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [285] = { - [sym_import] = STATE(3615), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3617), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1778), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -57950,14 +57950,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -57968,21 +57968,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), + [sym__type_query_member_expression] = STATE(2880), + [sym__type_query_subscript_expression] = STATE(2882), + [sym__type_query_call_expression] = STATE(2925), + [sym__type_query_instantiation_expression] = STATE(3044), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2038), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -57997,22 +57997,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -58043,30 +58043,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [286] = { - [sym_import] = STATE(3604), + [sym_import] = STATE(3608), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2543), + [sym_expression] = STATE(2547), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -58075,51 +58075,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), + [sym__type_query_member_expression] = STATE(2880), + [sym__type_query_subscript_expression] = STATE(2882), + [sym__type_query_call_expression] = STATE(2925), + [sym__type_query_instantiation_expression] = STATE(3044), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2042), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -58150,14 +58150,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [287] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), [sym_object_pattern] = STATE(3739), - [sym_assignment_pattern] = STATE(5210), + [sym_assignment_pattern] = STATE(5143), [sym_array] = STATE(1691), [sym_array_pattern] = STATE(3739), [sym_glimmer_template] = STATE(1652), @@ -58165,14 +58165,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -58183,50 +58183,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4534), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4528), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -58257,9 +58257,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [288] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -58271,14 +58271,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -58289,11 +58289,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4085), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4086), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), @@ -58301,39 +58301,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_internal_module] = STATE(1652), [sym_override_modifier] = STATE(300), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -58364,31 +58364,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [289] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2423), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2426), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_spread_element] = STATE(4549), + [sym__destructuring_pattern] = STATE(5559), + [sym_spread_element] = STATE(4552), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -58397,17 +58397,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -58424,23 +58424,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_DOT_DOT_DOT] = ACTIONS(1980), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -58471,30 +58471,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [290] = { - [sym_import] = STATE(3597), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3599), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1924), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -58503,21 +58503,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), + [sym__type_query_member_expression] = STATE(2880), + [sym__type_query_subscript_expression] = STATE(2882), + [sym__type_query_call_expression] = STATE(2925), + [sym__type_query_instantiation_expression] = STATE(3044), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2046), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -58532,22 +58532,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -58578,53 +58578,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [291] = { - [sym_import] = STATE(3616), - [sym_parenthesized_expression] = STATE(1417), + [sym_import] = STATE(3618), + [sym_parenthesized_expression] = STATE(1416), [sym_expression] = STATE(2259), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), + [sym__type_query_member_expression] = STATE(2880), + [sym__type_query_subscript_expression] = STATE(2882), + [sym__type_query_call_expression] = STATE(2925), + [sym__type_query_instantiation_expression] = STATE(3044), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(2048), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -58639,8 +58639,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -58648,13 +58646,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -58685,9 +58685,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [292] = { - [sym_import] = STATE(3754), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2458), + [sym_import] = STATE(3623), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2462), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -58701,12 +58701,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -58717,21 +58717,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), + [sym__type_query_member_expression] = STATE(2880), + [sym__type_query_subscript_expression] = STATE(2882), + [sym__type_query_call_expression] = STATE(2925), + [sym__type_query_instantiation_expression] = STATE(3044), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2050), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -58746,22 +58746,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -58796,49 +58796,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1875), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), + [sym__type_query_member_expression] = STATE(2880), + [sym__type_query_subscript_expression] = STATE(2882), + [sym__type_query_call_expression] = STATE(2925), + [sym__type_query_instantiation_expression] = STATE(3044), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(2052), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -58853,8 +58853,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -58863,12 +58861,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -58899,8 +58899,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [294] = { - [sym_import] = STATE(3615), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3617), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1778), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -58913,14 +58913,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -58931,21 +58931,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), + [sym__type_query_member_expression] = STATE(2880), + [sym__type_query_subscript_expression] = STATE(2882), + [sym__type_query_call_expression] = STATE(2925), + [sym__type_query_instantiation_expression] = STATE(3044), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2054), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -58960,22 +58960,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -59006,9 +59006,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [295] = { - [sym_import] = STATE(3604), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2450), + [sym_import] = STATE(3608), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2452), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -59020,14 +59020,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -59038,21 +59038,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), + [sym__type_query_member_expression] = STATE(2880), + [sym__type_query_subscript_expression] = STATE(2882), + [sym__type_query_call_expression] = STATE(2925), + [sym__type_query_instantiation_expression] = STATE(3044), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2056), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -59067,22 +59067,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -59113,8 +59113,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [296] = { - [sym_import] = STATE(3615), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3617), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2108), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -59129,12 +59129,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -59145,21 +59145,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym__type_query_member_expression] = STATE(2882), - [sym__type_query_subscript_expression] = STATE(2880), - [sym__type_query_call_expression] = STATE(2924), - [sym__type_query_instantiation_expression] = STATE(2985), + [sym__type_query_member_expression] = STATE(2880), + [sym__type_query_subscript_expression] = STATE(2882), + [sym__type_query_call_expression] = STATE(2925), + [sym__type_query_instantiation_expression] = STATE(3044), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2058), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -59174,22 +59174,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -59220,50 +59220,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [297] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1926), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5433), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5148), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -59279,22 +59279,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -59326,9 +59326,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [298] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -59340,14 +59340,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -59358,50 +59358,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_pattern] = STATE(3928), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -59432,9 +59432,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [299] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_empty_statement] = STATE(314), - [sym_parenthesized_expression] = STATE(1324), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(2175), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -59447,36 +59447,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5642), + [sym_sequence_expression] = STATE(5656), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -59492,22 +59492,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -59538,9 +59538,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [300] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -59552,14 +59552,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -59570,50 +59570,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(3920), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(3917), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -59644,10 +59644,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [301] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_empty_statement] = STATE(306), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2301), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2302), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -59659,36 +59659,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5656), + [sym_sequence_expression] = STATE(5645), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -59704,22 +59704,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -59750,9 +59750,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [302] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -59764,14 +59764,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -59782,50 +59782,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4235), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4234), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -59856,9 +59856,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [303] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -59870,14 +59870,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), + [sym_member_expression] = STATE(1284), + [sym_subscript_expression] = STATE(1284), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3739), [sym_ternary_expression] = STATE(1652), @@ -59888,50 +59888,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_pattern] = STATE(4085), - [sym_rest_pattern] = STATE(3605), - [sym_non_null_expression] = STATE(1302), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_pattern] = STATE(4086), + [sym_rest_pattern] = STATE(3606), + [sym_non_null_expression] = STATE(1284), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(701), [anon_sym_export] = ACTIONS(115), [anon_sym_type] = ACTIONS(115), [anon_sym_namespace] = ACTIONS(124), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(115), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(155), - [anon_sym_function] = ACTIONS(157), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(711), - [anon_sym_using] = ACTIONS(165), - [anon_sym_DOT_DOT_DOT] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -59962,10 +59962,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [304] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_empty_statement] = STATE(313), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2341), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2342), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -59977,14 +59977,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -59996,17 +59996,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -60022,22 +60022,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -60068,10 +60068,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [305] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_empty_statement] = STATE(309), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2342), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2343), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -60083,14 +60083,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -60102,17 +60102,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -60128,22 +60128,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -60174,30 +60174,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [306] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2338), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2340), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -60207,17 +60207,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -60233,22 +60233,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -60279,50 +60279,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [307] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2149), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2159), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5716), + [sym_sequence_expression] = STATE(5484), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -60338,22 +60338,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -60384,30 +60384,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [308] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2283), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2284), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -60417,17 +60417,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -60443,22 +60443,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -60489,50 +60489,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [309] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2284), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2285), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5764), + [sym_sequence_expression] = STATE(5765), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -60548,22 +60548,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -60594,50 +60594,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [310] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2286), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2287), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5776), + [sym_sequence_expression] = STATE(5777), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -60653,22 +60653,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -60699,30 +60699,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [311] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2337), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2339), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -60732,17 +60732,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -60758,22 +60758,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -60804,30 +60804,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [312] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1449), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5016), + [sym_object_pattern] = STATE(5015), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5016), + [sym_array_pattern] = STATE(5015), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1449), [sym_subscript_expression] = STATE(1449), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5016), + [sym__destructuring_pattern] = STATE(5015), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -60836,8 +60836,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1449), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -60845,40 +60845,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2084), [anon_sym_export] = ACTIONS(2086), [anon_sym_type] = ACTIONS(2086), [anon_sym_namespace] = ACTIONS(2088), [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_var] = ACTIONS(2090), [anon_sym_let] = ACTIONS(2092), [anon_sym_const] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1964), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(2096), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2098), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -60909,50 +60909,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [313] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(2281), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5724), + [sym_sequence_expression] = STATE(5725), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -60968,22 +60968,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -61014,50 +61014,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [314] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2300), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2301), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5625), + [sym_sequence_expression] = STATE(5611), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -61073,22 +61073,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -61119,9 +61119,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [315] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1324), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1763), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -61134,14 +61134,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -61152,17 +61152,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -61177,22 +61177,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -61223,50 +61223,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [316] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(2146), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5518), + [sym_sequence_expression] = STATE(5542), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -61281,22 +61281,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -61327,50 +61327,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [317] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1827), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5880), + [sym_sequence_expression] = STATE(5644), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -61385,22 +61385,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -61431,50 +61431,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [318] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2325), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2190), + [sym_import] = STATE(3514), + [sym_statement_block] = STATE(2326), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2191), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -61489,8 +61489,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -61498,13 +61496,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -61535,9 +61535,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [319] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2194), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2195), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -61549,36 +61549,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5729), + [sym_sequence_expression] = STATE(5508), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -61593,22 +61593,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -61639,9 +61639,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [320] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2297), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2298), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -61653,36 +61653,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5487), + [sym_sequence_expression] = STATE(5496), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -61697,22 +61697,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -61743,50 +61743,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [321] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2121), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2205), + [sym_import] = STATE(3514), + [sym_statement_block] = STATE(2122), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2206), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -61801,8 +61801,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -61810,13 +61808,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -61847,50 +61847,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [322] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2298), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2299), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5513), + [sym_sequence_expression] = STATE(5509), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -61905,22 +61905,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -61951,50 +61951,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [323] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2147), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2152), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5580), + [sym_sequence_expression] = STATE(5598), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -62009,22 +62009,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -62055,50 +62055,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [324] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_statement_block] = STATE(2235), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2207), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2208), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -62113,8 +62113,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -62122,13 +62120,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -62159,50 +62159,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [325] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_statement_block] = STATE(2238), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2208), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2209), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -62217,8 +62217,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -62226,13 +62224,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -62263,50 +62263,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [326] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_statement_block] = STATE(2239), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2209), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2210), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -62321,8 +62321,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -62330,13 +62328,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -62367,8 +62367,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [327] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(2355), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -62381,36 +62381,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5860), + [sym_sequence_expression] = STATE(5766), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -62425,22 +62425,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -62471,50 +62471,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [328] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2299), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2300), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5600), + [sym_sequence_expression] = STATE(5587), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -62529,22 +62529,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -62575,50 +62575,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [329] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2121), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_statement_block] = STATE(2122), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1829), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -62633,22 +62633,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -62679,31 +62679,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [330] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1381), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(2045), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -62712,17 +62712,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -62737,22 +62737,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -62783,9 +62783,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [331] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2214), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2215), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -62797,36 +62797,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5639), + [sym_sequence_expression] = STATE(5620), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -62841,22 +62841,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -62887,31 +62887,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [332] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1381), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1890), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -62920,17 +62920,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -62945,22 +62945,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -62991,31 +62991,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [333] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1913), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1914), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -63024,17 +63024,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -63049,22 +63049,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -63095,9 +63095,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [334] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2605), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2603), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -63111,12 +63111,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -63127,18 +63127,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_mapped_type_clause] = STATE(5723), + [sym_mapped_type_clause] = STATE(5623), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2110), [anon_sym_export] = ACTIONS(2112), [anon_sym_type] = ACTIONS(2112), @@ -63153,22 +63153,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(2116), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2118), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -63199,50 +63199,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [335] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1866), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5556), + [sym_sequence_expression] = STATE(5581), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -63257,22 +63257,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -63303,50 +63303,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [336] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_statement_block] = STATE(2235), - [sym_parenthesized_expression] = STATE(1353), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1816), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -63361,22 +63361,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -63407,9 +63407,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [337] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1324), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1742), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -63422,14 +63422,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -63440,17 +63440,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -63465,22 +63465,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -63511,9 +63511,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [338] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1324), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1746), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -63526,14 +63526,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -63544,17 +63544,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -63569,22 +63569,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -63615,9 +63615,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [339] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1324), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1759), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -63630,14 +63630,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -63648,17 +63648,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -63673,22 +63673,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -63719,9 +63719,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [340] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1324), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1761), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -63734,14 +63734,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -63752,17 +63752,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -63777,22 +63777,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -63823,9 +63823,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [341] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1324), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1762), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -63838,14 +63838,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -63856,17 +63856,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -63881,22 +63881,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -63927,50 +63927,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [342] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_statement_block] = STATE(2238), - [sym_parenthesized_expression] = STATE(1353), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1818), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -63985,22 +63985,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -64031,50 +64031,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [343] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_statement_block] = STATE(2239), - [sym_parenthesized_expression] = STATE(1353), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1819), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -64089,22 +64089,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -64135,31 +64135,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [344] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1381), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1927), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -64168,17 +64168,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -64193,22 +64193,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -64239,50 +64239,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [345] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1923), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_sequence_expression] = STATE(5163), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_sequence_expression] = STATE(5182), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -64297,22 +64297,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -64343,50 +64343,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [346] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_statement_block] = STATE(2296), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1838), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -64401,8 +64401,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -64411,12 +64409,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -64447,50 +64447,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [347] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2325), + [sym_import] = STATE(3514), + [sym_statement_block] = STATE(2326), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1843), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -64505,8 +64505,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -64515,12 +64513,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -64551,50 +64551,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [348] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2121), + [sym_import] = STATE(3514), + [sym_statement_block] = STATE(2122), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1856), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -64609,8 +64609,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -64619,12 +64617,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -64655,50 +64655,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [349] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_statement_block] = STATE(2235), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1858), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -64713,8 +64713,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -64723,12 +64721,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -64759,50 +64759,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [350] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_statement_block] = STATE(2238), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1859), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -64817,8 +64817,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -64827,12 +64825,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -64863,50 +64863,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [351] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_statement_block] = STATE(2239), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1860), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -64921,8 +64921,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -64931,12 +64929,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -64967,31 +64967,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [352] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1381), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1930), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -65000,17 +65000,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -65025,22 +65025,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -65071,9 +65071,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [353] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2605), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2603), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -65087,12 +65087,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -65103,18 +65103,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_mapped_type_clause] = STATE(5649), + [sym_mapped_type_clause] = STATE(5619), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2120), [anon_sym_export] = ACTIONS(2122), [anon_sym_type] = ACTIONS(2122), @@ -65129,22 +65129,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(2126), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2128), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -65175,31 +65175,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [354] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1659), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2554), + [sym_expression] = STATE(2534), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -65208,8 +65208,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -65217,38 +65217,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -65279,9 +65279,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [355] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2352), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), + [sym_expression] = STATE(2336), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -65295,12 +65295,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -65311,18 +65311,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), - [sym__extends_clause_single] = STATE(4888), + [sym__extends_clause_single] = STATE(4886), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -65337,22 +65337,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -65383,31 +65383,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [356] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1670), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2558), + [sym_expression] = STATE(2542), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -65416,8 +65416,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -65425,38 +65425,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -65487,31 +65487,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [357] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1674), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2580), + [sym_expression] = STATE(2571), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -65520,8 +65520,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -65529,38 +65529,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -65591,31 +65591,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [358] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1682), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2588), + [sym_expression] = STATE(2575), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -65624,8 +65624,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -65633,38 +65633,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -65695,50 +65695,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [359] = { - [sym_import] = STATE(3513), - [sym_statement_block] = STATE(2325), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_statement_block] = STATE(2326), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1794), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -65753,22 +65753,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -65799,31 +65799,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [360] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1685), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2595), + [sym_expression] = STATE(2578), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -65832,8 +65832,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -65841,38 +65841,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -65903,50 +65903,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [361] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_statement_block] = STATE(2296), - [sym_parenthesized_expression] = STATE(1353), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1869), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -65961,22 +65961,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -66007,8 +66007,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [362] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(2265), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -66021,14 +66021,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -66040,17 +66040,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -66065,22 +66065,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -66111,9 +66111,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [363] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1391), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2083), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -66128,12 +66128,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -66144,17 +66144,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -66169,22 +66169,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -66215,9 +66215,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [364] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1391), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2087), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -66232,12 +66232,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -66248,17 +66248,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -66273,22 +66273,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -66319,9 +66319,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [365] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1391), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2100), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -66336,12 +66336,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -66352,17 +66352,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -66377,22 +66377,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -66423,9 +66423,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [366] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1391), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2102), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -66440,12 +66440,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -66456,17 +66456,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -66481,22 +66481,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -66527,9 +66527,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [367] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1391), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2103), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -66544,12 +66544,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -66560,17 +66560,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -66585,22 +66585,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -66631,9 +66631,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [368] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1391), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2104), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -66648,12 +66648,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -66664,17 +66664,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -66689,22 +66689,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -66735,9 +66735,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [369] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), - [sym_expression] = STATE(2352), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), + [sym_expression] = STATE(2336), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -66751,12 +66751,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -66767,18 +66767,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), - [sym__extends_clause_single] = STATE(4461), + [sym__extends_clause_single] = STATE(4448), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -66793,22 +66793,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -66839,10 +66839,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [370] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2365), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2368), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -66854,14 +66854,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -66872,17 +66872,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -66897,22 +66897,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -66943,10 +66943,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [371] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2369), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2372), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -66958,14 +66958,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -66976,17 +66976,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -67001,22 +67001,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -67047,217 +67047,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [372] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2382), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), - [sym_html_comment] = ACTIONS(5), - }, - [373] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2384), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5827), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5827), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5827), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1361), - [anon_sym_type] = ACTIONS(1361), - [anon_sym_namespace] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1369), - [anon_sym_yield] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1525), - [anon_sym_using] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1383), - [anon_sym_delete] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1387), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1361), - [anon_sym_set] = ACTIONS(1361), - [anon_sym_declare] = ACTIONS(1361), - [anon_sym_public] = ACTIONS(1361), - [anon_sym_private] = ACTIONS(1361), - [anon_sym_protected] = ACTIONS(1361), - [anon_sym_override] = ACTIONS(1361), - [anon_sym_module] = ACTIONS(1361), - [anon_sym_any] = ACTIONS(1361), - [anon_sym_number] = ACTIONS(1361), - [anon_sym_boolean] = ACTIONS(1361), - [anon_sym_string] = ACTIONS(1361), - [anon_sym_symbol] = ACTIONS(1361), - [anon_sym_object] = ACTIONS(1361), - [sym_html_comment] = ACTIONS(5), - }, - [374] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1457), + [sym_parenthesized_expression] = STATE(1455), [sym_expression] = STATE(2385), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -67270,14 +67062,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -67288,17 +67080,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -67313,22 +67105,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(827), + [sym_number] = ACTIONS(719), + [sym_private_property_identifier] = ACTIONS(1387), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1527), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_readonly] = ACTIONS(1361), + [anon_sym_get] = ACTIONS(1361), + [anon_sym_set] = ACTIONS(1361), + [anon_sym_declare] = ACTIONS(1361), + [anon_sym_public] = ACTIONS(1361), + [anon_sym_private] = ACTIONS(1361), + [anon_sym_protected] = ACTIONS(1361), + [anon_sym_override] = ACTIONS(1361), + [anon_sym_module] = ACTIONS(1361), + [anon_sym_any] = ACTIONS(1361), + [anon_sym_number] = ACTIONS(1361), + [anon_sym_boolean] = ACTIONS(1361), + [anon_sym_string] = ACTIONS(1361), + [anon_sym_symbol] = ACTIONS(1361), + [anon_sym_object] = ACTIONS(1361), + [sym_html_comment] = ACTIONS(5), + }, + [373] = { + [sym_import] = STATE(3541), + [sym_statement_block] = STATE(1682), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2387), + [sym_primary_expression] = STATE(1512), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1691), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1691), + [sym_array_pattern] = STATE(5827), + [sym_glimmer_template] = STATE(1652), + [sym_class] = STATE(1691), + [sym_function_expression] = STATE(1691), + [sym_generator_function] = STATE(1691), + [sym_arrow_function] = STATE(1691), + [sym__call_signature] = STATE(5740), + [sym_call_expression] = STATE(1691), + [sym_new_expression] = STATE(1619), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3023), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5827), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1691), + [sym_template_string] = STATE(1691), + [sym_regex] = STATE(1691), + [sym_meta_property] = STATE(1691), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(1521), + [anon_sym_export] = ACTIONS(1361), + [anon_sym_type] = ACTIONS(1361), + [anon_sym_namespace] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_typeof] = ACTIONS(1383), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1361), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1369), + [anon_sym_yield] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(847), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1373), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1525), + [anon_sym_using] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_void] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(827), + [sym_number] = ACTIONS(719), + [sym_private_property_identifier] = ACTIONS(1387), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1527), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1361), + [anon_sym_readonly] = ACTIONS(1361), + [anon_sym_get] = ACTIONS(1361), + [anon_sym_set] = ACTIONS(1361), + [anon_sym_declare] = ACTIONS(1361), + [anon_sym_public] = ACTIONS(1361), + [anon_sym_private] = ACTIONS(1361), + [anon_sym_protected] = ACTIONS(1361), + [anon_sym_override] = ACTIONS(1361), + [anon_sym_module] = ACTIONS(1361), + [anon_sym_any] = ACTIONS(1361), + [anon_sym_number] = ACTIONS(1361), + [anon_sym_boolean] = ACTIONS(1361), + [anon_sym_string] = ACTIONS(1361), + [anon_sym_symbol] = ACTIONS(1361), + [anon_sym_object] = ACTIONS(1361), + [sym_html_comment] = ACTIONS(5), + }, + [374] = { + [sym_import] = STATE(3541), + [sym_statement_block] = STATE(1684), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2388), + [sym_primary_expression] = STATE(1512), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1691), + [sym_object_pattern] = STATE(5827), + [sym_array] = STATE(1691), + [sym_array_pattern] = STATE(5827), + [sym_glimmer_template] = STATE(1652), + [sym_class] = STATE(1691), + [sym_function_expression] = STATE(1691), + [sym_generator_function] = STATE(1691), + [sym_arrow_function] = STATE(1691), + [sym__call_signature] = STATE(5740), + [sym_call_expression] = STATE(1691), + [sym_new_expression] = STATE(1619), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3023), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5827), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1691), + [sym_template_string] = STATE(1691), + [sym_regex] = STATE(1691), + [sym_meta_property] = STATE(1691), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(591), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(1521), + [anon_sym_export] = ACTIONS(1361), + [anon_sym_type] = ACTIONS(1361), + [anon_sym_namespace] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_typeof] = ACTIONS(1383), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1361), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1369), + [anon_sym_yield] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(847), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1373), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1525), + [anon_sym_using] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(1367), + [anon_sym_void] = ACTIONS(1383), + [anon_sym_delete] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -67359,10 +67359,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [375] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2386), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2389), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -67374,14 +67374,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -67392,17 +67392,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -67417,22 +67417,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -67463,10 +67463,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [376] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2392), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2395), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -67480,12 +67480,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -67496,17 +67496,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -67521,22 +67521,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -67567,10 +67567,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [377] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2396), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2399), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -67584,12 +67584,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -67600,17 +67600,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -67625,22 +67625,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -67671,10 +67671,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [378] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2409), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2412), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -67688,12 +67688,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -67704,17 +67704,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -67729,22 +67729,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -67775,10 +67775,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [379] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2411), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2414), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -67792,12 +67792,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -67808,17 +67808,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -67833,22 +67833,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -67879,10 +67879,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [380] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2412), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2415), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -67896,12 +67896,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -67912,17 +67912,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -67937,22 +67937,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -67983,10 +67983,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [381] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2413), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2416), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -68000,12 +68000,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -68016,17 +68016,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -68041,22 +68041,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -68087,10 +68087,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [382] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1659), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2491), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2492), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -68104,12 +68104,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -68120,17 +68120,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -68145,22 +68145,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -68191,10 +68191,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [383] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1670), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2495), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2496), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -68208,12 +68208,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -68224,17 +68224,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -68249,22 +68249,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -68295,10 +68295,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [384] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1674), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2508), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2509), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -68312,12 +68312,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -68328,17 +68328,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -68353,22 +68353,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -68399,113 +68399,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [385] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1682), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2510), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5839), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5839), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5541), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5839), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1407), - [anon_sym_type] = ACTIONS(1407), - [anon_sym_namespace] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(1429), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1415), - [anon_sym_yield] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(819), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_using] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1413), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_delete] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1407), - [anon_sym_readonly] = ACTIONS(1407), - [anon_sym_get] = ACTIONS(1407), - [anon_sym_set] = ACTIONS(1407), - [anon_sym_declare] = ACTIONS(1407), - [anon_sym_public] = ACTIONS(1407), - [anon_sym_private] = ACTIONS(1407), - [anon_sym_protected] = ACTIONS(1407), - [anon_sym_override] = ACTIONS(1407), - [anon_sym_module] = ACTIONS(1407), - [anon_sym_any] = ACTIONS(1407), - [anon_sym_number] = ACTIONS(1407), - [anon_sym_boolean] = ACTIONS(1407), - [anon_sym_string] = ACTIONS(1407), - [anon_sym_symbol] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(1407), - [sym_html_comment] = ACTIONS(5), - }, - [386] = { - [sym_import] = STATE(3542), - [sym_statement_block] = STATE(1684), - [sym_parenthesized_expression] = STATE(1461), + [sym_parenthesized_expression] = STATE(1458), [sym_expression] = STATE(2511), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -68520,12 +68416,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -68536,17 +68432,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -68561,22 +68457,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(827), + [sym_number] = ACTIONS(719), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_readonly] = ACTIONS(1407), + [anon_sym_get] = ACTIONS(1407), + [anon_sym_set] = ACTIONS(1407), + [anon_sym_declare] = ACTIONS(1407), + [anon_sym_public] = ACTIONS(1407), + [anon_sym_private] = ACTIONS(1407), + [anon_sym_protected] = ACTIONS(1407), + [anon_sym_override] = ACTIONS(1407), + [anon_sym_module] = ACTIONS(1407), + [anon_sym_any] = ACTIONS(1407), + [anon_sym_number] = ACTIONS(1407), + [anon_sym_boolean] = ACTIONS(1407), + [anon_sym_string] = ACTIONS(1407), + [anon_sym_symbol] = ACTIONS(1407), + [anon_sym_object] = ACTIONS(1407), + [sym_html_comment] = ACTIONS(5), + }, + [386] = { + [sym_import] = STATE(3541), + [sym_statement_block] = STATE(1684), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2512), + [sym_primary_expression] = STATE(1512), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1691), + [sym_object_pattern] = STATE(5839), + [sym_array] = STATE(1691), + [sym_array_pattern] = STATE(5839), + [sym_glimmer_template] = STATE(1652), + [sym_class] = STATE(1691), + [sym_function_expression] = STATE(1691), + [sym_generator_function] = STATE(1691), + [sym_arrow_function] = STATE(1691), + [sym__call_signature] = STATE(5541), + [sym_call_expression] = STATE(1691), + [sym_new_expression] = STATE(1619), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3030), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5839), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1691), + [sym_template_string] = STATE(1691), + [sym_regex] = STATE(1691), + [sym_meta_property] = STATE(1691), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(644), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(1513), + [anon_sym_export] = ACTIONS(1407), + [anon_sym_type] = ACTIONS(1407), + [anon_sym_namespace] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(2130), + [anon_sym_typeof] = ACTIONS(1429), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1415), + [anon_sym_yield] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(819), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1419), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1517), + [anon_sym_using] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_void] = ACTIONS(1429), + [anon_sym_delete] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -68607,10 +68607,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [387] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2512), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2513), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -68624,12 +68624,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -68640,17 +68640,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -68665,22 +68665,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -68711,31 +68711,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [388] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1685), - [sym_parenthesized_expression] = STATE(1381), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1933), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -68744,17 +68744,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -68769,22 +68769,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -68815,50 +68815,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [389] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2139), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2142), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5871), + [sym_sequence_expression] = STATE(5671), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -68873,22 +68873,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -68919,50 +68919,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [390] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(2143), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5615), + [sym_sequence_expression] = STATE(5591), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -68977,22 +68977,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -69023,50 +69023,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [391] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2144), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2145), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), [sym_update_expression] = STATE(1652), - [sym_sequence_expression] = STATE(5655), + [sym_sequence_expression] = STATE(5732), [sym_string] = STATE(1691), [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -69081,22 +69081,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -69127,30 +69127,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [392] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2336), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2338), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -69160,17 +69160,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -69185,22 +69185,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -69231,9 +69231,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [393] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2319), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2320), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -69245,14 +69245,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -69264,17 +69264,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -69289,22 +69289,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -69335,50 +69335,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [394] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_statement_block] = STATE(2296), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2183), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2184), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -69393,8 +69393,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -69402,13 +69400,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -69439,31 +69439,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [395] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_statement_block] = STATE(1684), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2594), + [sym_expression] = STATE(2577), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -69472,8 +69472,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -69481,38 +69481,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -69543,9 +69543,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [396] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2575), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2579), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -69557,14 +69557,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -69575,17 +69575,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -69600,22 +69600,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -69646,30 +69646,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [397] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1888), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -69678,17 +69678,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -69703,22 +69703,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -69749,30 +69749,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [398] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1892), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -69781,17 +69781,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -69806,22 +69806,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -69852,30 +69852,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [399] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1895), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -69884,17 +69884,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -69909,22 +69909,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -69955,30 +69955,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [400] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2489), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2440), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -69987,17 +69987,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -70012,22 +70012,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -70058,30 +70058,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [401] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1897), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1896), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -70090,17 +70090,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -70115,22 +70115,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -70161,30 +70161,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [402] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1898), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -70193,17 +70193,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -70218,22 +70218,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -70264,30 +70264,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [403] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1899), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -70296,17 +70296,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -70321,22 +70321,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -70367,30 +70367,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [404] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1900), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -70399,17 +70399,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -70424,22 +70424,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -70470,30 +70470,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [405] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1901), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -70502,17 +70502,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -70527,22 +70527,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -70573,30 +70573,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [406] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1902), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -70605,17 +70605,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -70630,22 +70630,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -70676,30 +70676,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [407] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1903), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -70708,17 +70708,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -70733,22 +70733,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -70779,30 +70779,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [408] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1904), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -70811,17 +70811,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -70836,22 +70836,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -70882,30 +70882,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [409] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1906), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1908), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -70914,17 +70914,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -70939,22 +70939,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -70985,30 +70985,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [410] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1908), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1909), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -71017,17 +71017,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -71042,22 +71042,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -71088,30 +71088,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [411] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1914), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1915), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -71120,17 +71120,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -71145,22 +71145,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -71191,30 +71191,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [412] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2486), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2524), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -71223,17 +71223,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -71248,22 +71248,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -71294,49 +71294,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [413] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1944), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -71351,22 +71351,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -71397,152 +71397,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [414] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), - [sym_html_comment] = ACTIONS(5), - }, - [415] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(2007), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -71557,22 +71454,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -71602,31 +71499,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1443), [sym_html_comment] = ACTIONS(5), }, + [415] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1958), + [sym_primary_expression] = STATE(1512), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1691), + [sym_object_pattern] = STATE(5559), + [sym_array] = STATE(1691), + [sym_array_pattern] = STATE(5559), + [sym_glimmer_template] = STATE(1652), + [sym_class] = STATE(1691), + [sym_function_expression] = STATE(1691), + [sym_generator_function] = STATE(1691), + [sym_arrow_function] = STATE(1691), + [sym__call_signature] = STATE(5803), + [sym_call_expression] = STATE(1691), + [sym_new_expression] = STATE(1619), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3041), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5559), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1691), + [sym_template_string] = STATE(1691), + [sym_regex] = STATE(1691), + [sym_meta_property] = STATE(1691), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(635), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(1489), + [anon_sym_export] = ACTIONS(1275), + [anon_sym_type] = ACTIONS(1275), + [anon_sym_namespace] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(763), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_await] = ACTIONS(743), + [anon_sym_yield] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(847), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1493), + [anon_sym_using] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_void] = ACTIONS(763), + [anon_sym_delete] = ACTIONS(763), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(827), + [sym_number] = ACTIONS(719), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_readonly] = ACTIONS(1275), + [anon_sym_get] = ACTIONS(1275), + [anon_sym_set] = ACTIONS(1275), + [anon_sym_declare] = ACTIONS(1275), + [anon_sym_public] = ACTIONS(1275), + [anon_sym_private] = ACTIONS(1275), + [anon_sym_protected] = ACTIONS(1275), + [anon_sym_override] = ACTIONS(1275), + [anon_sym_module] = ACTIONS(1275), + [anon_sym_any] = ACTIONS(1275), + [anon_sym_number] = ACTIONS(1275), + [anon_sym_boolean] = ACTIONS(1275), + [anon_sym_string] = ACTIONS(1275), + [anon_sym_symbol] = ACTIONS(1275), + [anon_sym_object] = ACTIONS(1275), + [sym_html_comment] = ACTIONS(5), + }, [416] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1959), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1960), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -71635,17 +71635,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -71660,22 +71660,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -71706,30 +71706,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [417] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1960), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2604), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5835), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5835), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -71738,120 +71738,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), + [sym_type_arguments] = STATE(617), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(1529), + [anon_sym_export] = ACTIONS(1081), + [anon_sym_type] = ACTIONS(1081), + [anon_sym_namespace] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(1107), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_let] = ACTIONS(1081), + [anon_sym_BANG] = ACTIONS(1089), [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(1089), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), + [sym_undefined] = ACTIONS(1535), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1081), + [anon_sym_readonly] = ACTIONS(1081), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1081), + [anon_sym_declare] = ACTIONS(1081), + [anon_sym_public] = ACTIONS(1081), + [anon_sym_private] = ACTIONS(1081), + [anon_sym_protected] = ACTIONS(1081), + [anon_sym_override] = ACTIONS(1081), + [anon_sym_module] = ACTIONS(1081), + [anon_sym_any] = ACTIONS(1081), + [anon_sym_number] = ACTIONS(1081), + [anon_sym_boolean] = ACTIONS(1081), + [anon_sym_string] = ACTIONS(1081), + [anon_sym_symbol] = ACTIONS(1081), + [anon_sym_object] = ACTIONS(1081), [sym_html_comment] = ACTIONS(5), }, [418] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1945), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1826), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -71866,25 +71866,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(91), + [sym_number] = ACTIONS(2132), [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), @@ -71912,49 +71912,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [419] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1826), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1945), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -71969,25 +71969,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), - [sym_number] = ACTIONS(2132), + [sym_number] = ACTIONS(91), [sym_private_property_identifier] = ACTIONS(93), [sym_this] = ACTIONS(95), [sym_super] = ACTIONS(95), @@ -72015,49 +72015,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [420] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1946), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -72072,22 +72072,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -72118,49 +72118,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [421] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1947), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -72175,22 +72175,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -72221,30 +72221,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [422] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(2040), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -72253,17 +72253,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -72278,22 +72278,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -72324,49 +72324,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [423] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(2170), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(2171), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -72381,22 +72381,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -72427,30 +72427,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [424] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1924), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -72459,17 +72459,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -72484,22 +72484,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -72530,30 +72530,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [425] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1889), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -72562,17 +72562,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -72587,22 +72587,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -72633,9 +72633,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [426] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2596), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2598), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -72647,14 +72647,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -72665,17 +72665,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -72690,22 +72690,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -72736,49 +72736,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [427] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1836), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -72793,22 +72793,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -72839,49 +72839,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [428] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), - [sym_expression] = STATE(1896), + [sym_expression] = STATE(1897), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -72896,8 +72896,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -72906,12 +72904,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -72942,30 +72942,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [429] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1924), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -72974,17 +72974,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -72999,22 +72999,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(2134), @@ -73045,9 +73045,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [430] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2187), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2188), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -73059,14 +73059,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -73077,17 +73077,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -73102,22 +73102,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -73148,49 +73148,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [431] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1802), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1803), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -73205,22 +73205,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -73251,49 +73251,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [432] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(2354), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -73308,22 +73308,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -73354,49 +73354,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [433] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1820), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -73411,22 +73411,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -73457,49 +73457,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [434] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1821), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -73514,22 +73514,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -73560,9 +73560,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [435] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2593), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2595), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -73576,12 +73576,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -73592,17 +73592,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -73617,22 +73617,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -73663,49 +73663,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [436] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1783), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -73720,22 +73720,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -73766,30 +73766,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [437] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2543), + [sym_expression] = STATE(2547), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -73798,8 +73798,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -73807,38 +73807,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(2136), @@ -73869,49 +73869,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [438] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(2280), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -73926,22 +73926,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -73972,30 +73972,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [439] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2543), + [sym_expression] = STATE(2547), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -74004,8 +74004,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -74013,38 +74013,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(2134), @@ -74075,30 +74075,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [440] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(2422), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(2425), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -74107,17 +74107,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -74132,22 +74132,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -74178,9 +74178,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [441] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2615), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -74192,14 +74192,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1281), - [sym_subscript_expression] = STATE(1281), + [sym_member_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(3727), [sym_ternary_expression] = STATE(1652), @@ -74210,47 +74210,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1281), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1286), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2138), [anon_sym_export] = ACTIONS(2140), [anon_sym_type] = ACTIONS(2140), [anon_sym_namespace] = ACTIONS(2142), [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(1671), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(2144), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2146), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -74281,8 +74281,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [442] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1778), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -74295,14 +74295,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -74313,17 +74313,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -74338,22 +74338,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(2150), @@ -74384,30 +74384,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [443] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2543), + [sym_expression] = STATE(2547), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -74416,8 +74416,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -74425,38 +74425,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(2150), @@ -74487,49 +74487,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [444] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1870), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -74544,22 +74544,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -74590,9 +74590,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [445] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2440), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2442), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -74604,14 +74604,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -74622,17 +74622,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -74647,22 +74647,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -74693,9 +74693,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [446] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2441), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2443), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -74707,14 +74707,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -74725,17 +74725,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -74750,22 +74750,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -74796,8 +74796,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [447] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1778), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -74810,14 +74810,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -74828,17 +74828,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -74853,22 +74853,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(2152), @@ -74899,30 +74899,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [448] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1469), - [sym_expression] = STATE(2615), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1471), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5578), + [sym_object_pattern] = STATE(5571), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5578), + [sym_array_pattern] = STATE(5571), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1469), - [sym_subscript_expression] = STATE(1469), + [sym_member_expression] = STATE(1471), + [sym_subscript_expression] = STATE(1471), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5578), + [sym__destructuring_pattern] = STATE(5571), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -74931,47 +74931,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1469), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1471), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2154), [anon_sym_export] = ACTIONS(2156), [anon_sym_type] = ACTIONS(2156), [anon_sym_namespace] = ACTIONS(2158), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2162), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -75002,49 +75002,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [449] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1830), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -75059,8 +75059,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -75069,12 +75067,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -75105,49 +75105,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [450] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2181), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2182), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -75162,8 +75162,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -75171,13 +75169,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -75208,49 +75208,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [451] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1804), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -75265,22 +75265,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -75311,49 +75311,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [452] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2184), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2185), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -75368,8 +75368,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -75377,13 +75375,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -75414,49 +75414,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [453] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2185), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2186), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -75471,8 +75471,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -75480,13 +75478,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -75517,49 +75517,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [454] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2189), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2190), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -75574,8 +75574,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -75583,13 +75581,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -75620,49 +75620,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [455] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1796), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -75677,22 +75677,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -75723,49 +75723,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [456] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2191), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2192), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -75780,8 +75780,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -75789,13 +75787,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -75826,9 +75826,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [457] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2581), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2583), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -75840,14 +75840,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -75858,17 +75858,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -75883,22 +75883,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -75929,49 +75929,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [458] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2193), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2194), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -75986,8 +75986,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -75995,13 +75993,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -76032,49 +76032,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [459] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2195), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2196), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -76089,8 +76089,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -76098,13 +76096,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -76135,49 +76135,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [460] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2196), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2197), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -76192,8 +76192,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -76201,13 +76199,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -76238,49 +76238,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [461] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2197), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2198), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -76295,8 +76295,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -76304,13 +76302,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -76341,49 +76341,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [462] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2198), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2199), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -76398,8 +76398,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -76407,13 +76405,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -76444,49 +76444,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [463] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2199), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2200), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -76501,8 +76501,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -76510,13 +76508,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -76547,49 +76547,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [464] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2200), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2201), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -76604,8 +76604,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -76613,13 +76611,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -76650,49 +76650,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [465] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2201), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2202), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -76707,8 +76707,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -76716,13 +76714,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -76753,49 +76753,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [466] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2202), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2203), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -76810,8 +76810,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -76819,13 +76817,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -76856,49 +76856,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [467] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2203), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2204), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -76913,8 +76913,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -76922,13 +76920,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -76959,49 +76959,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [468] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2204), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2205), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -77016,8 +77016,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -77025,13 +77023,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -77062,49 +77062,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [469] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2206), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2207), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -77119,8 +77119,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -77128,13 +77126,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -77165,9 +77165,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [470] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2605), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2603), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -77181,12 +77181,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -77197,17 +77197,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -77222,22 +77222,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -77268,49 +77268,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [471] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1805), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -77325,22 +77325,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -77371,49 +77371,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [472] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1806), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -77428,22 +77428,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -77474,49 +77474,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [473] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1807), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -77531,22 +77531,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -77577,49 +77577,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [474] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2210), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2211), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -77634,8 +77634,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -77643,13 +77641,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -77680,49 +77680,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [475] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2211), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2212), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -77737,8 +77737,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -77746,13 +77744,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -77783,30 +77783,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [476] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1924), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -77815,17 +77815,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -77840,22 +77840,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(2136), @@ -77886,49 +77886,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [477] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1808), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -77943,22 +77943,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -77989,9 +77989,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [478] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2323), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2324), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -78003,14 +78003,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -78021,17 +78021,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -78046,22 +78046,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -78092,49 +78092,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [479] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2215), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2216), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -78149,8 +78149,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -78158,13 +78156,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -78195,49 +78195,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [480] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1826), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -78252,22 +78252,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -78298,30 +78298,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [481] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2546), + [sym_expression] = STATE(2550), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -78330,8 +78330,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -78339,38 +78339,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -78401,8 +78401,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [482] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1741), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -78415,14 +78415,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -78433,17 +78433,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -78458,22 +78458,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -78504,8 +78504,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [483] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1743), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -78518,14 +78518,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -78536,17 +78536,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -78561,22 +78561,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -78607,30 +78607,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [484] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1467), - [sym_expression] = STATE(2615), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1473), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5830), + [sym_object_pattern] = STATE(5730), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5830), + [sym_array_pattern] = STATE(5730), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1467), - [sym_subscript_expression] = STATE(1467), + [sym_member_expression] = STATE(1473), + [sym_subscript_expression] = STATE(1473), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5830), + [sym__destructuring_pattern] = STATE(5730), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -78639,47 +78639,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1467), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1473), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2166), [anon_sym_export] = ACTIONS(2168), [anon_sym_type] = ACTIONS(2168), [anon_sym_namespace] = ACTIONS(2170), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2174), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -78710,8 +78710,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [485] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1744), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -78724,14 +78724,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -78742,17 +78742,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -78767,22 +78767,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -78813,8 +78813,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [486] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1745), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -78827,14 +78827,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -78845,17 +78845,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -78870,22 +78870,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -78916,8 +78916,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [487] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1747), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -78930,14 +78930,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -78948,17 +78948,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -78973,22 +78973,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -79019,8 +79019,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [488] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1748), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -79033,14 +79033,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -79051,17 +79051,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -79076,22 +79076,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -79122,8 +79122,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [489] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1795), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -79136,14 +79136,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -79154,17 +79154,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -79179,22 +79179,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -79225,8 +79225,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [490] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1749), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -79239,14 +79239,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -79257,17 +79257,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -79282,22 +79282,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -79328,8 +79328,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [491] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1750), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -79342,14 +79342,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -79360,17 +79360,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -79385,22 +79385,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -79431,8 +79431,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [492] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1751), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -79445,14 +79445,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -79463,17 +79463,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -79488,22 +79488,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -79534,8 +79534,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [493] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1781), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -79548,14 +79548,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -79566,17 +79566,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -79591,22 +79591,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -79637,8 +79637,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [494] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1753), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -79651,14 +79651,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -79669,17 +79669,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -79694,22 +79694,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -79740,8 +79740,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [495] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1754), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -79754,14 +79754,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -79772,17 +79772,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -79797,22 +79797,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -79843,8 +79843,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [496] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1755), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -79857,14 +79857,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -79875,17 +79875,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -79900,22 +79900,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -79946,8 +79946,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [497] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1756), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -79960,14 +79960,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -79978,17 +79978,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -80003,22 +80003,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -80049,8 +80049,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [498] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1757), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -80063,14 +80063,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -80081,17 +80081,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -80106,22 +80106,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -80152,8 +80152,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [499] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1758), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -80166,14 +80166,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -80184,17 +80184,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -80209,22 +80209,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -80255,8 +80255,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [500] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1760), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -80269,14 +80269,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -80287,17 +80287,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -80312,22 +80312,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -80358,9 +80358,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [501] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2472), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2475), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -80372,14 +80372,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -80390,17 +80390,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -80415,22 +80415,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -80461,49 +80461,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [502] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1809), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -80518,22 +80518,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -80564,8 +80564,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [503] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1764), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -80578,14 +80578,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -80596,17 +80596,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -80621,22 +80621,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -80667,8 +80667,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [504] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1765), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -80681,14 +80681,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -80699,17 +80699,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -80724,22 +80724,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -80770,49 +80770,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [505] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), [sym_expression] = STATE(2259), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -80827,8 +80827,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -80836,13 +80834,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(2132), @@ -80873,8 +80873,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [506] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1767), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -80887,14 +80887,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -80905,17 +80905,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -80930,22 +80930,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -80976,8 +80976,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [507] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1778), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -80990,14 +80990,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -81008,17 +81008,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -81033,22 +81033,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -81079,8 +81079,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [508] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1779), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -81093,14 +81093,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -81111,17 +81111,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -81136,22 +81136,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -81182,8 +81182,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [509] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1778), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -81196,14 +81196,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -81214,17 +81214,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -81239,22 +81239,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(2134), @@ -81285,30 +81285,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [510] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1464), - [sym_expression] = STATE(2615), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1466), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5802), + [sym_object_pattern] = STATE(5723), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5802), + [sym_array_pattern] = STATE(5723), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1464), - [sym_subscript_expression] = STATE(1464), + [sym_member_expression] = STATE(1466), + [sym_subscript_expression] = STATE(1466), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5802), + [sym__destructuring_pattern] = STATE(5723), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -81317,47 +81317,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1464), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1466), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2178), [anon_sym_export] = ACTIONS(2180), [anon_sym_type] = ACTIONS(2180), [anon_sym_namespace] = ACTIONS(2182), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2186), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -81388,49 +81388,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [511] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1837), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -81445,8 +81445,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -81455,12 +81453,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -81491,49 +81491,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [512] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1810), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -81548,22 +81548,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -81594,49 +81594,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [513] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1839), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -81651,8 +81651,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -81661,12 +81659,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -81697,49 +81697,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [514] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1840), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -81754,8 +81754,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -81764,12 +81762,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -81800,49 +81800,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [515] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1842), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -81857,8 +81857,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -81867,12 +81865,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -81903,49 +81903,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [516] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1844), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -81960,8 +81960,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -81970,12 +81968,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -82006,9 +82006,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [517] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2538), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2541), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -82020,14 +82020,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -82038,17 +82038,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -82063,22 +82063,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -82109,49 +82109,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [518] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1845), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -82166,8 +82166,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -82176,12 +82174,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -82212,49 +82212,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [519] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1846), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -82269,8 +82269,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -82279,12 +82277,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -82315,49 +82315,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [520] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1847), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -82372,8 +82372,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -82382,12 +82380,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -82418,49 +82418,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [521] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1848), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -82475,8 +82475,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -82485,12 +82483,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -82521,49 +82521,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [522] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1849), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -82578,8 +82578,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -82588,12 +82586,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -82624,49 +82624,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [523] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1850), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -82681,8 +82681,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -82691,12 +82689,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -82727,49 +82727,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [524] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1792), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -82784,22 +82784,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -82830,49 +82830,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [525] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1852), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -82887,8 +82887,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -82897,12 +82895,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -82933,49 +82933,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [526] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1853), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -82990,8 +82990,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -83000,12 +82998,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -83036,49 +83036,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [527] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1854), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -83093,8 +83093,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -83103,12 +83101,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -83139,49 +83139,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [528] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1855), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -83196,8 +83196,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -83206,12 +83204,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -83242,49 +83242,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [529] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1857), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -83299,8 +83299,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -83309,12 +83307,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -83345,49 +83345,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [530] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1811), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -83402,22 +83402,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -83448,49 +83448,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [531] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1861), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -83505,8 +83505,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -83515,12 +83513,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -83551,49 +83551,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [532] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1862), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -83608,8 +83608,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -83618,12 +83616,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -83654,8 +83654,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [533] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1778), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -83668,14 +83668,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -83686,17 +83686,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -83711,22 +83711,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(2136), @@ -83757,49 +83757,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [534] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1812), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -83814,22 +83814,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -83860,49 +83860,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [535] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1863), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -83917,8 +83917,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -83927,12 +83925,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -83963,9 +83963,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [536] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2521), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2522), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -83979,12 +83979,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -83995,17 +83995,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -84020,22 +84020,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -84066,30 +84066,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [537] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2550), + [sym_expression] = STATE(2606), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -84098,8 +84098,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -84107,38 +84107,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -84169,30 +84169,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [538] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2555), + [sym_expression] = STATE(2535), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -84201,8 +84201,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -84210,38 +84210,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -84272,30 +84272,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [539] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2556), + [sym_expression] = STATE(2537), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -84304,8 +84304,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -84313,38 +84313,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -84375,30 +84375,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [540] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2557), + [sym_expression] = STATE(2539), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -84407,8 +84407,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -84416,38 +84416,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -84478,30 +84478,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [541] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2560), + [sym_expression] = STATE(2551), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -84510,8 +84510,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -84519,38 +84519,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -84581,30 +84581,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [542] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2561), + [sym_expression] = STATE(2552), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -84613,8 +84613,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -84622,38 +84622,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -84684,30 +84684,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [543] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2563), + [sym_expression] = STATE(2555), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -84716,8 +84716,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -84725,38 +84725,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -84787,30 +84787,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [544] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2566), + [sym_expression] = STATE(2559), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -84819,8 +84819,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -84828,38 +84828,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -84890,30 +84890,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [545] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2567), + [sym_expression] = STATE(2560), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -84922,8 +84922,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -84931,38 +84931,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -84993,30 +84993,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [546] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2568), + [sym_expression] = STATE(2561), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -85025,8 +85025,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -85034,38 +85034,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -85096,30 +85096,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [547] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2569), + [sym_expression] = STATE(2562), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -85128,8 +85128,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -85137,38 +85137,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -85199,30 +85199,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [548] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2570), + [sym_expression] = STATE(2563), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -85231,8 +85231,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -85240,38 +85240,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -85302,30 +85302,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [549] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2571), + [sym_expression] = STATE(2564), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -85334,8 +85334,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -85343,38 +85343,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -85405,30 +85405,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [550] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2577), + [sym_expression] = STATE(2567), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -85437,8 +85437,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -85446,38 +85446,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -85508,30 +85508,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [551] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), [sym_expression] = STATE(2529), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -85540,8 +85540,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -85549,38 +85549,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -85611,30 +85611,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [552] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2578), + [sym_expression] = STATE(2569), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -85643,8 +85643,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -85652,38 +85652,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -85714,30 +85714,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [553] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2586), + [sym_expression] = STATE(2572), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -85746,8 +85746,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -85755,38 +85755,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -85817,30 +85817,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [554] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2598), + [sym_expression] = STATE(2580), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -85849,8 +85849,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -85858,38 +85858,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -85920,30 +85920,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [555] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2607), + [sym_expression] = STATE(2582), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -85952,8 +85952,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -85961,38 +85961,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -86023,49 +86023,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [556] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1875), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -86080,8 +86080,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -86090,12 +86088,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(2132), @@ -86126,30 +86126,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [557] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2608), + [sym_expression] = STATE(2584), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -86158,8 +86158,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -86167,38 +86167,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -86229,30 +86229,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [558] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2543), + [sym_expression] = STATE(2547), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -86261,8 +86261,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -86270,38 +86270,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -86332,30 +86332,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [559] = { - [sym_import] = STATE(3542), + [sym_import] = STATE(3541), [sym_parenthesized_expression] = STATE(1228), - [sym_expression] = STATE(2544), + [sym_expression] = STATE(2548), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5482), + [sym_object_pattern] = STATE(5604), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5482), + [sym_array_pattern] = STATE(5604), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), [sym_member_expression] = STATE(1228), [sym_subscript_expression] = STATE(1228), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5482), + [sym__destructuring_pattern] = STATE(5604), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -86364,8 +86364,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1228), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), @@ -86373,38 +86373,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(809), [anon_sym_export] = ACTIONS(811), [anon_sym_type] = ACTIONS(811), [anon_sym_namespace] = ACTIONS(813), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(823), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(825), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -86435,49 +86435,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [560] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), - [sym_expression] = STATE(2457), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), + [sym_expression] = STATE(2459), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -86492,8 +86492,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -86501,13 +86499,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -86538,8 +86538,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [561] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2108), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -86554,12 +86554,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -86570,17 +86570,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -86595,22 +86595,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(2134), @@ -86641,30 +86641,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [562] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1472), - [sym_expression] = STATE(2615), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1465), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5878), + [sym_object_pattern] = STATE(5868), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5878), + [sym_array_pattern] = STATE(5868), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1472), - [sym_subscript_expression] = STATE(1472), + [sym_member_expression] = STATE(1465), + [sym_subscript_expression] = STATE(1465), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5878), + [sym__destructuring_pattern] = STATE(5868), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -86673,47 +86673,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1472), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1465), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2190), [anon_sym_export] = ACTIONS(2192), [anon_sym_type] = ACTIONS(2192), [anon_sym_namespace] = ACTIONS(2194), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(2196), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2198), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -86744,9 +86744,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [563] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2553), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2558), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -86758,14 +86758,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -86776,17 +86776,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -86801,22 +86801,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -86847,8 +86847,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [564] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2082), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -86863,12 +86863,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -86879,17 +86879,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -86904,22 +86904,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -86950,8 +86950,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [565] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2084), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -86966,12 +86966,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -86982,17 +86982,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -87007,22 +87007,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -87053,8 +87053,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [566] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2085), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -87069,12 +87069,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -87085,17 +87085,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -87110,22 +87110,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -87156,8 +87156,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [567] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2086), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -87172,12 +87172,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -87188,17 +87188,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -87213,22 +87213,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -87259,8 +87259,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [568] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2088), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -87275,12 +87275,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -87291,17 +87291,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -87316,22 +87316,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -87362,8 +87362,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [569] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2089), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -87378,12 +87378,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -87394,17 +87394,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -87419,22 +87419,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -87465,8 +87465,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [570] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2090), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -87481,12 +87481,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -87497,17 +87497,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -87522,22 +87522,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -87568,8 +87568,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [571] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2091), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -87584,12 +87584,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -87600,17 +87600,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -87625,22 +87625,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -87671,8 +87671,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [572] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2092), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -87687,12 +87687,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -87703,17 +87703,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -87728,22 +87728,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -87774,8 +87774,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [573] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2093), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -87790,12 +87790,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -87806,17 +87806,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -87831,22 +87831,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -87877,8 +87877,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [574] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2094), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -87893,12 +87893,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -87909,17 +87909,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -87934,22 +87934,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -87980,8 +87980,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [575] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2095), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -87996,12 +87996,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -88012,17 +88012,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -88037,22 +88037,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -88083,8 +88083,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [576] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2096), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -88099,12 +88099,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -88115,17 +88115,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -88140,22 +88140,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -88186,8 +88186,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [577] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2097), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -88202,12 +88202,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -88218,17 +88218,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -88243,22 +88243,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -88289,8 +88289,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [578] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2098), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -88305,12 +88305,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -88321,17 +88321,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -88346,22 +88346,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -88392,8 +88392,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [579] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2099), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -88408,12 +88408,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -88424,17 +88424,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -88449,22 +88449,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -88495,8 +88495,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [580] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2101), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -88511,12 +88511,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -88527,17 +88527,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -88552,22 +88552,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -88598,8 +88598,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [581] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2105), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -88614,12 +88614,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -88630,17 +88630,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -88655,22 +88655,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -88701,8 +88701,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [582] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2106), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -88717,12 +88717,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -88733,17 +88733,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -88758,22 +88758,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -88804,49 +88804,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [583] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1789), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1813), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -88861,22 +88861,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -88907,49 +88907,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [584] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(1865), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), + [sym_expression] = STATE(1878), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -88964,22 +88964,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -89010,8 +89010,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [585] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2107), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -89026,12 +89026,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -89042,17 +89042,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -89067,22 +89067,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -89113,8 +89113,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [586] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2108), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -89129,12 +89129,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -89145,17 +89145,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -89170,22 +89170,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -89216,8 +89216,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [587] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2109), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -89232,12 +89232,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -89248,17 +89248,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -89273,22 +89273,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -89319,9 +89319,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [588] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2450), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2452), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -89333,14 +89333,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -89351,17 +89351,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -89376,22 +89376,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(2134), @@ -89422,30 +89422,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [589] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1470), - [sym_expression] = STATE(2615), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1467), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5621), + [sym_object_pattern] = STATE(5624), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5621), + [sym_array_pattern] = STATE(5624), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1470), - [sym_subscript_expression] = STATE(1470), + [sym_member_expression] = STATE(1467), + [sym_subscript_expression] = STATE(1467), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5621), + [sym__destructuring_pattern] = STATE(5624), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -89454,47 +89454,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1470), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1467), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2202), [anon_sym_export] = ACTIONS(2204), [anon_sym_type] = ACTIONS(2204), [anon_sym_namespace] = ACTIONS(2206), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2210), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -89525,9 +89525,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [590] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2565), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2570), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -89539,14 +89539,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -89557,17 +89557,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -89582,22 +89582,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -89628,9 +89628,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [591] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2364), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2367), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -89642,14 +89642,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -89660,17 +89660,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -89685,22 +89685,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -89731,9 +89731,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [592] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2366), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2369), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -89745,14 +89745,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -89763,17 +89763,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -89788,22 +89788,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -89834,9 +89834,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [593] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2367), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2370), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -89848,14 +89848,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -89866,17 +89866,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -89891,22 +89891,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -89937,9 +89937,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [594] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2368), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2371), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -89951,14 +89951,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -89969,17 +89969,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -89994,22 +89994,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -90040,9 +90040,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [595] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2370), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2373), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -90054,14 +90054,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -90072,17 +90072,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -90097,22 +90097,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -90143,9 +90143,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [596] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2371), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2374), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -90157,14 +90157,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -90175,17 +90175,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -90200,22 +90200,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -90246,9 +90246,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [597] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2372), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2375), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -90260,14 +90260,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -90278,17 +90278,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -90303,22 +90303,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -90349,9 +90349,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [598] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2373), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2376), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -90363,14 +90363,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -90381,17 +90381,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -90406,22 +90406,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -90452,9 +90452,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [599] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2374), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2377), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -90466,14 +90466,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -90484,17 +90484,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -90509,22 +90509,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -90555,9 +90555,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [600] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2375), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2378), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -90569,14 +90569,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -90587,17 +90587,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -90612,22 +90612,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -90658,9 +90658,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [601] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2376), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2379), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -90672,14 +90672,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -90690,17 +90690,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -90715,22 +90715,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -90761,9 +90761,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [602] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2377), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2380), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -90775,14 +90775,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -90793,17 +90793,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -90818,22 +90818,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -90864,9 +90864,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [603] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2378), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2381), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -90878,14 +90878,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -90896,17 +90896,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -90921,22 +90921,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -90967,9 +90967,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [604] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2379), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2382), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -90981,14 +90981,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -90999,17 +90999,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -91024,22 +91024,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -91070,9 +91070,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [605] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2380), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2383), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -91084,14 +91084,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -91102,17 +91102,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -91127,22 +91127,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -91173,9 +91173,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [606] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2384), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -91187,14 +91187,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -91205,17 +91205,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -91230,22 +91230,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -91276,9 +91276,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [607] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2383), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2386), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -91290,14 +91290,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -91308,17 +91308,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -91333,22 +91333,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -91379,49 +91379,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [608] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1828), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -91436,22 +91436,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -91482,9 +91482,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [609] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2363), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2390), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -91496,14 +91496,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -91514,17 +91514,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -91539,22 +91539,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -91585,9 +91585,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [610] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2387), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2391), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -91599,14 +91599,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -91617,17 +91617,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -91642,22 +91642,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -91688,9 +91688,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [611] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2388), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2392), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -91702,14 +91702,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -91720,17 +91720,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -91745,22 +91745,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -91791,9 +91791,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [612] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2450), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2452), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -91805,14 +91805,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -91823,17 +91823,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -91848,22 +91848,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -91894,9 +91894,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [613] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2528), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2453), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -91908,14 +91908,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -91926,17 +91926,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -91951,22 +91951,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -91997,9 +91997,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [614] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2458), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2462), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -92013,12 +92013,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -92029,17 +92029,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -92054,22 +92054,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(2134), @@ -92100,30 +92100,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [615] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1465), - [sym_expression] = STATE(2615), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5797), + [sym_object_pattern] = STATE(5805), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5797), + [sym_array_pattern] = STATE(5805), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1465), - [sym_subscript_expression] = STATE(1465), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5797), + [sym__destructuring_pattern] = STATE(5805), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -92132,47 +92132,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1465), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1472), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2214), [anon_sym_export] = ACTIONS(2216), [anon_sym_type] = ACTIONS(2216), [anon_sym_namespace] = ACTIONS(2218), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(2216), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(2220), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2222), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -92203,9 +92203,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [616] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2572), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2576), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -92217,14 +92217,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -92235,17 +92235,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -92260,22 +92260,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -92306,9 +92306,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [617] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2394), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -92322,12 +92322,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -92338,17 +92338,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -92363,22 +92363,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -92409,9 +92409,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [618] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2393), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2396), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -92425,12 +92425,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -92441,17 +92441,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -92466,22 +92466,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -92512,214 +92512,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [619] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2394), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), - [sym_html_comment] = ACTIONS(5), - }, - [620] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2395), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), - [sym_html_comment] = ACTIONS(5), - }, - [621] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), [sym_expression] = STATE(2397), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -92734,12 +92528,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -92750,17 +92544,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -92775,22 +92569,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -92820,9 +92614,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1081), [sym_html_comment] = ACTIONS(5), }, - [622] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), + [620] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), [sym_expression] = STATE(2398), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -92837,12 +92631,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -92853,17 +92647,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -92878,22 +92672,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -92923,112 +92717,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1081), [sym_html_comment] = ACTIONS(5), }, - [623] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2399), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5835), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5835), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5489), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5835), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1081), - [anon_sym_type] = ACTIONS(1081), - [anon_sym_namespace] = ACTIONS(1083), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(1107), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_using] = ACTIONS(1101), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1089), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1107), - [anon_sym_PLUS_PLUS] = ACTIONS(1109), - [anon_sym_DASH_DASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(1115), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1081), - [anon_sym_readonly] = ACTIONS(1081), - [anon_sym_get] = ACTIONS(1081), - [anon_sym_set] = ACTIONS(1081), - [anon_sym_declare] = ACTIONS(1081), - [anon_sym_public] = ACTIONS(1081), - [anon_sym_private] = ACTIONS(1081), - [anon_sym_protected] = ACTIONS(1081), - [anon_sym_override] = ACTIONS(1081), - [anon_sym_module] = ACTIONS(1081), - [anon_sym_any] = ACTIONS(1081), - [anon_sym_number] = ACTIONS(1081), - [anon_sym_boolean] = ACTIONS(1081), - [anon_sym_string] = ACTIONS(1081), - [anon_sym_symbol] = ACTIONS(1081), - [anon_sym_object] = ACTIONS(1081), - [sym_html_comment] = ACTIONS(5), - }, - [624] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), + [621] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), [sym_expression] = STATE(2400), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -93043,12 +92734,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -93059,17 +92750,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -93084,22 +92775,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -93129,9 +92820,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1081), [sym_html_comment] = ACTIONS(5), }, - [625] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), + [622] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), [sym_expression] = STATE(2401), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -93146,12 +92837,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -93162,17 +92853,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -93187,22 +92878,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -93232,9 +92923,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1081), [sym_html_comment] = ACTIONS(5), }, - [626] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), + [623] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), [sym_expression] = STATE(2402), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -93249,12 +92940,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -93265,17 +92956,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -93290,22 +92981,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -93335,9 +93026,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1081), [sym_html_comment] = ACTIONS(5), }, - [627] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), + [624] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), [sym_expression] = STATE(2403), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -93352,12 +93043,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -93368,17 +93059,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -93393,22 +93084,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -93438,9 +93129,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1081), [sym_html_comment] = ACTIONS(5), }, - [628] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), + [625] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), [sym_expression] = STATE(2404), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -93455,12 +93146,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -93471,17 +93162,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -93496,22 +93187,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -93541,9 +93232,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1081), [sym_html_comment] = ACTIONS(5), }, - [629] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), + [626] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), [sym_expression] = STATE(2405), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -93558,12 +93249,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -93574,17 +93265,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -93599,22 +93290,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -93644,9 +93335,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1081), [sym_html_comment] = ACTIONS(5), }, - [630] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), + [627] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), [sym_expression] = STATE(2406), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -93661,12 +93352,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -93677,17 +93368,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -93702,22 +93393,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -93747,9 +93438,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1081), [sym_html_comment] = ACTIONS(5), }, - [631] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), + [628] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), [sym_expression] = STATE(2407), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -93764,12 +93455,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -93780,17 +93471,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -93805,22 +93496,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -93850,9 +93541,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1081), [sym_html_comment] = ACTIONS(5), }, - [632] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), + [629] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), [sym_expression] = STATE(2408), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -93867,12 +93558,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -93883,17 +93574,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -93908,22 +93599,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -93953,31 +93644,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1081), [sym_html_comment] = ACTIONS(5), }, - [633] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1920), + [630] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2409), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5835), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5835), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -93986,79 +93677,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), + [sym_type_arguments] = STATE(617), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(1529), + [anon_sym_export] = ACTIONS(1081), + [anon_sym_type] = ACTIONS(1081), + [anon_sym_namespace] = ACTIONS(1083), [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), + [anon_sym_typeof] = ACTIONS(1107), [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), + [anon_sym_let] = ACTIONS(1081), + [anon_sym_BANG] = ACTIONS(1089), [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(1089), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), + [sym_private_property_identifier] = ACTIONS(1115), [sym_this] = ACTIONS(197), [sym_super] = ACTIONS(197), [sym_true] = ACTIONS(197), [sym_false] = ACTIONS(197), [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), + [sym_undefined] = ACTIONS(1535), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1081), + [anon_sym_readonly] = ACTIONS(1081), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1081), + [anon_sym_declare] = ACTIONS(1081), + [anon_sym_public] = ACTIONS(1081), + [anon_sym_private] = ACTIONS(1081), + [anon_sym_protected] = ACTIONS(1081), + [anon_sym_override] = ACTIONS(1081), + [anon_sym_module] = ACTIONS(1081), + [anon_sym_any] = ACTIONS(1081), + [anon_sym_number] = ACTIONS(1081), + [anon_sym_boolean] = ACTIONS(1081), + [anon_sym_string] = ACTIONS(1081), + [anon_sym_symbol] = ACTIONS(1081), + [anon_sym_object] = ACTIONS(1081), [sym_html_comment] = ACTIONS(5), }, - [634] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), + [631] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), [sym_expression] = STATE(2410), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -94073,12 +93764,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -94089,17 +93780,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -94114,22 +93805,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -94159,216 +93850,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1081), [sym_html_comment] = ACTIONS(5), }, - [635] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1975), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), - [sym_html_comment] = ACTIONS(5), - }, - [636] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), - [sym_expression] = STATE(1887), - [sym_primary_expression] = STATE(1512), - [sym_yield_expression] = STATE(1652), - [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), - [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), - [sym_glimmer_template] = STATE(1652), - [sym_class] = STATE(1691), - [sym_function_expression] = STATE(1691), - [sym_generator_function] = STATE(1691), - [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), - [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), - [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), - [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), - [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), - [sym_ternary_expression] = STATE(1652), - [sym_binary_expression] = STATE(1652), - [sym_unary_expression] = STATE(1652), - [sym_update_expression] = STATE(1652), - [sym_string] = STATE(1691), - [sym_template_string] = STATE(1691), - [sym_regex] = STATE(1691), - [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), - [sym_type_assertion] = STATE(1652), - [sym_as_expression] = STATE(1652), - [sym_satisfies_expression] = STATE(1652), - [sym_instantiation_expression] = STATE(1652), - [sym_internal_module] = STATE(1652), - [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_namespace] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_typeof] = ACTIONS(763), - [anon_sym_import] = ACTIONS(132), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_LPAREN] = ACTIONS(817), - [anon_sym_await] = ACTIONS(743), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(847), - [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), - [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), - [anon_sym_new] = ACTIONS(1493), - [anon_sym_using] = ACTIONS(753), - [anon_sym_PLUS] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_void] = ACTIONS(763), - [anon_sym_delete] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_DASH_DASH] = ACTIONS(765), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(827), - [sym_number] = ACTIONS(719), - [sym_private_property_identifier] = ACTIONS(771), - [sym_this] = ACTIONS(197), - [sym_super] = ACTIONS(197), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_undefined] = ACTIONS(1495), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_readonly] = ACTIONS(1275), - [anon_sym_get] = ACTIONS(1275), - [anon_sym_set] = ACTIONS(1275), - [anon_sym_declare] = ACTIONS(1275), - [anon_sym_public] = ACTIONS(1275), - [anon_sym_private] = ACTIONS(1275), - [anon_sym_protected] = ACTIONS(1275), - [anon_sym_override] = ACTIONS(1275), - [anon_sym_module] = ACTIONS(1275), - [anon_sym_any] = ACTIONS(1275), - [anon_sym_number] = ACTIONS(1275), - [anon_sym_boolean] = ACTIONS(1275), - [anon_sym_string] = ACTIONS(1275), - [anon_sym_symbol] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1275), - [sym_html_comment] = ACTIONS(5), - }, - [637] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2414), + [632] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2411), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -94382,12 +93867,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -94398,17 +93883,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -94423,22 +93908,537 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(827), + [sym_number] = ACTIONS(719), + [sym_private_property_identifier] = ACTIONS(1115), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1535), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1081), + [anon_sym_readonly] = ACTIONS(1081), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1081), + [anon_sym_declare] = ACTIONS(1081), + [anon_sym_public] = ACTIONS(1081), + [anon_sym_private] = ACTIONS(1081), + [anon_sym_protected] = ACTIONS(1081), + [anon_sym_override] = ACTIONS(1081), + [anon_sym_module] = ACTIONS(1081), + [anon_sym_any] = ACTIONS(1081), + [anon_sym_number] = ACTIONS(1081), + [anon_sym_boolean] = ACTIONS(1081), + [anon_sym_string] = ACTIONS(1081), + [anon_sym_symbol] = ACTIONS(1081), + [anon_sym_object] = ACTIONS(1081), + [sym_html_comment] = ACTIONS(5), + }, + [633] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1920), + [sym_primary_expression] = STATE(1512), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1691), + [sym_object_pattern] = STATE(5559), + [sym_array] = STATE(1691), + [sym_array_pattern] = STATE(5559), + [sym_glimmer_template] = STATE(1652), + [sym_class] = STATE(1691), + [sym_function_expression] = STATE(1691), + [sym_generator_function] = STATE(1691), + [sym_arrow_function] = STATE(1691), + [sym__call_signature] = STATE(5803), + [sym_call_expression] = STATE(1691), + [sym_new_expression] = STATE(1619), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3041), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5559), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1691), + [sym_template_string] = STATE(1691), + [sym_regex] = STATE(1691), + [sym_meta_property] = STATE(1691), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(635), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(1489), + [anon_sym_export] = ACTIONS(1275), + [anon_sym_type] = ACTIONS(1275), + [anon_sym_namespace] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(763), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_await] = ACTIONS(743), + [anon_sym_yield] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(847), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1493), + [anon_sym_using] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_void] = ACTIONS(763), + [anon_sym_delete] = ACTIONS(763), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(827), + [sym_number] = ACTIONS(719), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_readonly] = ACTIONS(1275), + [anon_sym_get] = ACTIONS(1275), + [anon_sym_set] = ACTIONS(1275), + [anon_sym_declare] = ACTIONS(1275), + [anon_sym_public] = ACTIONS(1275), + [anon_sym_private] = ACTIONS(1275), + [anon_sym_protected] = ACTIONS(1275), + [anon_sym_override] = ACTIONS(1275), + [anon_sym_module] = ACTIONS(1275), + [anon_sym_any] = ACTIONS(1275), + [anon_sym_number] = ACTIONS(1275), + [anon_sym_boolean] = ACTIONS(1275), + [anon_sym_string] = ACTIONS(1275), + [anon_sym_symbol] = ACTIONS(1275), + [anon_sym_object] = ACTIONS(1275), + [sym_html_comment] = ACTIONS(5), + }, + [634] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2413), + [sym_primary_expression] = STATE(1512), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1691), + [sym_object_pattern] = STATE(5835), + [sym_array] = STATE(1691), + [sym_array_pattern] = STATE(5835), + [sym_glimmer_template] = STATE(1652), + [sym_class] = STATE(1691), + [sym_function_expression] = STATE(1691), + [sym_generator_function] = STATE(1691), + [sym_arrow_function] = STATE(1691), + [sym__call_signature] = STATE(5489), + [sym_call_expression] = STATE(1691), + [sym_new_expression] = STATE(1619), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3028), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5835), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1691), + [sym_template_string] = STATE(1691), + [sym_regex] = STATE(1691), + [sym_meta_property] = STATE(1691), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(617), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(1529), + [anon_sym_export] = ACTIONS(1081), + [anon_sym_type] = ACTIONS(1081), + [anon_sym_namespace] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1081), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(847), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(1089), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(827), + [sym_number] = ACTIONS(719), + [sym_private_property_identifier] = ACTIONS(1115), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1535), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1081), + [anon_sym_readonly] = ACTIONS(1081), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1081), + [anon_sym_declare] = ACTIONS(1081), + [anon_sym_public] = ACTIONS(1081), + [anon_sym_private] = ACTIONS(1081), + [anon_sym_protected] = ACTIONS(1081), + [anon_sym_override] = ACTIONS(1081), + [anon_sym_module] = ACTIONS(1081), + [anon_sym_any] = ACTIONS(1081), + [anon_sym_number] = ACTIONS(1081), + [anon_sym_boolean] = ACTIONS(1081), + [anon_sym_string] = ACTIONS(1081), + [anon_sym_symbol] = ACTIONS(1081), + [anon_sym_object] = ACTIONS(1081), + [sym_html_comment] = ACTIONS(5), + }, + [635] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1975), + [sym_primary_expression] = STATE(1512), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1691), + [sym_object_pattern] = STATE(5559), + [sym_array] = STATE(1691), + [sym_array_pattern] = STATE(5559), + [sym_glimmer_template] = STATE(1652), + [sym_class] = STATE(1691), + [sym_function_expression] = STATE(1691), + [sym_generator_function] = STATE(1691), + [sym_arrow_function] = STATE(1691), + [sym__call_signature] = STATE(5803), + [sym_call_expression] = STATE(1691), + [sym_new_expression] = STATE(1619), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3041), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5559), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1691), + [sym_template_string] = STATE(1691), + [sym_regex] = STATE(1691), + [sym_meta_property] = STATE(1691), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(635), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(1489), + [anon_sym_export] = ACTIONS(1275), + [anon_sym_type] = ACTIONS(1275), + [anon_sym_namespace] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(763), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_await] = ACTIONS(743), + [anon_sym_yield] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(847), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1493), + [anon_sym_using] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_void] = ACTIONS(763), + [anon_sym_delete] = ACTIONS(763), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(827), + [sym_number] = ACTIONS(719), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_readonly] = ACTIONS(1275), + [anon_sym_get] = ACTIONS(1275), + [anon_sym_set] = ACTIONS(1275), + [anon_sym_declare] = ACTIONS(1275), + [anon_sym_public] = ACTIONS(1275), + [anon_sym_private] = ACTIONS(1275), + [anon_sym_protected] = ACTIONS(1275), + [anon_sym_override] = ACTIONS(1275), + [anon_sym_module] = ACTIONS(1275), + [anon_sym_any] = ACTIONS(1275), + [anon_sym_number] = ACTIONS(1275), + [anon_sym_boolean] = ACTIONS(1275), + [anon_sym_string] = ACTIONS(1275), + [anon_sym_symbol] = ACTIONS(1275), + [anon_sym_object] = ACTIONS(1275), + [sym_html_comment] = ACTIONS(5), + }, + [636] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), + [sym_expression] = STATE(1887), + [sym_primary_expression] = STATE(1512), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1691), + [sym_object_pattern] = STATE(5559), + [sym_array] = STATE(1691), + [sym_array_pattern] = STATE(5559), + [sym_glimmer_template] = STATE(1652), + [sym_class] = STATE(1691), + [sym_function_expression] = STATE(1691), + [sym_generator_function] = STATE(1691), + [sym_arrow_function] = STATE(1691), + [sym__call_signature] = STATE(5803), + [sym_call_expression] = STATE(1691), + [sym_new_expression] = STATE(1619), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3041), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5559), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1691), + [sym_template_string] = STATE(1691), + [sym_regex] = STATE(1691), + [sym_meta_property] = STATE(1691), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(635), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(1489), + [anon_sym_export] = ACTIONS(1275), + [anon_sym_type] = ACTIONS(1275), + [anon_sym_namespace] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(763), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_await] = ACTIONS(743), + [anon_sym_yield] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(847), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1285), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1493), + [anon_sym_using] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(739), + [anon_sym_void] = ACTIONS(763), + [anon_sym_delete] = ACTIONS(763), + [anon_sym_PLUS_PLUS] = ACTIONS(765), + [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(827), + [sym_number] = ACTIONS(719), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(197), + [sym_super] = ACTIONS(197), + [sym_true] = ACTIONS(197), + [sym_false] = ACTIONS(197), + [sym_null] = ACTIONS(197), + [sym_undefined] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_readonly] = ACTIONS(1275), + [anon_sym_get] = ACTIONS(1275), + [anon_sym_set] = ACTIONS(1275), + [anon_sym_declare] = ACTIONS(1275), + [anon_sym_public] = ACTIONS(1275), + [anon_sym_private] = ACTIONS(1275), + [anon_sym_protected] = ACTIONS(1275), + [anon_sym_override] = ACTIONS(1275), + [anon_sym_module] = ACTIONS(1275), + [anon_sym_any] = ACTIONS(1275), + [anon_sym_number] = ACTIONS(1275), + [anon_sym_boolean] = ACTIONS(1275), + [anon_sym_string] = ACTIONS(1275), + [anon_sym_symbol] = ACTIONS(1275), + [anon_sym_object] = ACTIONS(1275), + [sym_html_comment] = ACTIONS(5), + }, + [637] = { + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(1512), + [sym_yield_expression] = STATE(1652), + [sym_object] = STATE(1691), + [sym_object_pattern] = STATE(5835), + [sym_array] = STATE(1691), + [sym_array_pattern] = STATE(5835), + [sym_glimmer_template] = STATE(1652), + [sym_class] = STATE(1691), + [sym_function_expression] = STATE(1691), + [sym_generator_function] = STATE(1691), + [sym_arrow_function] = STATE(1691), + [sym__call_signature] = STATE(5489), + [sym_call_expression] = STATE(1691), + [sym_new_expression] = STATE(1619), + [sym_await_expression] = STATE(1652), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), + [sym_assignment_expression] = STATE(1652), + [sym__augmented_assignment_lhs] = STATE(3028), + [sym_augmented_assignment_expression] = STATE(1652), + [sym__destructuring_pattern] = STATE(5835), + [sym_ternary_expression] = STATE(1652), + [sym_binary_expression] = STATE(1652), + [sym_unary_expression] = STATE(1652), + [sym_update_expression] = STATE(1652), + [sym_string] = STATE(1691), + [sym_template_string] = STATE(1691), + [sym_regex] = STATE(1691), + [sym_meta_property] = STATE(1691), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), + [sym_type_assertion] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_satisfies_expression] = STATE(1652), + [sym_instantiation_expression] = STATE(1652), + [sym_internal_module] = STATE(1652), + [sym_type_arguments] = STATE(617), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(1529), + [anon_sym_export] = ACTIONS(1081), + [anon_sym_type] = ACTIONS(1081), + [anon_sym_namespace] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_typeof] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(132), + [anon_sym_let] = ACTIONS(1081), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_LPAREN] = ACTIONS(817), + [anon_sym_await] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(847), + [sym_glimmer_opening_tag] = ACTIONS(147), + [anon_sym_class] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(153), + [anon_sym_new] = ACTIONS(1533), + [anon_sym_using] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(1089), + [anon_sym_void] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -94469,9 +94469,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [638] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2415), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2418), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -94485,12 +94485,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -94501,17 +94501,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -94526,22 +94526,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -94572,9 +94572,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [639] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2416), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2419), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -94588,12 +94588,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -94604,17 +94604,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -94629,22 +94629,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -94675,49 +94675,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [640] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1874), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -94732,22 +94732,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -94778,9 +94778,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [641] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2458), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2462), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -94794,12 +94794,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -94810,17 +94810,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -94835,22 +94835,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -94881,9 +94881,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [642] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2459), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2463), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -94897,12 +94897,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -94913,17 +94913,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -94938,22 +94938,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -94984,9 +94984,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [643] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1466), - [sym_expression] = STATE(2615), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1464), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -94998,14 +94998,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1466), - [sym_subscript_expression] = STATE(1466), + [sym_member_expression] = STATE(1464), + [sym_subscript_expression] = STATE(1464), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5501), [sym_ternary_expression] = STATE(1652), @@ -95016,47 +95016,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1466), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1464), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2226), [anon_sym_export] = ACTIONS(2228), [anon_sym_type] = ACTIONS(2228), [anon_sym_namespace] = ACTIONS(2230), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(2232), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2234), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -95087,9 +95087,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [644] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2490), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2491), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -95103,12 +95103,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -95119,17 +95119,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -95144,22 +95144,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -95190,9 +95190,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [645] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2492), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2493), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -95206,12 +95206,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -95222,17 +95222,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -95247,22 +95247,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -95293,9 +95293,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [646] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2493), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2494), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -95309,12 +95309,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -95325,17 +95325,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -95350,22 +95350,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -95396,9 +95396,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [647] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2494), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2495), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -95412,12 +95412,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -95428,17 +95428,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -95453,22 +95453,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -95499,9 +95499,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [648] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2496), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2497), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -95515,12 +95515,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -95531,17 +95531,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -95556,22 +95556,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -95602,9 +95602,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [649] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2497), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2498), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -95618,12 +95618,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -95634,17 +95634,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -95659,22 +95659,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -95705,9 +95705,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [650] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2498), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2499), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -95721,12 +95721,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -95737,17 +95737,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -95762,22 +95762,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -95808,9 +95808,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [651] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2499), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2500), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -95824,12 +95824,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -95840,17 +95840,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -95865,22 +95865,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -95911,9 +95911,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [652] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2500), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2501), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -95927,12 +95927,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -95943,17 +95943,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -95968,22 +95968,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -96014,9 +96014,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [653] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2501), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2502), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -96030,12 +96030,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -96046,17 +96046,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -96071,22 +96071,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -96117,9 +96117,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [654] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2502), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2503), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -96133,12 +96133,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -96149,17 +96149,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -96174,22 +96174,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -96220,9 +96220,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [655] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2503), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2504), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -96236,12 +96236,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -96252,17 +96252,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -96277,22 +96277,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -96323,9 +96323,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [656] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2504), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2505), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -96339,12 +96339,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -96355,17 +96355,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -96380,22 +96380,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -96426,9 +96426,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [657] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2505), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2506), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -96442,12 +96442,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -96458,17 +96458,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -96483,22 +96483,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -96529,9 +96529,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [658] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2506), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2507), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -96545,12 +96545,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -96561,17 +96561,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -96586,22 +96586,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -96632,9 +96632,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [659] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2507), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2508), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -96648,12 +96648,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -96664,17 +96664,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -96689,22 +96689,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -96735,9 +96735,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [660] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2509), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2510), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -96751,12 +96751,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -96767,17 +96767,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -96792,22 +96792,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -96838,49 +96838,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [661] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1353), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1370), [sym_expression] = STATE(1782), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), - [sym_object_pattern] = STATE(5484), - [sym_array] = STATE(2117), - [sym_array_pattern] = STATE(5484), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5525), - [sym_call_expression] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), + [sym_object_pattern] = STATE(5625), + [sym_array] = STATE(2118), + [sym_array_pattern] = STATE(5625), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5688), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3036), - [sym_augmented_assignment_expression] = STATE(2130), - [sym__destructuring_pattern] = STATE(5484), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1370), + [sym_subscript_expression] = STATE(1370), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3042), + [sym_augmented_assignment_expression] = STATE(2170), + [sym__destructuring_pattern] = STATE(5625), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1370), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(427), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1475), [anon_sym_export] = ACTIONS(1443), [anon_sym_type] = ACTIONS(1443), @@ -96895,22 +96895,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(63), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1449), [anon_sym_function] = ACTIONS(685), [anon_sym_new] = ACTIONS(1479), - [anon_sym_using] = ACTIONS(81), + [anon_sym_using] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(33), [anon_sym_void] = ACTIONS(21), [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(87), - [anon_sym_DASH_DASH] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -96941,9 +96941,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [662] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2513), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2514), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -96957,12 +96957,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -96973,17 +96973,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -96998,22 +96998,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -97044,9 +97044,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [663] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2514), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2515), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -97060,12 +97060,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -97076,17 +97076,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -97101,22 +97101,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -97147,9 +97147,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [664] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2515), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2516), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -97163,12 +97163,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -97179,17 +97179,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -97204,22 +97204,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -97250,9 +97250,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [665] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2518), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2519), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -97266,12 +97266,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -97282,17 +97282,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -97307,22 +97307,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -97353,9 +97353,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [666] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2519), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2520), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -97369,12 +97369,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -97385,17 +97385,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -97410,22 +97410,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -97456,9 +97456,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [667] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1468), - [sym_expression] = STATE(2615), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1470), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -97470,14 +97470,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1468), - [sym_subscript_expression] = STATE(1468), + [sym_member_expression] = STATE(1470), + [sym_subscript_expression] = STATE(1470), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5553), [sym_ternary_expression] = STATE(1652), @@ -97488,47 +97488,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1468), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1470), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2238), [anon_sym_export] = ACTIONS(2240), [anon_sym_type] = ACTIONS(2240), [anon_sym_namespace] = ACTIONS(2242), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(2240), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(2244), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -97559,9 +97559,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [668] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2579), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2612), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -97573,14 +97573,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -97591,17 +97591,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -97616,22 +97616,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -97662,9 +97662,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [669] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2439), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2436), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -97676,14 +97676,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -97694,17 +97694,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -97719,22 +97719,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -97765,49 +97765,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [670] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), [sym_expression] = STATE(2259), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -97822,8 +97822,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -97831,13 +97829,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -97868,49 +97868,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [671] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), [sym_expression] = STATE(2260), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -97925,8 +97925,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -97934,13 +97932,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -97971,49 +97971,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [672] = { - [sym_import] = STATE(3513), - [sym_parenthesized_expression] = STATE(1417), + [sym_import] = STATE(3514), + [sym_parenthesized_expression] = STATE(1416), [sym_expression] = STATE(2262), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5592), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5592), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), - [sym__call_signature] = STATE(5478), - [sym_call_expression] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), + [sym__call_signature] = STATE(5590), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), - [sym_member_expression] = STATE(1417), - [sym_subscript_expression] = STATE(1417), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3012), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), + [sym_member_expression] = STATE(1416), + [sym_subscript_expression] = STATE(1416), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3031), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5592), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1417), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1416), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(450), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1129), [anon_sym_type] = ACTIONS(1129), @@ -98028,8 +98028,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1143), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1147), [anon_sym_function] = ACTIONS(685), @@ -98037,13 +98035,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(1151), [anon_sym_PLUS] = ACTIONS(1157), [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_SLASH] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_void] = ACTIONS(1157), [anon_sym_delete] = ACTIONS(1157), [anon_sym_PLUS_PLUS] = ACTIONS(1159), [anon_sym_DASH_DASH] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -98074,8 +98074,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [673] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), [sym_expression] = STATE(1771), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -98088,14 +98088,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), + [sym_member_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5710), [sym_ternary_expression] = STATE(1652), @@ -98106,17 +98106,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1324), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1328), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1463), [anon_sym_export] = ACTIONS(1055), [anon_sym_type] = ACTIONS(1055), @@ -98131,22 +98131,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1065), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1471), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -98177,30 +98177,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [674] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1324), - [sym_expression] = STATE(2323), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1328), + [sym_expression] = STATE(2324), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(4302), + [sym_object_pattern] = STATE(4300), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(4302), + [sym_array_pattern] = STATE(4300), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5565), + [sym__call_signature] = STATE(5535), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1351), - [sym_subscript_expression] = STATE(1351), + [sym_member_expression] = STATE(1354), + [sym_subscript_expression] = STATE(1354), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2958), + [sym__augmented_assignment_lhs] = STATE(2982), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(4302), + [sym__destructuring_pattern] = STATE(4300), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -98209,17 +98209,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1351), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1354), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(482), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2250), [anon_sym_export] = ACTIONS(1307), [anon_sym_type] = ACTIONS(1307), @@ -98234,22 +98234,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(596), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1313), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2252), [anon_sym_using] = ACTIONS(606), [anon_sym_PLUS] = ACTIONS(620), [anon_sym_DASH] = ACTIONS(620), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(592), [anon_sym_void] = ACTIONS(620), [anon_sym_delete] = ACTIONS(620), [anon_sym_PLUS_PLUS] = ACTIONS(622), [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -98280,9 +98280,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [675] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1461), - [sym_expression] = STATE(2518), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1458), + [sym_expression] = STATE(2519), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -98296,12 +98296,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5541), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1461), - [sym_subscript_expression] = STATE(1461), + [sym_member_expression] = STATE(1458), + [sym_subscript_expression] = STATE(1458), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3010), + [sym__augmented_assignment_lhs] = STATE(3030), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5839), [sym_ternary_expression] = STATE(1652), @@ -98312,17 +98312,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1461), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1458), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(644), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1513), [anon_sym_export] = ACTIONS(1407), [anon_sym_type] = ACTIONS(1407), @@ -98337,22 +98337,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1417), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1419), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1517), [anon_sym_using] = ACTIONS(1423), [anon_sym_PLUS] = ACTIONS(1429), [anon_sym_DASH] = ACTIONS(1429), [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1413), [anon_sym_void] = ACTIONS(1429), [anon_sym_delete] = ACTIONS(1429), [anon_sym_PLUS_PLUS] = ACTIONS(1431), [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(2134), @@ -98383,49 +98383,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [676] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1875), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -98440,8 +98440,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -98450,12 +98448,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -98486,49 +98486,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [677] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1876), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -98543,8 +98543,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -98553,12 +98551,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -98589,8 +98589,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [678] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1391), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1389), [sym_expression] = STATE(2111), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), @@ -98605,12 +98605,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5603), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), + [sym_member_expression] = STATE(1389), + [sym_subscript_expression] = STATE(1389), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2984), + [sym__augmented_assignment_lhs] = STATE(3004), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5815), [sym_ternary_expression] = STATE(1652), @@ -98621,17 +98621,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1391), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1389), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(564), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1505), [anon_sym_export] = ACTIONS(1325), [anon_sym_type] = ACTIONS(1325), @@ -98646,22 +98646,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1337), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1509), [anon_sym_using] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1347), [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_void] = ACTIONS(1347), [anon_sym_delete] = ACTIONS(1347), [anon_sym_PLUS_PLUS] = ACTIONS(1349), [anon_sym_DASH_DASH] = ACTIONS(1349), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -98692,30 +98692,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [679] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1381), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1398), [sym_expression] = STATE(1919), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), - [sym_object_pattern] = STATE(5574), + [sym_object_pattern] = STATE(5559), [sym_array] = STATE(1691), - [sym_array_pattern] = STATE(5574), + [sym_array_pattern] = STATE(5559), [sym_glimmer_template] = STATE(1652), [sym_class] = STATE(1691), [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5865), + [sym__call_signature] = STATE(5803), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1381), - [sym_subscript_expression] = STATE(1381), + [sym_member_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3033), + [sym__augmented_assignment_lhs] = STATE(3041), [sym_augmented_assignment_expression] = STATE(1652), - [sym__destructuring_pattern] = STATE(5574), + [sym__destructuring_pattern] = STATE(5559), [sym_ternary_expression] = STATE(1652), [sym_binary_expression] = STATE(1652), [sym_unary_expression] = STATE(1652), @@ -98724,17 +98724,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1381), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1398), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(635), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1275), [anon_sym_type] = ACTIONS(1275), @@ -98749,22 +98749,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(745), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1285), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1493), [anon_sym_using] = ACTIONS(753), [anon_sym_PLUS] = ACTIONS(763), [anon_sym_DASH] = ACTIONS(763), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(739), [anon_sym_void] = ACTIONS(763), [anon_sym_delete] = ACTIONS(763), [anon_sym_PLUS_PLUS] = ACTIONS(765), [anon_sym_DASH_DASH] = ACTIONS(765), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -98795,9 +98795,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [680] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2453), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2455), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -98809,14 +98809,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -98827,17 +98827,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -98852,22 +98852,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -98898,9 +98898,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [681] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1459), - [sym_expression] = STATE(2461), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1456), + [sym_expression] = STATE(2465), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -98914,12 +98914,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_arrow_function] = STATE(1691), [sym__call_signature] = STATE(5489), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1459), - [sym_subscript_expression] = STATE(1459), + [sym_member_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3006), + [sym__augmented_assignment_lhs] = STATE(3028), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5835), [sym_ternary_expression] = STATE(1652), @@ -98930,17 +98930,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1459), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1456), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(617), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1529), [anon_sym_export] = ACTIONS(1081), [anon_sym_type] = ACTIONS(1081), @@ -98955,22 +98955,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1093), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1533), [anon_sym_using] = ACTIONS(1101), [anon_sym_PLUS] = ACTIONS(1107), [anon_sym_DASH] = ACTIONS(1107), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1089), [anon_sym_void] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1107), [anon_sym_PLUS_PLUS] = ACTIONS(1109), [anon_sym_DASH_DASH] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -99001,9 +99001,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [682] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1471), - [sym_expression] = STATE(2615), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1469), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -99015,14 +99015,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1471), - [sym_subscript_expression] = STATE(1471), + [sym_member_expression] = STATE(1469), + [sym_subscript_expression] = STATE(1469), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5622), [sym_ternary_expression] = STATE(1652), @@ -99033,47 +99033,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1471), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1469), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2256), [anon_sym_export] = ACTIONS(2258), [anon_sym_type] = ACTIONS(2258), [anon_sym_namespace] = ACTIONS(2260), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(2262), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2264), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -99104,9 +99104,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [683] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2589), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2592), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -99118,14 +99118,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -99136,17 +99136,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -99161,22 +99161,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -99207,9 +99207,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [684] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1473), - [sym_expression] = STATE(2615), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1468), + [sym_expression] = STATE(2643), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -99221,14 +99221,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5824), + [sym__call_signature] = STATE(5794), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1473), - [sym_subscript_expression] = STATE(1473), + [sym_member_expression] = STATE(1468), + [sym_subscript_expression] = STATE(1468), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(2969), + [sym__augmented_assignment_lhs] = STATE(2993), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5800), [sym_ternary_expression] = STATE(1652), @@ -99239,47 +99239,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1473), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1468), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(537), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(2268), [anon_sym_export] = ACTIONS(2270), [anon_sym_type] = ACTIONS(2270), [anon_sym_namespace] = ACTIONS(2272), [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_typeof] = ACTIONS(184), + [anon_sym_typeof] = ACTIONS(180), [anon_sym_import] = ACTIONS(132), [anon_sym_let] = ACTIONS(2270), - [anon_sym_BANG] = ACTIONS(180), + [anon_sym_BANG] = ACTIONS(176), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_await] = ACTIONS(141), [anon_sym_yield] = ACTIONS(143), [anon_sym_LBRACK] = ACTIONS(819), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(2274), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(2276), - [anon_sym_using] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(184), - [anon_sym_DASH] = ACTIONS(184), + [anon_sym_using] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(180), + [anon_sym_DASH] = ACTIONS(180), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(180), - [anon_sym_void] = ACTIONS(184), - [anon_sym_delete] = ACTIONS(184), + [anon_sym_LT] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(176), + [anon_sym_void] = ACTIONS(180), + [anon_sym_delete] = ACTIONS(180), [anon_sym_PLUS_PLUS] = ACTIONS(691), [anon_sym_DASH_DASH] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -99310,9 +99310,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [685] = { - [sym_import] = STATE(3542), - [sym_parenthesized_expression] = STATE(1457), - [sym_expression] = STATE(2610), + [sym_import] = STATE(3541), + [sym_parenthesized_expression] = STATE(1455), + [sym_expression] = STATE(2608), [sym_primary_expression] = STATE(1512), [sym_yield_expression] = STATE(1652), [sym_object] = STATE(1691), @@ -99324,14 +99324,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_expression] = STATE(1691), [sym_generator_function] = STATE(1691), [sym_arrow_function] = STATE(1691), - [sym__call_signature] = STATE(5728), + [sym__call_signature] = STATE(5740), [sym_call_expression] = STATE(1691), - [sym_new_expression] = STATE(1621), + [sym_new_expression] = STATE(1619), [sym_await_expression] = STATE(1652), - [sym_member_expression] = STATE(1457), - [sym_subscript_expression] = STATE(1457), + [sym_member_expression] = STATE(1455), + [sym_subscript_expression] = STATE(1455), [sym_assignment_expression] = STATE(1652), - [sym__augmented_assignment_lhs] = STATE(3001), + [sym__augmented_assignment_lhs] = STATE(3023), [sym_augmented_assignment_expression] = STATE(1652), [sym__destructuring_pattern] = STATE(5827), [sym_ternary_expression] = STATE(1652), @@ -99342,17 +99342,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_template_string] = STATE(1691), [sym_regex] = STATE(1691), [sym_meta_property] = STATE(1691), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), - [sym_non_null_expression] = STATE(1457), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), + [sym_non_null_expression] = STATE(1455), [sym_type_assertion] = STATE(1652), [sym_as_expression] = STATE(1652), [sym_satisfies_expression] = STATE(1652), [sym_instantiation_expression] = STATE(1652), [sym_internal_module] = STATE(1652), [sym_type_arguments] = STATE(591), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4423), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4421), [sym_identifier] = ACTIONS(1521), [anon_sym_export] = ACTIONS(1361), [anon_sym_type] = ACTIONS(1361), @@ -99367,22 +99367,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(847), [sym_glimmer_opening_tag] = ACTIONS(147), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_class] = ACTIONS(153), + [anon_sym_class] = ACTIONS(149), [anon_sym_async] = ACTIONS(1373), - [anon_sym_function] = ACTIONS(157), + [anon_sym_function] = ACTIONS(153), [anon_sym_new] = ACTIONS(1525), [anon_sym_using] = ACTIONS(1377), [anon_sym_PLUS] = ACTIONS(1383), [anon_sym_DASH] = ACTIONS(1383), [anon_sym_SLASH] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_void] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(827), [sym_number] = ACTIONS(719), @@ -99413,49 +99413,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [686] = { - [sym_import] = STATE(3513), + [sym_import] = STATE(3514), [sym_parenthesized_expression] = STATE(1364), [sym_expression] = STATE(1851), [sym_primary_expression] = STATE(1833), - [sym_yield_expression] = STATE(2130), - [sym_object] = STATE(2117), + [sym_yield_expression] = STATE(2170), + [sym_object] = STATE(2118), [sym_object_pattern] = STATE(5785), - [sym_array] = STATE(2117), + [sym_array] = STATE(2118), [sym_array_pattern] = STATE(5785), - [sym_glimmer_template] = STATE(2130), - [sym_class] = STATE(2117), - [sym_function_expression] = STATE(2117), - [sym_generator_function] = STATE(2117), - [sym_arrow_function] = STATE(2117), + [sym_glimmer_template] = STATE(2170), + [sym_class] = STATE(2118), + [sym_function_expression] = STATE(2118), + [sym_generator_function] = STATE(2118), + [sym_arrow_function] = STATE(2118), [sym__call_signature] = STATE(5783), - [sym_call_expression] = STATE(2117), + [sym_call_expression] = STATE(2118), [sym_new_expression] = STATE(1963), - [sym_await_expression] = STATE(2130), + [sym_await_expression] = STATE(2170), [sym_member_expression] = STATE(1364), [sym_subscript_expression] = STATE(1364), - [sym_assignment_expression] = STATE(2130), - [sym__augmented_assignment_lhs] = STATE(3037), - [sym_augmented_assignment_expression] = STATE(2130), + [sym_assignment_expression] = STATE(2170), + [sym__augmented_assignment_lhs] = STATE(3043), + [sym_augmented_assignment_expression] = STATE(2170), [sym__destructuring_pattern] = STATE(5785), - [sym_ternary_expression] = STATE(2130), - [sym_binary_expression] = STATE(2130), - [sym_unary_expression] = STATE(2130), - [sym_update_expression] = STATE(2130), - [sym_string] = STATE(2117), - [sym_template_string] = STATE(2117), - [sym_regex] = STATE(2117), - [sym_meta_property] = STATE(2117), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3895), + [sym_ternary_expression] = STATE(2170), + [sym_binary_expression] = STATE(2170), + [sym_unary_expression] = STATE(2170), + [sym_update_expression] = STATE(2170), + [sym_string] = STATE(2118), + [sym_template_string] = STATE(2118), + [sym_regex] = STATE(2118), + [sym_meta_property] = STATE(2118), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3893), [sym_non_null_expression] = STATE(1364), - [sym_type_assertion] = STATE(2130), - [sym_as_expression] = STATE(2130), - [sym_satisfies_expression] = STATE(2130), - [sym_instantiation_expression] = STATE(2130), - [sym_internal_module] = STATE(2130), + [sym_type_assertion] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_satisfies_expression] = STATE(2170), + [sym_instantiation_expression] = STATE(2170), + [sym_internal_module] = STATE(2170), [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(5348), - [aux_sym_export_statement_repeat1] = STATE(4499), + [sym_type_parameters] = STATE(5354), + [aux_sym_export_statement_repeat1] = STATE(4492), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1227), [anon_sym_type] = ACTIONS(1227), @@ -99470,8 +99470,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1239), [anon_sym_LBRACK] = ACTIONS(65), [sym_glimmer_opening_tag] = ACTIONS(67), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), [anon_sym_class] = ACTIONS(681), [anon_sym_async] = ACTIONS(1243), [anon_sym_function] = ACTIONS(685), @@ -99480,12 +99478,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1253), [anon_sym_DASH] = ACTIONS(1253), [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(81), [anon_sym_TILDE] = ACTIONS(1235), [anon_sym_void] = ACTIONS(1253), [anon_sym_delete] = ACTIONS(1253), [anon_sym_PLUS_PLUS] = ACTIONS(1255), [anon_sym_DASH_DASH] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(89), [sym_number] = ACTIONS(91), @@ -99516,27 +99516,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [687] = { - [sym_namespace_export] = STATE(5238), - [sym_export_clause] = STATE(4387), + [sym_namespace_export] = STATE(5252), + [sym_export_clause] = STATE(4458), [sym_declaration] = STATE(923), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_class_declaration] = STATE(837), + [sym_function_declaration] = STATE(837), + [sym_generator_function_declaration] = STATE(837), + [sym_decorator] = STATE(1285), + [sym_function_signature] = STATE(837), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(825), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), + [aux_sym_export_statement_repeat1] = STATE(4085), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [anon_sym_STAR] = ACTIONS(2280), [anon_sym_default] = ACTIONS(2282), [anon_sym_type] = ACTIONS(2284), @@ -99544,7 +99544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2288), [anon_sym_namespace] = ACTIONS(2290), [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(699), [anon_sym_import] = ACTIONS(2294), [anon_sym_var] = ACTIONS(2296), @@ -99552,32 +99552,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2300), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2305), [anon_sym_async] = ACTIONS(2307), [anon_sym_function] = ACTIONS(2309), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -99592,52 +99591,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(99), [anon_sym_QMARK] = ACTIONS(695), [anon_sym_declare] = ACTIONS(2314), [anon_sym_module] = ACTIONS(2316), [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2320), [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [688] = { - [sym_namespace_export] = STATE(5238), - [sym_export_clause] = STATE(4387), + [sym_namespace_export] = STATE(5252), + [sym_export_clause] = STATE(4458), [sym_declaration] = STATE(923), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_class_declaration] = STATE(837), + [sym_function_declaration] = STATE(837), + [sym_generator_function_declaration] = STATE(837), + [sym_decorator] = STATE(1285), + [sym_function_signature] = STATE(837), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(825), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), + [aux_sym_export_statement_repeat1] = STATE(4085), + [aux_sym_object_repeat1] = STATE(4823), + [aux_sym_object_pattern_repeat1] = STATE(4834), [anon_sym_STAR] = ACTIONS(2280), [anon_sym_default] = ACTIONS(2282), [anon_sym_type] = ACTIONS(2284), @@ -99645,7 +99645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2288), [anon_sym_namespace] = ACTIONS(2290), [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_import] = ACTIONS(2294), [anon_sym_var] = ACTIONS(2296), @@ -99653,32 +99653,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2300), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2305), [anon_sym_async] = ACTIONS(2307), [anon_sym_function] = ACTIONS(2309), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -99693,52 +99692,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(99), [anon_sym_QMARK] = ACTIONS(695), [anon_sym_declare] = ACTIONS(2314), [anon_sym_module] = ACTIONS(2316), [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2320), [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [689] = { - [sym_namespace_export] = STATE(5238), - [sym_export_clause] = STATE(4387), + [sym_namespace_export] = STATE(5252), + [sym_export_clause] = STATE(4458), [sym_declaration] = STATE(923), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_class_declaration] = STATE(837), + [sym_function_declaration] = STATE(837), + [sym_generator_function_declaration] = STATE(837), + [sym_decorator] = STATE(1285), + [sym_function_signature] = STATE(837), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(825), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), + [aux_sym_export_statement_repeat1] = STATE(4085), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [anon_sym_STAR] = ACTIONS(2280), [anon_sym_default] = ACTIONS(2282), [anon_sym_type] = ACTIONS(2284), @@ -99746,7 +99746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2288), [anon_sym_namespace] = ACTIONS(2290), [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_import] = ACTIONS(2294), [anon_sym_var] = ACTIONS(2296), @@ -99754,32 +99754,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2300), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2305), [anon_sym_async] = ACTIONS(2307), [anon_sym_function] = ACTIONS(2309), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -99794,39 +99793,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(99), [anon_sym_QMARK] = ACTIONS(695), [anon_sym_declare] = ACTIONS(2314), [anon_sym_module] = ACTIONS(2316), [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2320), [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [690] = { - [sym__call_signature] = STATE(5619), - [sym_string] = STATE(3797), - [sym_formal_parameters] = STATE(3895), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [sym_type_parameters] = STATE(5348), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym__call_signature] = STATE(5845), + [sym_string] = STATE(3799), + [sym_formal_parameters] = STATE(3893), + [sym__property_name] = STATE(3799), + [sym_computed_property_name] = STATE(3799), + [sym_type_parameters] = STATE(5354), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(2324), [anon_sym_export] = ACTIONS(2326), [anon_sym_STAR] = ACTIONS(2328), @@ -99834,39 +99834,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2326), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(699), [anon_sym_let] = ACTIONS(2326), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), [anon_sym_async] = ACTIONS(2326), - [anon_sym_function] = ACTIONS(2342), + [anon_sym_function] = ACTIONS(2338), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2326), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -99880,19 +99877,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2348), [sym_private_property_identifier] = ACTIONS(2348), [anon_sym_static] = ACTIONS(2326), @@ -99913,19 +99913,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2326), [anon_sym_object] = ACTIONS(2326), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [691] = { - [sym__call_signature] = STATE(5619), - [sym_string] = STATE(3797), - [sym_formal_parameters] = STATE(3895), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [sym_type_parameters] = STATE(5348), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym__call_signature] = STATE(5845), + [sym_string] = STATE(3799), + [sym_formal_parameters] = STATE(3893), + [sym__property_name] = STATE(3799), + [sym_computed_property_name] = STATE(3799), + [sym_type_parameters] = STATE(5354), + [aux_sym_object_repeat1] = STATE(4823), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(2324), [anon_sym_export] = ACTIONS(2326), [anon_sym_STAR] = ACTIONS(2328), @@ -99933,39 +99933,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2326), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_let] = ACTIONS(2326), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), [anon_sym_async] = ACTIONS(2326), - [anon_sym_function] = ACTIONS(2342), + [anon_sym_function] = ACTIONS(2338), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2326), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -99979,19 +99976,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2348), [sym_private_property_identifier] = ACTIONS(2348), [anon_sym_static] = ACTIONS(2326), @@ -100012,19 +100012,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2326), [anon_sym_object] = ACTIONS(2326), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [692] = { - [sym__call_signature] = STATE(5619), - [sym_string] = STATE(3797), - [sym_formal_parameters] = STATE(3895), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [sym_type_parameters] = STATE(5348), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym__call_signature] = STATE(5845), + [sym_string] = STATE(3799), + [sym_formal_parameters] = STATE(3893), + [sym__property_name] = STATE(3799), + [sym_computed_property_name] = STATE(3799), + [sym_type_parameters] = STATE(5354), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(2324), [anon_sym_export] = ACTIONS(2326), [anon_sym_STAR] = ACTIONS(2328), @@ -100032,39 +100032,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2326), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2326), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), [anon_sym_async] = ACTIONS(2326), - [anon_sym_function] = ACTIONS(2342), + [anon_sym_function] = ACTIONS(2338), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2326), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100078,19 +100075,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(122), [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2348), [sym_private_property_identifier] = ACTIONS(2348), [anon_sym_static] = ACTIONS(2326), @@ -100111,36 +100111,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2326), [anon_sym_object] = ACTIONS(2326), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [693] = { [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_class_declaration] = STATE(837), + [sym_function_declaration] = STATE(837), + [sym_generator_function_declaration] = STATE(837), + [sym_decorator] = STATE(1285), + [sym_function_signature] = STATE(837), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(825), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), + [aux_sym_export_statement_repeat1] = STATE(4085), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2352), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_import] = ACTIONS(2294), [anon_sym_var] = ACTIONS(2296), @@ -100148,32 +100148,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2300), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2305), [anon_sym_async] = ACTIONS(2307), [anon_sym_function] = ACTIONS(2309), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100188,57 +100187,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(99), [anon_sym_QMARK] = ACTIONS(695), [anon_sym_declare] = ACTIONS(2314), [anon_sym_module] = ACTIONS(2354), [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_global] = ACTIONS(2356), [anon_sym_interface] = ACTIONS(2320), [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [694] = { [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_class_declaration] = STATE(837), + [sym_function_declaration] = STATE(837), + [sym_generator_function_declaration] = STATE(837), + [sym_decorator] = STATE(1285), + [sym_function_signature] = STATE(837), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(825), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), + [aux_sym_export_statement_repeat1] = STATE(4085), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2352), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(699), [anon_sym_import] = ACTIONS(2294), [anon_sym_var] = ACTIONS(2296), @@ -100246,32 +100246,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2300), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2305), [anon_sym_async] = ACTIONS(2307), [anon_sym_function] = ACTIONS(2309), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100286,57 +100285,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(99), [anon_sym_QMARK] = ACTIONS(695), [anon_sym_declare] = ACTIONS(2314), [anon_sym_module] = ACTIONS(2354), [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_global] = ACTIONS(2356), [anon_sym_interface] = ACTIONS(2320), [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [695] = { [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_class_declaration] = STATE(837), + [sym_function_declaration] = STATE(837), + [sym_generator_function_declaration] = STATE(837), + [sym_decorator] = STATE(1285), + [sym_function_signature] = STATE(837), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(825), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), + [aux_sym_export_statement_repeat1] = STATE(4085), + [aux_sym_object_repeat1] = STATE(4823), + [aux_sym_object_pattern_repeat1] = STATE(4834), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2352), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_import] = ACTIONS(2294), [anon_sym_var] = ACTIONS(2296), @@ -100344,32 +100344,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2300), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2305), [anon_sym_async] = ACTIONS(2307), [anon_sym_function] = ACTIONS(2309), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100384,51 +100383,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(99), [anon_sym_QMARK] = ACTIONS(695), [anon_sym_declare] = ACTIONS(2314), [anon_sym_module] = ACTIONS(2354), [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_global] = ACTIONS(2356), [anon_sym_interface] = ACTIONS(2320), [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [696] = { - [sym_namespace_export] = STATE(5238), - [sym_export_clause] = STATE(4387), + [sym_namespace_export] = STATE(5252), + [sym_export_clause] = STATE(4458), [sym_declaration] = STATE(923), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_class_declaration] = STATE(837), + [sym_function_declaration] = STATE(837), + [sym_generator_function_declaration] = STATE(837), + [sym_decorator] = STATE(1285), + [sym_function_signature] = STATE(837), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(825), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), + [aux_sym_export_statement_repeat1] = STATE(4085), [anon_sym_STAR] = ACTIONS(2280), [anon_sym_default] = ACTIONS(2282), [anon_sym_type] = ACTIONS(2284), @@ -100436,39 +100436,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2288), [anon_sym_namespace] = ACTIONS(2290), [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_import] = ACTIONS(2294), [anon_sym_var] = ACTIONS(2296), [anon_sym_let] = ACTIONS(2298), [anon_sym_const] = ACTIONS(2300), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2305), [anon_sym_async] = ACTIONS(2307), [anon_sym_function] = ACTIONS(2309), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100483,49 +100482,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(99), [anon_sym_declare] = ACTIONS(2314), [anon_sym_module] = ACTIONS(2316), [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2320), [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [697] = { - [sym_namespace_export] = STATE(5238), - [sym_export_clause] = STATE(4387), + [sym_namespace_export] = STATE(5252), + [sym_export_clause] = STATE(4458), [sym_declaration] = STATE(923), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_class_declaration] = STATE(837), + [sym_function_declaration] = STATE(837), + [sym_generator_function_declaration] = STATE(837), + [sym_decorator] = STATE(1285), + [sym_function_signature] = STATE(837), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(825), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), + [aux_sym_export_statement_repeat1] = STATE(4085), [anon_sym_STAR] = ACTIONS(2280), [anon_sym_default] = ACTIONS(2360), [anon_sym_type] = ACTIONS(2284), @@ -100533,39 +100533,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2288), [anon_sym_namespace] = ACTIONS(2290), [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_import] = ACTIONS(2294), [anon_sym_var] = ACTIONS(2296), [anon_sym_let] = ACTIONS(2298), [anon_sym_const] = ACTIONS(2300), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2305), [anon_sym_async] = ACTIONS(2307), [anon_sym_function] = ACTIONS(2309), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100580,36 +100579,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(99), [anon_sym_declare] = ACTIONS(2314), [anon_sym_module] = ACTIONS(2316), [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_interface] = ACTIONS(2320), [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [698] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [sym_override_modifier] = STATE(2805), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_string] = STATE(3799), + [sym__property_name] = STATE(3799), + [sym_computed_property_name] = STATE(3799), + [sym_override_modifier] = STATE(2814), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(2362), [anon_sym_export] = ACTIONS(2362), [anon_sym_STAR] = ACTIONS(2328), @@ -100617,38 +100617,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(699), [anon_sym_let] = ACTIONS(2362), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), [anon_sym_async] = ACTIONS(2364), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100663,18 +100660,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2348), [sym_private_property_identifier] = ACTIONS(2348), [anon_sym_static] = ACTIONS(2362), @@ -100695,17 +100695,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2362), [anon_sym_object] = ACTIONS(2362), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [699] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [sym_override_modifier] = STATE(2805), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_string] = STATE(3799), + [sym__property_name] = STATE(3799), + [sym_computed_property_name] = STATE(3799), + [sym_override_modifier] = STATE(2814), + [aux_sym_object_repeat1] = STATE(4823), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(2362), [anon_sym_export] = ACTIONS(2362), [anon_sym_STAR] = ACTIONS(2328), @@ -100713,38 +100713,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_let] = ACTIONS(2362), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), [anon_sym_async] = ACTIONS(2364), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100759,18 +100756,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2348), [sym_private_property_identifier] = ACTIONS(2348), [anon_sym_static] = ACTIONS(2362), @@ -100791,17 +100791,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2362), [anon_sym_object] = ACTIONS(2362), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [700] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [sym_override_modifier] = STATE(2805), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_string] = STATE(3799), + [sym__property_name] = STATE(3799), + [sym_computed_property_name] = STATE(3799), + [sym_override_modifier] = STATE(2814), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(2362), [anon_sym_export] = ACTIONS(2362), [anon_sym_STAR] = ACTIONS(2328), @@ -100809,38 +100809,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2362), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), [anon_sym_async] = ACTIONS(2364), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100855,18 +100852,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2348), [sym_private_property_identifier] = ACTIONS(2348), [anon_sym_static] = ACTIONS(2362), @@ -100887,16 +100887,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2362), [anon_sym_object] = ACTIONS(2362), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [701] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_string] = STATE(3799), + [sym__property_name] = STATE(3799), + [sym_computed_property_name] = STATE(3799), + [aux_sym_object_repeat1] = STATE(4823), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(2362), [anon_sym_export] = ACTIONS(2362), [anon_sym_STAR] = ACTIONS(122), @@ -100904,38 +100904,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_let] = ACTIONS(2362), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), [anon_sym_async] = ACTIONS(2362), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -100950,18 +100947,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2348), [sym_private_property_identifier] = ACTIONS(2348), [anon_sym_static] = ACTIONS(2362), @@ -100982,16 +100982,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2362), [anon_sym_object] = ACTIONS(2362), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [702] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_string] = STATE(3799), + [sym__property_name] = STATE(3799), + [sym_computed_property_name] = STATE(3799), + [aux_sym_object_repeat1] = STATE(4823), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(2362), [anon_sym_export] = ACTIONS(2362), [anon_sym_STAR] = ACTIONS(2328), @@ -100999,38 +100999,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_let] = ACTIONS(2362), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), [anon_sym_async] = ACTIONS(2364), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -101045,18 +101042,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2348), [sym_private_property_identifier] = ACTIONS(2348), [anon_sym_static] = ACTIONS(2362), @@ -101077,16 +101077,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2362), [anon_sym_object] = ACTIONS(2362), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [703] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_string] = STATE(3799), + [sym__property_name] = STATE(3799), + [sym_computed_property_name] = STATE(3799), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(2362), [anon_sym_export] = ACTIONS(2362), [anon_sym_STAR] = ACTIONS(2328), @@ -101094,38 +101094,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(699), [anon_sym_let] = ACTIONS(2362), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), [anon_sym_async] = ACTIONS(2364), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -101140,18 +101137,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2348), [sym_private_property_identifier] = ACTIONS(2348), [anon_sym_static] = ACTIONS(2362), @@ -101172,16 +101172,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2362), [anon_sym_object] = ACTIONS(2362), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [704] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_string] = STATE(3799), + [sym__property_name] = STATE(3799), + [sym_computed_property_name] = STATE(3799), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(2362), [anon_sym_export] = ACTIONS(2362), [anon_sym_STAR] = ACTIONS(122), @@ -101189,38 +101189,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(699), [anon_sym_let] = ACTIONS(2362), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), [anon_sym_async] = ACTIONS(2362), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -101235,18 +101232,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2348), [sym_private_property_identifier] = ACTIONS(2348), [anon_sym_static] = ACTIONS(2362), @@ -101267,206 +101267,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2362), [anon_sym_object] = ACTIONS(2362), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [705] = { - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_identifier] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1923), - [anon_sym_default] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_EQ] = ACTIONS(1923), - [anon_sym_namespace] = ACTIONS(1923), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_typeof] = ACTIONS(1923), - [anon_sym_import] = ACTIONS(1923), - [anon_sym_from] = ACTIONS(1923), - [anon_sym_with] = ACTIONS(1923), - [anon_sym_var] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1923), - [anon_sym_const] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_else] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_switch] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_await] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_do] = ACTIONS(1923), - [anon_sym_try] = ACTIONS(1923), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_debugger] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_throw] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(1921), - [anon_sym_case] = ACTIONS(1923), - [anon_sym_yield] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_RBRACK] = ACTIONS(1921), - [sym_glimmer_opening_tag] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1921), - [anon_sym_SQUOTE] = ACTIONS(1921), - [anon_sym_class] = ACTIONS(1923), - [anon_sym_async] = ACTIONS(1923), - [anon_sym_function] = ACTIONS(1923), - [anon_sym_EQ_GT] = ACTIONS(1921), - [anon_sym_new] = ACTIONS(1923), - [anon_sym_using] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1923), - [anon_sym_SLASH] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1921), - [anon_sym_void] = ACTIONS(1923), - [anon_sym_delete] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1921), - [sym_number] = ACTIONS(1921), - [sym_private_property_identifier] = ACTIONS(1921), - [sym_this] = ACTIONS(1923), - [sym_super] = ACTIONS(1923), - [sym_true] = ACTIONS(1923), - [sym_false] = ACTIONS(1923), - [sym_null] = ACTIONS(1923), - [sym_undefined] = ACTIONS(1923), - [anon_sym_AT] = ACTIONS(1921), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_readonly] = ACTIONS(1923), - [anon_sym_get] = ACTIONS(1923), - [anon_sym_set] = ACTIONS(1923), - [anon_sym_QMARK] = ACTIONS(1921), - [anon_sym_declare] = ACTIONS(1923), - [anon_sym_public] = ACTIONS(1923), - [anon_sym_private] = ACTIONS(1923), - [anon_sym_protected] = ACTIONS(1923), - [anon_sym_override] = ACTIONS(1923), - [anon_sym_module] = ACTIONS(1923), - [anon_sym_any] = ACTIONS(1923), - [anon_sym_number] = ACTIONS(1923), - [anon_sym_boolean] = ACTIONS(1923), - [anon_sym_string] = ACTIONS(1923), - [anon_sym_symbol] = ACTIONS(1923), - [anon_sym_object] = ACTIONS(1923), - [anon_sym_abstract] = ACTIONS(1923), - [anon_sym_extends] = ACTIONS(1923), - [anon_sym_interface] = ACTIONS(1923), - [anon_sym_enum] = ACTIONS(1923), + [ts_builtin_sym_end] = ACTIONS(1747), + [sym_identifier] = ACTIONS(1749), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_default] = ACTIONS(1749), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_EQ] = ACTIONS(1749), + [anon_sym_namespace] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1747), + [anon_sym_COMMA] = ACTIONS(1747), + [anon_sym_RBRACE] = ACTIONS(1747), + [anon_sym_typeof] = ACTIONS(1749), + [anon_sym_import] = ACTIONS(1749), + [anon_sym_from] = ACTIONS(1749), + [anon_sym_with] = ACTIONS(1749), + [anon_sym_var] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [anon_sym_BANG] = ACTIONS(1747), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_switch] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1747), + [anon_sym_SEMI] = ACTIONS(1747), + [anon_sym_RPAREN] = ACTIONS(1747), + [anon_sym_await] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_debugger] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_throw] = ACTIONS(1749), + [anon_sym_COLON] = ACTIONS(1747), + [anon_sym_case] = ACTIONS(1749), + [anon_sym_yield] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1747), + [anon_sym_RBRACK] = ACTIONS(1747), + [sym_glimmer_opening_tag] = ACTIONS(1747), + [anon_sym_class] = ACTIONS(1749), + [anon_sym_async] = ACTIONS(1749), + [anon_sym_function] = ACTIONS(1749), + [anon_sym_EQ_GT] = ACTIONS(1747), + [anon_sym_new] = ACTIONS(1749), + [anon_sym_using] = ACTIONS(1749), + [anon_sym_AMP] = ACTIONS(1747), + [anon_sym_PIPE] = ACTIONS(1747), + [anon_sym_PLUS] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1749), + [anon_sym_SLASH] = ACTIONS(1749), + [anon_sym_LT] = ACTIONS(1749), + [anon_sym_GT] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1747), + [anon_sym_void] = ACTIONS(1749), + [anon_sym_delete] = ACTIONS(1749), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(1747), + [anon_sym_SQUOTE] = ACTIONS(1747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1747), + [sym_number] = ACTIONS(1747), + [sym_private_property_identifier] = ACTIONS(1747), + [sym_this] = ACTIONS(1749), + [sym_super] = ACTIONS(1749), + [sym_true] = ACTIONS(1749), + [sym_false] = ACTIONS(1749), + [sym_null] = ACTIONS(1749), + [sym_undefined] = ACTIONS(1749), + [anon_sym_AT] = ACTIONS(1747), + [anon_sym_static] = ACTIONS(1749), + [anon_sym_readonly] = ACTIONS(1749), + [anon_sym_get] = ACTIONS(1749), + [anon_sym_set] = ACTIONS(1749), + [anon_sym_QMARK] = ACTIONS(1747), + [anon_sym_declare] = ACTIONS(1749), + [anon_sym_public] = ACTIONS(1749), + [anon_sym_private] = ACTIONS(1749), + [anon_sym_protected] = ACTIONS(1749), + [anon_sym_override] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_any] = ACTIONS(1749), + [anon_sym_number] = ACTIONS(1749), + [anon_sym_boolean] = ACTIONS(1749), + [anon_sym_string] = ACTIONS(1749), + [anon_sym_symbol] = ACTIONS(1749), + [anon_sym_object] = ACTIONS(1749), + [anon_sym_abstract] = ACTIONS(1749), + [anon_sym_extends] = ACTIONS(1749), + [anon_sym_interface] = ACTIONS(1749), + [anon_sym_enum] = ACTIONS(1749), [sym_html_comment] = ACTIONS(5), }, [706] = { - [ts_builtin_sym_end] = ACTIONS(1925), - [sym_identifier] = ACTIONS(1927), - [anon_sym_export] = ACTIONS(1927), - [anon_sym_default] = ACTIONS(1927), - [anon_sym_type] = ACTIONS(1927), - [anon_sym_EQ] = ACTIONS(1927), - [anon_sym_namespace] = ACTIONS(1927), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_COMMA] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_typeof] = ACTIONS(1927), - [anon_sym_import] = ACTIONS(1927), - [anon_sym_from] = ACTIONS(1927), - [anon_sym_with] = ACTIONS(1927), - [anon_sym_var] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_else] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_switch] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_do] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_debugger] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_throw] = ACTIONS(1927), - [anon_sym_COLON] = ACTIONS(1925), - [anon_sym_case] = ACTIONS(1927), - [anon_sym_yield] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1925), - [anon_sym_RBRACK] = ACTIONS(1925), - [sym_glimmer_opening_tag] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_SQUOTE] = ACTIONS(1925), - [anon_sym_class] = ACTIONS(1927), - [anon_sym_async] = ACTIONS(1927), - [anon_sym_function] = ACTIONS(1927), - [anon_sym_EQ_GT] = ACTIONS(1925), - [anon_sym_new] = ACTIONS(1927), - [anon_sym_using] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_PLUS] = ACTIONS(1927), - [anon_sym_DASH] = ACTIONS(1927), - [anon_sym_SLASH] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1927), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_void] = ACTIONS(1927), - [anon_sym_delete] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1925), + [ts_builtin_sym_end] = ACTIONS(1743), + [sym_identifier] = ACTIONS(1745), + [anon_sym_export] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_type] = ACTIONS(1745), + [anon_sym_EQ] = ACTIONS(1745), + [anon_sym_namespace] = ACTIONS(1745), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_COMMA] = ACTIONS(1743), + [anon_sym_RBRACE] = ACTIONS(1743), + [anon_sym_typeof] = ACTIONS(1745), + [anon_sym_import] = ACTIONS(1745), + [anon_sym_from] = ACTIONS(1745), + [anon_sym_with] = ACTIONS(1745), + [anon_sym_var] = ACTIONS(1745), + [anon_sym_let] = ACTIONS(1745), + [anon_sym_const] = ACTIONS(1745), + [anon_sym_BANG] = ACTIONS(1743), + [anon_sym_else] = ACTIONS(1745), + [anon_sym_if] = ACTIONS(1745), + [anon_sym_switch] = ACTIONS(1745), + [anon_sym_for] = ACTIONS(1745), + [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_SEMI] = ACTIONS(1743), + [anon_sym_RPAREN] = ACTIONS(1743), + [anon_sym_await] = ACTIONS(1745), + [anon_sym_while] = ACTIONS(1745), + [anon_sym_do] = ACTIONS(1745), + [anon_sym_try] = ACTIONS(1745), + [anon_sym_break] = ACTIONS(1745), + [anon_sym_continue] = ACTIONS(1745), + [anon_sym_debugger] = ACTIONS(1745), + [anon_sym_return] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(1745), + [anon_sym_COLON] = ACTIONS(1743), + [anon_sym_case] = ACTIONS(1745), + [anon_sym_yield] = ACTIONS(1745), + [anon_sym_LBRACK] = ACTIONS(1743), + [anon_sym_RBRACK] = ACTIONS(1743), + [sym_glimmer_opening_tag] = ACTIONS(1743), + [anon_sym_class] = ACTIONS(1745), + [anon_sym_async] = ACTIONS(1745), + [anon_sym_function] = ACTIONS(1745), + [anon_sym_EQ_GT] = ACTIONS(1743), + [anon_sym_new] = ACTIONS(1745), + [anon_sym_using] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1743), + [anon_sym_PIPE] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1745), + [anon_sym_SLASH] = ACTIONS(1745), + [anon_sym_LT] = ACTIONS(1745), + [anon_sym_GT] = ACTIONS(1743), + [anon_sym_TILDE] = ACTIONS(1743), + [anon_sym_void] = ACTIONS(1745), + [anon_sym_delete] = ACTIONS(1745), + [anon_sym_PLUS_PLUS] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1743), + [anon_sym_SQUOTE] = ACTIONS(1743), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1925), - [sym_number] = ACTIONS(1925), - [sym_private_property_identifier] = ACTIONS(1925), - [sym_this] = ACTIONS(1927), - [sym_super] = ACTIONS(1927), - [sym_true] = ACTIONS(1927), - [sym_false] = ACTIONS(1927), - [sym_null] = ACTIONS(1927), - [sym_undefined] = ACTIONS(1927), - [anon_sym_AT] = ACTIONS(1925), - [anon_sym_static] = ACTIONS(1927), - [anon_sym_readonly] = ACTIONS(1927), - [anon_sym_get] = ACTIONS(1927), - [anon_sym_set] = ACTIONS(1927), - [anon_sym_QMARK] = ACTIONS(1925), - [anon_sym_declare] = ACTIONS(1927), - [anon_sym_public] = ACTIONS(1927), - [anon_sym_private] = ACTIONS(1927), - [anon_sym_protected] = ACTIONS(1927), - [anon_sym_override] = ACTIONS(1927), - [anon_sym_module] = ACTIONS(1927), - [anon_sym_any] = ACTIONS(1927), - [anon_sym_number] = ACTIONS(1927), - [anon_sym_boolean] = ACTIONS(1927), - [anon_sym_string] = ACTIONS(1927), - [anon_sym_symbol] = ACTIONS(1927), - [anon_sym_object] = ACTIONS(1927), - [anon_sym_abstract] = ACTIONS(1927), - [anon_sym_extends] = ACTIONS(1927), - [anon_sym_interface] = ACTIONS(1927), - [anon_sym_enum] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1743), + [sym_number] = ACTIONS(1743), + [sym_private_property_identifier] = ACTIONS(1743), + [sym_this] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_true] = ACTIONS(1745), + [sym_false] = ACTIONS(1745), + [sym_null] = ACTIONS(1745), + [sym_undefined] = ACTIONS(1745), + [anon_sym_AT] = ACTIONS(1743), + [anon_sym_static] = ACTIONS(1745), + [anon_sym_readonly] = ACTIONS(1745), + [anon_sym_get] = ACTIONS(1745), + [anon_sym_set] = ACTIONS(1745), + [anon_sym_QMARK] = ACTIONS(1743), + [anon_sym_declare] = ACTIONS(1745), + [anon_sym_public] = ACTIONS(1745), + [anon_sym_private] = ACTIONS(1745), + [anon_sym_protected] = ACTIONS(1745), + [anon_sym_override] = ACTIONS(1745), + [anon_sym_module] = ACTIONS(1745), + [anon_sym_any] = ACTIONS(1745), + [anon_sym_number] = ACTIONS(1745), + [anon_sym_boolean] = ACTIONS(1745), + [anon_sym_string] = ACTIONS(1745), + [anon_sym_symbol] = ACTIONS(1745), + [anon_sym_object] = ACTIONS(1745), + [anon_sym_abstract] = ACTIONS(1745), + [anon_sym_extends] = ACTIONS(1745), + [anon_sym_interface] = ACTIONS(1745), + [anon_sym_enum] = ACTIONS(1745), [sym_html_comment] = ACTIONS(5), }, [707] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_string] = STATE(3799), + [sym__property_name] = STATE(3799), + [sym_computed_property_name] = STATE(3799), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(2362), [anon_sym_export] = ACTIONS(2362), [anon_sym_STAR] = ACTIONS(2328), @@ -101474,38 +101474,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2362), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), [anon_sym_async] = ACTIONS(2364), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -101520,18 +101517,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2348), [sym_private_property_identifier] = ACTIONS(2348), [anon_sym_static] = ACTIONS(2362), @@ -101552,16 +101552,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2362), [anon_sym_object] = ACTIONS(2362), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [708] = { - [sym_string] = STATE(3797), - [sym__property_name] = STATE(3797), - [sym_computed_property_name] = STATE(3797), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_string] = STATE(3799), + [sym__property_name] = STATE(3799), + [sym_computed_property_name] = STATE(3799), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(2362), [anon_sym_export] = ACTIONS(2362), [anon_sym_STAR] = ACTIONS(122), @@ -101569,38 +101569,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(2362), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), [anon_sym_async] = ACTIONS(2362), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -101615,18 +101612,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(2348), [sym_private_property_identifier] = ACTIONS(2348), [anon_sym_static] = ACTIONS(2362), @@ -101647,105 +101647,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2362), [anon_sym_object] = ACTIONS(2362), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [709] = { - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [710] = { [ts_builtin_sym_end] = ACTIONS(2372), [sym_identifier] = ACTIONS(2374), [anon_sym_export] = ACTIONS(2374), @@ -101785,9 +101691,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2372), [anon_sym_RBRACK] = ACTIONS(2372), [sym_glimmer_opening_tag] = ACTIONS(2372), - [anon_sym_GT] = ACTIONS(2372), - [anon_sym_DQUOTE] = ACTIONS(2372), - [anon_sym_SQUOTE] = ACTIONS(2372), [anon_sym_class] = ACTIONS(2374), [anon_sym_async] = ACTIONS(2374), [anon_sym_function] = ACTIONS(2374), @@ -101800,11 +101703,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2374), [anon_sym_SLASH] = ACTIONS(2374), [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2372), [anon_sym_TILDE] = ACTIONS(2372), [anon_sym_void] = ACTIONS(2374), [anon_sym_delete] = ACTIONS(2374), [anon_sym_PLUS_PLUS] = ACTIONS(2372), [anon_sym_DASH_DASH] = ACTIONS(2372), + [anon_sym_DQUOTE] = ACTIONS(2372), + [anon_sym_SQUOTE] = ACTIONS(2372), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2372), [sym_number] = ACTIONS(2372), @@ -101839,7 +101745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2374), [sym_html_comment] = ACTIONS(5), }, - [711] = { + [710] = { [ts_builtin_sym_end] = ACTIONS(2376), [sym_identifier] = ACTIONS(2378), [anon_sym_export] = ACTIONS(2378), @@ -101879,9 +101785,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2376), [anon_sym_RBRACK] = ACTIONS(2376), [sym_glimmer_opening_tag] = ACTIONS(2376), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_DQUOTE] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2376), [anon_sym_class] = ACTIONS(2378), [anon_sym_async] = ACTIONS(2378), [anon_sym_function] = ACTIONS(2378), @@ -101894,11 +101797,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2378), [anon_sym_SLASH] = ACTIONS(2378), [anon_sym_LT] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2376), [anon_sym_TILDE] = ACTIONS(2376), [anon_sym_void] = ACTIONS(2378), [anon_sym_delete] = ACTIONS(2378), [anon_sym_PLUS_PLUS] = ACTIONS(2376), [anon_sym_DASH_DASH] = ACTIONS(2376), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2376), [sym_number] = ACTIONS(2376), @@ -101933,6 +101839,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2378), [sym_html_comment] = ACTIONS(5), }, + [711] = { + [sym_declaration] = STATE(869), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_class_declaration] = STATE(837), + [sym_function_declaration] = STATE(837), + [sym_generator_function_declaration] = STATE(837), + [sym_decorator] = STATE(1285), + [sym_function_signature] = STATE(837), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(825), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), + [aux_sym_export_statement_repeat1] = STATE(4085), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2352), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_import] = ACTIONS(2294), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_function] = ACTIONS(2309), + [anon_sym_EQ_GT] = ACTIONS(687), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(122), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2354), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2320), + [anon_sym_enum] = ACTIONS(2322), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, [712] = { [ts_builtin_sym_end] = ACTIONS(2380), [sym_identifier] = ACTIONS(2382), @@ -101973,9 +101973,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2380), [anon_sym_RBRACK] = ACTIONS(2380), [sym_glimmer_opening_tag] = ACTIONS(2380), - [anon_sym_GT] = ACTIONS(2380), - [anon_sym_DQUOTE] = ACTIONS(2380), - [anon_sym_SQUOTE] = ACTIONS(2380), [anon_sym_class] = ACTIONS(2382), [anon_sym_async] = ACTIONS(2382), [anon_sym_function] = ACTIONS(2382), @@ -101988,11 +101985,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2382), [anon_sym_SLASH] = ACTIONS(2382), [anon_sym_LT] = ACTIONS(2382), + [anon_sym_GT] = ACTIONS(2380), [anon_sym_TILDE] = ACTIONS(2380), [anon_sym_void] = ACTIONS(2382), [anon_sym_delete] = ACTIONS(2382), [anon_sym_PLUS_PLUS] = ACTIONS(2380), [anon_sym_DASH_DASH] = ACTIONS(2380), + [anon_sym_DQUOTE] = ACTIONS(2380), + [anon_sym_SQUOTE] = ACTIONS(2380), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2380), [sym_number] = ACTIONS(2380), @@ -102067,9 +102067,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2384), [anon_sym_RBRACK] = ACTIONS(2384), [sym_glimmer_opening_tag] = ACTIONS(2384), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_DQUOTE] = ACTIONS(2384), - [anon_sym_SQUOTE] = ACTIONS(2384), [anon_sym_class] = ACTIONS(2386), [anon_sym_async] = ACTIONS(2386), [anon_sym_function] = ACTIONS(2386), @@ -102082,11 +102079,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2386), [anon_sym_SLASH] = ACTIONS(2386), [anon_sym_LT] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2384), [anon_sym_TILDE] = ACTIONS(2384), [anon_sym_void] = ACTIONS(2386), [anon_sym_delete] = ACTIONS(2386), [anon_sym_PLUS_PLUS] = ACTIONS(2384), [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_DQUOTE] = ACTIONS(2384), + [anon_sym_SQUOTE] = ACTIONS(2384), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2384), [sym_number] = ACTIONS(2384), @@ -102161,9 +102161,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2388), [anon_sym_RBRACK] = ACTIONS(2388), [sym_glimmer_opening_tag] = ACTIONS(2388), - [anon_sym_GT] = ACTIONS(2388), - [anon_sym_DQUOTE] = ACTIONS(2388), - [anon_sym_SQUOTE] = ACTIONS(2388), [anon_sym_class] = ACTIONS(2390), [anon_sym_async] = ACTIONS(2390), [anon_sym_function] = ACTIONS(2390), @@ -102176,11 +102173,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2390), [anon_sym_SLASH] = ACTIONS(2390), [anon_sym_LT] = ACTIONS(2390), + [anon_sym_GT] = ACTIONS(2388), [anon_sym_TILDE] = ACTIONS(2388), [anon_sym_void] = ACTIONS(2390), [anon_sym_delete] = ACTIONS(2390), [anon_sym_PLUS_PLUS] = ACTIONS(2388), [anon_sym_DASH_DASH] = ACTIONS(2388), + [anon_sym_DQUOTE] = ACTIONS(2388), + [anon_sym_SQUOTE] = ACTIONS(2388), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2388), [sym_number] = ACTIONS(2388), @@ -102217,60 +102217,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [715] = { [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_class_declaration] = STATE(837), + [sym_function_declaration] = STATE(837), + [sym_generator_function_declaration] = STATE(837), + [sym_decorator] = STATE(1285), + [sym_function_signature] = STATE(837), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(825), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), + [aux_sym_export_statement_repeat1] = STATE(4085), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2352), [anon_sym_EQ] = ACTIONS(855), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_import] = ACTIONS(2294), [anon_sym_var] = ACTIONS(2296), [anon_sym_let] = ACTIONS(2298), [anon_sym_const] = ACTIONS(2300), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_class] = ACTIONS(2305), [anon_sym_async] = ACTIONS(2307), [anon_sym_function] = ACTIONS(2309), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -102285,33 +102284,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(99), [anon_sym_declare] = ACTIONS(2314), [anon_sym_module] = ACTIONS(2354), [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), + [anon_sym_satisfies] = ACTIONS(157), [anon_sym_global] = ACTIONS(2356), [anon_sym_interface] = ACTIONS(2320), [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [716] = { - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(1988), [anon_sym_export] = ACTIONS(1988), [anon_sym_STAR] = ACTIONS(1988), @@ -102319,38 +102319,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(699), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(1988), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), [anon_sym_async] = ACTIONS(1988), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -102365,18 +102362,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(1990), [sym_private_property_identifier] = ACTIONS(1990), [anon_sym_static] = ACTIONS(1988), @@ -102397,197 +102397,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1988), [anon_sym_object] = ACTIONS(1988), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [717] = { - [sym_declaration] = STATE(3947), - [sym_variable_declaration] = STATE(3912), - [sym_lexical_declaration] = STATE(3912), - [sym_class_declaration] = STATE(3912), - [sym_function_declaration] = STATE(3912), - [sym_generator_function_declaration] = STATE(3912), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(3912), - [sym_ambient_declaration] = STATE(3912), - [sym_abstract_class_declaration] = STATE(3912), - [sym_module] = STATE(3912), - [sym_internal_module] = STATE(3916), - [sym_import_alias] = STATE(3912), - [sym_interface_declaration] = STATE(3912), - [sym_enum_declaration] = STATE(3912), - [sym_type_alias_declaration] = STATE(3912), - [aux_sym_export_statement_repeat1] = STATE(4322), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2392), - [anon_sym_EQ] = ACTIONS(925), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_import] = ACTIONS(2396), - [anon_sym_var] = ACTIONS(2398), - [anon_sym_let] = ACTIONS(2400), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2404), - [anon_sym_async] = ACTIONS(2406), - [anon_sym_function] = ACTIONS(2408), - [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2412), - [anon_sym_abstract] = ACTIONS(2414), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2416), - [anon_sym_interface] = ACTIONS(2418), - [anon_sym_enum] = ACTIONS(2420), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [718] = { - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_EQ] = ACTIONS(666), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [sym_number] = ACTIONS(1986), - [sym_private_property_identifier] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_override] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_object] = ACTIONS(1984), - [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [719] = { - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [aux_sym_object_repeat1] = STATE(4823), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(1988), [anon_sym_export] = ACTIONS(1988), [anon_sym_STAR] = ACTIONS(1988), @@ -102595,38 +102411,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_let] = ACTIONS(1988), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), [anon_sym_async] = ACTIONS(1988), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -102641,18 +102454,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(1990), [sym_private_property_identifier] = ACTIONS(1990), [anon_sym_static] = ACTIONS(1988), @@ -102673,13 +102489,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1988), [anon_sym_object] = ACTIONS(1988), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [720] = { - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [718] = { + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1984), + [anon_sym_export] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(1984), + [anon_sym_type] = ACTIONS(1984), + [anon_sym_EQ] = ACTIONS(666), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(1984), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(699), + [anon_sym_let] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(1986), + [anon_sym_DOT] = ACTIONS(122), + [anon_sym_async] = ACTIONS(1984), + [anon_sym_EQ_GT] = ACTIONS(687), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1984), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2311), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1986), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [sym_number] = ACTIONS(1986), + [sym_private_property_identifier] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1984), + [anon_sym_readonly] = ACTIONS(1984), + [anon_sym_get] = ACTIONS(1984), + [anon_sym_set] = ACTIONS(1984), + [anon_sym_QMARK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(1984), + [anon_sym_public] = ACTIONS(1984), + [anon_sym_private] = ACTIONS(1984), + [anon_sym_protected] = ACTIONS(1984), + [anon_sym_override] = ACTIONS(1984), + [anon_sym_module] = ACTIONS(1984), + [anon_sym_any] = ACTIONS(1984), + [anon_sym_number] = ACTIONS(1984), + [anon_sym_boolean] = ACTIONS(1984), + [anon_sym_string] = ACTIONS(1984), + [anon_sym_symbol] = ACTIONS(1984), + [anon_sym_object] = ACTIONS(1984), + [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [719] = { + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(1988), [anon_sym_export] = ACTIONS(1988), [anon_sym_STAR] = ACTIONS(1988), @@ -102687,38 +102595,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(699), [anon_sym_let] = ACTIONS(1988), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1990), - [anon_sym_SQUOTE] = ACTIONS(1990), [anon_sym_async] = ACTIONS(1988), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1988), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -102733,18 +102638,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(1990), [sym_private_property_identifier] = ACTIONS(1990), [anon_sym_static] = ACTIONS(1988), @@ -102765,13 +102673,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1988), [anon_sym_object] = ACTIONS(1988), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [720] = { + [sym_declaration] = STATE(869), + [sym_variable_declaration] = STATE(837), + [sym_lexical_declaration] = STATE(837), + [sym_class_declaration] = STATE(837), + [sym_function_declaration] = STATE(837), + [sym_generator_function_declaration] = STATE(837), + [sym_decorator] = STATE(1285), + [sym_function_signature] = STATE(837), + [sym_ambient_declaration] = STATE(837), + [sym_abstract_class_declaration] = STATE(837), + [sym_module] = STATE(837), + [sym_internal_module] = STATE(825), + [sym_import_alias] = STATE(837), + [sym_interface_declaration] = STATE(837), + [sym_enum_declaration] = STATE(837), + [sym_type_alias_declaration] = STATE(837), + [aux_sym_export_statement_repeat1] = STATE(4085), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2352), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2290), + [anon_sym_import] = ACTIONS(2294), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_function] = ACTIONS(2309), + [anon_sym_EQ_GT] = ACTIONS(931), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(122), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_declare] = ACTIONS(2314), + [anon_sym_module] = ACTIONS(2354), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2320), + [anon_sym_enum] = ACTIONS(2322), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [721] = { - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [aux_sym_object_repeat1] = STATE(4823), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(1984), [anon_sym_export] = ACTIONS(1984), [anon_sym_STAR] = ACTIONS(1984), @@ -102779,38 +102779,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_let] = ACTIONS(1984), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), [anon_sym_async] = ACTIONS(1984), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1984), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -102825,18 +102822,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1986), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(1986), [sym_private_property_identifier] = ACTIONS(1986), [anon_sym_static] = ACTIONS(1984), @@ -102857,64 +102857,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1984), [anon_sym_object] = ACTIONS(1984), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [722] = { - [sym_declaration] = STATE(869), - [sym_variable_declaration] = STATE(836), - [sym_lexical_declaration] = STATE(836), - [sym_class_declaration] = STATE(836), - [sym_function_declaration] = STATE(836), - [sym_generator_function_declaration] = STATE(836), - [sym_decorator] = STATE(1297), - [sym_function_signature] = STATE(836), - [sym_ambient_declaration] = STATE(836), - [sym_abstract_class_declaration] = STATE(836), - [sym_module] = STATE(836), - [sym_internal_module] = STATE(824), - [sym_import_alias] = STATE(836), - [sym_interface_declaration] = STATE(836), - [sym_enum_declaration] = STATE(836), - [sym_type_alias_declaration] = STATE(836), - [aux_sym_export_statement_repeat1] = STATE(4084), + [sym_declaration] = STATE(3947), + [sym_variable_declaration] = STATE(3912), + [sym_lexical_declaration] = STATE(3912), + [sym_class_declaration] = STATE(3912), + [sym_function_declaration] = STATE(3912), + [sym_generator_function_declaration] = STATE(3912), + [sym_decorator] = STATE(1285), + [sym_function_signature] = STATE(3912), + [sym_ambient_declaration] = STATE(3912), + [sym_abstract_class_declaration] = STATE(3912), + [sym_module] = STATE(3912), + [sym_internal_module] = STATE(3916), + [sym_import_alias] = STATE(3912), + [sym_interface_declaration] = STATE(3912), + [sym_enum_declaration] = STATE(3912), + [sym_type_alias_declaration] = STATE(3912), + [aux_sym_export_statement_repeat1] = STATE(4323), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2352), + [anon_sym_type] = ACTIONS(2392), [anon_sym_EQ] = ACTIONS(925), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2290), - [anon_sym_import] = ACTIONS(2294), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2394), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2398), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2402), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_class] = ACTIONS(2305), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_function] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2406), + [anon_sym_function] = ACTIONS(2408), [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -102929,33 +102928,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_instanceof] = ACTIONS(157), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_AT] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(2314), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2318), - [anon_sym_satisfies] = ACTIONS(161), - [anon_sym_global] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2322), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2412), + [anon_sym_abstract] = ACTIONS(2414), + [anon_sym_satisfies] = ACTIONS(157), + [anon_sym_global] = ACTIONS(2416), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2420), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [723] = { - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(1984), [anon_sym_export] = ACTIONS(1984), [anon_sym_STAR] = ACTIONS(1984), @@ -102963,38 +102963,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(699), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_let] = ACTIONS(1984), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(122), [anon_sym_DOT] = ACTIONS(122), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), [anon_sym_async] = ACTIONS(1984), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(1984), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103009,18 +103006,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1986), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [sym_number] = ACTIONS(1986), [sym_private_property_identifier] = ACTIONS(1986), [anon_sym_static] = ACTIONS(1984), @@ -103041,53 +103041,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1984), [anon_sym_object] = ACTIONS(1984), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [724] = { [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2422), [anon_sym_export] = ACTIONS(2424), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(831), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_RBRACE] = ACTIONS(128), + [anon_sym_COMMA] = ACTIONS(833), + [anon_sym_RBRACE] = ACTIONS(833), [anon_sym_let] = ACTIONS(2424), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(128), + [anon_sym_RPAREN] = ACTIONS(833), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(128), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(833), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103102,23 +103101,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2424), [anon_sym_readonly] = ACTIONS(2424), [anon_sym_get] = ACTIONS(2424), [anon_sym_set] = ACTIONS(2424), - [anon_sym_QMARK] = ACTIONS(725), + [anon_sym_QMARK] = ACTIONS(835), [anon_sym_declare] = ACTIONS(2424), [anon_sym_public] = ACTIONS(2424), [anon_sym_private] = ACTIONS(2424), @@ -103132,52 +103132,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2424), [anon_sym_object] = ACTIONS(2424), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [725] = { [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2422), [anon_sym_export] = ACTIONS(2424), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(831), + [anon_sym_EQ] = ACTIONS(119), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_COMMA] = ACTIONS(833), - [anon_sym_RBRACE] = ACTIONS(833), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_RBRACE] = ACTIONS(128), [anon_sym_let] = ACTIONS(2424), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(833), + [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(833), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(128), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(128), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103192,23 +103191,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2424), [anon_sym_readonly] = ACTIONS(2424), [anon_sym_get] = ACTIONS(2424), [anon_sym_set] = ACTIONS(2424), - [anon_sym_QMARK] = ACTIONS(835), + [anon_sym_QMARK] = ACTIONS(725), [anon_sym_declare] = ACTIONS(2424), [anon_sym_public] = ACTIONS(2424), [anon_sym_private] = ACTIONS(2424), @@ -103222,52 +103222,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2424), [anon_sym_object] = ACTIONS(2424), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [726] = { - [sym__call_signature] = STATE(5601), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym__call_signature] = STATE(5641), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2434), [anon_sym_export] = ACTIONS(2436), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(831), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_let] = ACTIONS(2436), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2436), [anon_sym_function] = ACTIONS(2429), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103282,18 +103281,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2436), [anon_sym_readonly] = ACTIONS(2436), [anon_sym_get] = ACTIONS(2436), @@ -103311,52 +103311,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2436), [anon_sym_object] = ACTIONS(2436), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [727] = { - [sym__call_signature] = STATE(5601), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym__call_signature] = STATE(5641), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2434), [anon_sym_export] = ACTIONS(2436), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(831), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_let] = ACTIONS(2436), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2436), [anon_sym_function] = ACTIONS(2429), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103371,18 +103370,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2436), [anon_sym_readonly] = ACTIONS(2436), [anon_sym_get] = ACTIONS(2436), @@ -103400,50 +103400,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2436), [anon_sym_object] = ACTIONS(2436), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [728] = { - [sym__call_signature] = STATE(5619), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym__call_signature] = STATE(5567), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2438), [anon_sym_export] = ACTIONS(2440), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2440), - [anon_sym_EQ] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(221), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(224), [anon_sym_let] = ACTIONS(2440), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(224), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(224), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2440), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(2429), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2440), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103458,22 +103457,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2440), [anon_sym_readonly] = ACTIONS(2440), [anon_sym_get] = ACTIONS(2440), [anon_sym_set] = ACTIONS(2440), + [anon_sym_QMARK] = ACTIONS(725), [anon_sym_declare] = ACTIONS(2440), [anon_sym_public] = ACTIONS(2440), [anon_sym_private] = ACTIONS(2440), @@ -103487,102 +103488,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2440), [anon_sym_object] = ACTIONS(2440), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [729] = { - [sym__call_signature] = STATE(5643), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2444), - [anon_sym_export] = ACTIONS(2446), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2446), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2446), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_let] = ACTIONS(2446), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2446), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2446), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2446), - [anon_sym_readonly] = ACTIONS(2446), - [anon_sym_get] = ACTIONS(2446), - [anon_sym_set] = ACTIONS(2446), - [anon_sym_QMARK] = ACTIONS(725), - [anon_sym_declare] = ACTIONS(2446), - [anon_sym_public] = ACTIONS(2446), - [anon_sym_private] = ACTIONS(2446), - [anon_sym_protected] = ACTIONS(2446), - [anon_sym_override] = ACTIONS(2446), - [anon_sym_module] = ACTIONS(2446), - [anon_sym_any] = ACTIONS(2446), - [anon_sym_number] = ACTIONS(2446), - [anon_sym_boolean] = ACTIONS(2446), - [anon_sym_string] = ACTIONS(2446), - [anon_sym_symbol] = ACTIONS(2446), - [anon_sym_object] = ACTIONS(2446), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [730] = { - [sym__call_signature] = STATE(5601), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym__call_signature] = STATE(5641), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2434), [anon_sym_export] = ACTIONS(2436), [anon_sym_STAR] = ACTIONS(122), @@ -103597,30 +103509,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2436), [anon_sym_function] = ACTIONS(2429), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103635,18 +103546,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2436), [anon_sym_readonly] = ACTIONS(2436), [anon_sym_get] = ACTIONS(2436), @@ -103664,50 +103576,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2436), [anon_sym_object] = ACTIONS(2436), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [731] = { - [sym__call_signature] = STATE(5619), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2440), + [730] = { + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2442), + [anon_sym_export] = ACTIONS(2444), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2440), + [anon_sym_type] = ACTIONS(2444), [anon_sym_EQ] = ACTIONS(855), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2444), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2444), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2444), + [anon_sym_function] = ACTIONS(2446), + [anon_sym_EQ_GT] = ACTIONS(687), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2444), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2440), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_readonly] = ACTIONS(2444), + [anon_sym_get] = ACTIONS(2444), + [anon_sym_set] = ACTIONS(2444), + [anon_sym_declare] = ACTIONS(2444), + [anon_sym_public] = ACTIONS(2444), + [anon_sym_private] = ACTIONS(2444), + [anon_sym_protected] = ACTIONS(2444), + [anon_sym_override] = ACTIONS(2444), + [anon_sym_module] = ACTIONS(2444), + [anon_sym_any] = ACTIONS(2444), + [anon_sym_number] = ACTIONS(2444), + [anon_sym_boolean] = ACTIONS(2444), + [anon_sym_string] = ACTIONS(2444), + [anon_sym_symbol] = ACTIONS(2444), + [anon_sym_object] = ACTIONS(2444), + [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [731] = { + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2442), + [anon_sym_export] = ACTIONS(2444), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2444), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2444), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2444), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2444), [anon_sym_function] = ACTIONS(2448), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2440), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2444), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103722,80 +103721,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_readonly] = ACTIONS(2440), - [anon_sym_get] = ACTIONS(2440), - [anon_sym_set] = ACTIONS(2440), - [anon_sym_declare] = ACTIONS(2440), - [anon_sym_public] = ACTIONS(2440), - [anon_sym_private] = ACTIONS(2440), - [anon_sym_protected] = ACTIONS(2440), - [anon_sym_override] = ACTIONS(2440), - [anon_sym_module] = ACTIONS(2440), - [anon_sym_any] = ACTIONS(2440), - [anon_sym_number] = ACTIONS(2440), - [anon_sym_boolean] = ACTIONS(2440), - [anon_sym_string] = ACTIONS(2440), - [anon_sym_symbol] = ACTIONS(2440), - [anon_sym_object] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_readonly] = ACTIONS(2444), + [anon_sym_get] = ACTIONS(2444), + [anon_sym_set] = ACTIONS(2444), + [anon_sym_declare] = ACTIONS(2444), + [anon_sym_public] = ACTIONS(2444), + [anon_sym_private] = ACTIONS(2444), + [anon_sym_protected] = ACTIONS(2444), + [anon_sym_override] = ACTIONS(2444), + [anon_sym_module] = ACTIONS(2444), + [anon_sym_any] = ACTIONS(2444), + [anon_sym_number] = ACTIONS(2444), + [anon_sym_boolean] = ACTIONS(2444), + [anon_sym_string] = ACTIONS(2444), + [anon_sym_symbol] = ACTIONS(2444), + [anon_sym_object] = ACTIONS(2444), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [732] = { - [sym__call_signature] = STATE(5791), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2450), - [anon_sym_export] = ACTIONS(2452), + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2442), + [anon_sym_export] = ACTIONS(2444), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2452), + [anon_sym_type] = ACTIONS(2444), [anon_sym_EQ] = ACTIONS(831), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2452), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2452), + [anon_sym_namespace] = ACTIONS(2444), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2444), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2444), [anon_sym_function] = ACTIONS(2448), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2452), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(687), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2444), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103810,80 +103809,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2452), - [anon_sym_readonly] = ACTIONS(2452), - [anon_sym_get] = ACTIONS(2452), - [anon_sym_set] = ACTIONS(2452), - [anon_sym_declare] = ACTIONS(2452), - [anon_sym_public] = ACTIONS(2452), - [anon_sym_private] = ACTIONS(2452), - [anon_sym_protected] = ACTIONS(2452), - [anon_sym_override] = ACTIONS(2452), - [anon_sym_module] = ACTIONS(2452), - [anon_sym_any] = ACTIONS(2452), - [anon_sym_number] = ACTIONS(2452), - [anon_sym_boolean] = ACTIONS(2452), - [anon_sym_string] = ACTIONS(2452), - [anon_sym_symbol] = ACTIONS(2452), - [anon_sym_object] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_readonly] = ACTIONS(2444), + [anon_sym_get] = ACTIONS(2444), + [anon_sym_set] = ACTIONS(2444), + [anon_sym_declare] = ACTIONS(2444), + [anon_sym_public] = ACTIONS(2444), + [anon_sym_private] = ACTIONS(2444), + [anon_sym_protected] = ACTIONS(2444), + [anon_sym_override] = ACTIONS(2444), + [anon_sym_module] = ACTIONS(2444), + [anon_sym_any] = ACTIONS(2444), + [anon_sym_number] = ACTIONS(2444), + [anon_sym_boolean] = ACTIONS(2444), + [anon_sym_string] = ACTIONS(2444), + [anon_sym_symbol] = ACTIONS(2444), + [anon_sym_object] = ACTIONS(2444), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [733] = { - [sym__call_signature] = STATE(5619), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2440), + [sym__call_signature] = STATE(5791), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2450), + [anon_sym_export] = ACTIONS(2452), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2440), + [anon_sym_type] = ACTIONS(2452), [anon_sym_EQ] = ACTIONS(831), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2452), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2452), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2440), + [anon_sym_of] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2452), [anon_sym_function] = ACTIONS(2448), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2440), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(881), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2452), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103898,80 +103897,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_readonly] = ACTIONS(2440), - [anon_sym_get] = ACTIONS(2440), - [anon_sym_set] = ACTIONS(2440), - [anon_sym_declare] = ACTIONS(2440), - [anon_sym_public] = ACTIONS(2440), - [anon_sym_private] = ACTIONS(2440), - [anon_sym_protected] = ACTIONS(2440), - [anon_sym_override] = ACTIONS(2440), - [anon_sym_module] = ACTIONS(2440), - [anon_sym_any] = ACTIONS(2440), - [anon_sym_number] = ACTIONS(2440), - [anon_sym_boolean] = ACTIONS(2440), - [anon_sym_string] = ACTIONS(2440), - [anon_sym_symbol] = ACTIONS(2440), - [anon_sym_object] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_readonly] = ACTIONS(2452), + [anon_sym_get] = ACTIONS(2452), + [anon_sym_set] = ACTIONS(2452), + [anon_sym_declare] = ACTIONS(2452), + [anon_sym_public] = ACTIONS(2452), + [anon_sym_private] = ACTIONS(2452), + [anon_sym_protected] = ACTIONS(2452), + [anon_sym_override] = ACTIONS(2452), + [anon_sym_module] = ACTIONS(2452), + [anon_sym_any] = ACTIONS(2452), + [anon_sym_number] = ACTIONS(2452), + [anon_sym_boolean] = ACTIONS(2452), + [anon_sym_string] = ACTIONS(2452), + [anon_sym_symbol] = ACTIONS(2452), + [anon_sym_object] = ACTIONS(2452), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [734] = { - [sym__call_signature] = STATE(5619), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2440), + [sym__call_signature] = STATE(5845), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2442), + [anon_sym_export] = ACTIONS(2444), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2440), + [anon_sym_type] = ACTIONS(2444), [anon_sym_EQ] = ACTIONS(855), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2440), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2444), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2444), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2440), - [anon_sym_function] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2444), + [anon_sym_function] = ACTIONS(2338), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2440), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2444), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -103986,43 +103985,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_readonly] = ACTIONS(2440), - [anon_sym_get] = ACTIONS(2440), - [anon_sym_set] = ACTIONS(2440), - [anon_sym_declare] = ACTIONS(2440), - [anon_sym_public] = ACTIONS(2440), - [anon_sym_private] = ACTIONS(2440), - [anon_sym_protected] = ACTIONS(2440), - [anon_sym_override] = ACTIONS(2440), - [anon_sym_module] = ACTIONS(2440), - [anon_sym_any] = ACTIONS(2440), - [anon_sym_number] = ACTIONS(2440), - [anon_sym_boolean] = ACTIONS(2440), - [anon_sym_string] = ACTIONS(2440), - [anon_sym_symbol] = ACTIONS(2440), - [anon_sym_object] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_readonly] = ACTIONS(2444), + [anon_sym_get] = ACTIONS(2444), + [anon_sym_set] = ACTIONS(2444), + [anon_sym_declare] = ACTIONS(2444), + [anon_sym_public] = ACTIONS(2444), + [anon_sym_private] = ACTIONS(2444), + [anon_sym_protected] = ACTIONS(2444), + [anon_sym_override] = ACTIONS(2444), + [anon_sym_module] = ACTIONS(2444), + [anon_sym_any] = ACTIONS(2444), + [anon_sym_number] = ACTIONS(2444), + [anon_sym_boolean] = ACTIONS(2444), + [anon_sym_string] = ACTIONS(2444), + [anon_sym_symbol] = ACTIONS(2444), + [anon_sym_object] = ACTIONS(2444), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [735] = { [sym__call_signature] = STATE(5791), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2450), [anon_sym_export] = ACTIONS(2452), [anon_sym_STAR] = ACTIONS(122), @@ -104030,36 +104030,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(875), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2452), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_let] = ACTIONS(2452), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2452), [anon_sym_function] = ACTIONS(2448), [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2452), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -104074,18 +104073,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2452), [anon_sym_readonly] = ACTIONS(2452), [anon_sym_get] = ACTIONS(2452), @@ -104103,8 +104103,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2452), [anon_sym_object] = ACTIONS(2452), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [736] = { @@ -104145,8 +104145,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1705), [anon_sym_LBRACK] = ACTIONS(1703), [sym_glimmer_opening_tag] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), [anon_sym_class] = ACTIONS(1705), [anon_sym_async] = ACTIONS(1705), [anon_sym_function] = ACTIONS(1705), @@ -104161,6 +104159,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1705), [anon_sym_PLUS_PLUS] = ACTIONS(1703), [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1703), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1703), [sym_number] = ACTIONS(1703), @@ -104195,71 +104195,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [737] = { - [sym__call_signature] = STATE(5609), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2454), + [sym_catch_clause] = STATE(771), + [sym_finally_clause] = STATE(818), + [ts_builtin_sym_end] = ACTIONS(2454), + [sym_identifier] = ACTIONS(2456), [anon_sym_export] = ACTIONS(2456), - [anon_sym_STAR] = ACTIONS(122), + [anon_sym_default] = ACTIONS(2456), [anon_sym_type] = ACTIONS(2456), - [anon_sym_EQ] = ACTIONS(939), - [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2456), - [anon_sym_LBRACE] = ACTIONS(161), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), [anon_sym_let] = ACTIONS(2456), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2454), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_case] = ACTIONS(2456), + [anon_sym_catch] = ACTIONS(2458), + [anon_sym_finally] = ACTIONS(2460), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2454), + [sym_glimmer_opening_tag] = ACTIONS(2454), + [anon_sym_class] = ACTIONS(2456), [anon_sym_async] = ACTIONS(2456), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_function] = ACTIONS(2456), [anon_sym_new] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2454), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2454), + [sym_number] = ACTIONS(2454), + [sym_private_property_identifier] = ACTIONS(2454), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2454), [anon_sym_static] = ACTIONS(2456), [anon_sym_readonly] = ACTIONS(2456), [anon_sym_get] = ACTIONS(2456), @@ -104276,52 +104276,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2456), [anon_sym_symbol] = ACTIONS(2456), [anon_sym_object] = ACTIONS(2456), - [anon_sym_satisfies] = ACTIONS(122), - [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), [sym_html_comment] = ACTIONS(5), }, [738] = { - [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2460), + [sym__call_signature] = STATE(5567), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2440), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2460), - [anon_sym_EQ] = ACTIONS(904), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_EQ] = ACTIONS(890), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2460), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2460), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2440), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_RPAREN] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(224), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2460), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2440), [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -104336,79 +104335,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2460), - [anon_sym_readonly] = ACTIONS(2460), - [anon_sym_get] = ACTIONS(2460), - [anon_sym_set] = ACTIONS(2460), - [anon_sym_declare] = ACTIONS(2460), - [anon_sym_public] = ACTIONS(2460), - [anon_sym_private] = ACTIONS(2460), - [anon_sym_protected] = ACTIONS(2460), - [anon_sym_override] = ACTIONS(2460), - [anon_sym_module] = ACTIONS(2460), - [anon_sym_any] = ACTIONS(2460), - [anon_sym_number] = ACTIONS(2460), - [anon_sym_boolean] = ACTIONS(2460), - [anon_sym_string] = ACTIONS(2460), - [anon_sym_symbol] = ACTIONS(2460), - [anon_sym_object] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_readonly] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_object] = ACTIONS(2440), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [739] = { - [sym__call_signature] = STATE(5601), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2436), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_export] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_namespace] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_typeof] = ACTIONS(1791), + [anon_sym_import] = ACTIONS(1791), + [anon_sym_with] = ACTIONS(1791), + [anon_sym_var] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_else] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_switch] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_debugger] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_throw] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1791), + [anon_sym_catch] = ACTIONS(1791), + [anon_sym_finally] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1789), + [sym_glimmer_opening_tag] = ACTIONS(1789), + [anon_sym_class] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_function] = ACTIONS(1791), + [anon_sym_new] = ACTIONS(1791), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1791), + [anon_sym_delete] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1789), + [sym_number] = ACTIONS(1789), + [sym_private_property_identifier] = ACTIONS(1789), + [sym_this] = ACTIONS(1791), + [sym_super] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_undefined] = ACTIONS(1791), + [anon_sym_AT] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_get] = ACTIONS(1791), + [anon_sym_set] = ACTIONS(1791), + [anon_sym_declare] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_private] = ACTIONS(1791), + [anon_sym_protected] = ACTIONS(1791), + [anon_sym_override] = ACTIONS(1791), + [anon_sym_module] = ACTIONS(1791), + [anon_sym_any] = ACTIONS(1791), + [anon_sym_number] = ACTIONS(1791), + [anon_sym_boolean] = ACTIONS(1791), + [anon_sym_string] = ACTIONS(1791), + [anon_sym_symbol] = ACTIONS(1791), + [anon_sym_object] = ACTIONS(1791), + [anon_sym_abstract] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [sym__automatic_semicolon] = ACTIONS(2462), + [sym_html_comment] = ACTIONS(5), + }, + [740] = { + [sym__call_signature] = STATE(5493), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2464), + [anon_sym_export] = ACTIONS(2466), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_type] = ACTIONS(2466), + [anon_sym_EQ] = ACTIONS(904), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2436), + [anon_sym_namespace] = ACTIONS(2466), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2466), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(895), - [anon_sym_of] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2436), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(224), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2466), [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(913), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2466), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -104423,252 +104509,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2436), - [anon_sym_readonly] = ACTIONS(2436), - [anon_sym_get] = ACTIONS(2436), - [anon_sym_set] = ACTIONS(2436), - [anon_sym_declare] = ACTIONS(2436), - [anon_sym_public] = ACTIONS(2436), - [anon_sym_private] = ACTIONS(2436), - [anon_sym_protected] = ACTIONS(2436), - [anon_sym_override] = ACTIONS(2436), - [anon_sym_module] = ACTIONS(2436), - [anon_sym_any] = ACTIONS(2436), - [anon_sym_number] = ACTIONS(2436), - [anon_sym_boolean] = ACTIONS(2436), - [anon_sym_string] = ACTIONS(2436), - [anon_sym_symbol] = ACTIONS(2436), - [anon_sym_object] = ACTIONS(2436), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_readonly] = ACTIONS(2466), + [anon_sym_get] = ACTIONS(2466), + [anon_sym_set] = ACTIONS(2466), + [anon_sym_declare] = ACTIONS(2466), + [anon_sym_public] = ACTIONS(2466), + [anon_sym_private] = ACTIONS(2466), + [anon_sym_protected] = ACTIONS(2466), + [anon_sym_override] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_any] = ACTIONS(2466), + [anon_sym_number] = ACTIONS(2466), + [anon_sym_boolean] = ACTIONS(2466), + [anon_sym_string] = ACTIONS(2466), + [anon_sym_symbol] = ACTIONS(2466), + [anon_sym_object] = ACTIONS(2466), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [740] = { - [sym_catch_clause] = STATE(772), - [sym_finally_clause] = STATE(920), - [ts_builtin_sym_end] = ACTIONS(2462), - [sym_identifier] = ACTIONS(2464), - [anon_sym_export] = ACTIONS(2464), - [anon_sym_default] = ACTIONS(2464), - [anon_sym_type] = ACTIONS(2464), - [anon_sym_namespace] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(2462), - [anon_sym_RBRACE] = ACTIONS(2462), - [anon_sym_typeof] = ACTIONS(2464), - [anon_sym_import] = ACTIONS(2464), - [anon_sym_with] = ACTIONS(2464), - [anon_sym_var] = ACTIONS(2464), - [anon_sym_let] = ACTIONS(2464), - [anon_sym_const] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(2462), - [anon_sym_else] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(2464), - [anon_sym_for] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2462), - [anon_sym_await] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2464), - [anon_sym_try] = ACTIONS(2464), - [anon_sym_break] = ACTIONS(2464), - [anon_sym_continue] = ACTIONS(2464), - [anon_sym_debugger] = ACTIONS(2464), - [anon_sym_return] = ACTIONS(2464), - [anon_sym_throw] = ACTIONS(2464), - [anon_sym_case] = ACTIONS(2464), - [anon_sym_catch] = ACTIONS(2466), - [anon_sym_finally] = ACTIONS(2468), - [anon_sym_yield] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [sym_glimmer_opening_tag] = ACTIONS(2462), - [anon_sym_DQUOTE] = ACTIONS(2462), - [anon_sym_SQUOTE] = ACTIONS(2462), - [anon_sym_class] = ACTIONS(2464), - [anon_sym_async] = ACTIONS(2464), - [anon_sym_function] = ACTIONS(2464), - [anon_sym_new] = ACTIONS(2464), - [anon_sym_using] = ACTIONS(2464), - [anon_sym_PLUS] = ACTIONS(2464), - [anon_sym_DASH] = ACTIONS(2464), - [anon_sym_SLASH] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2464), - [anon_sym_TILDE] = ACTIONS(2462), - [anon_sym_void] = ACTIONS(2464), - [anon_sym_delete] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2462), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2462), - [sym_number] = ACTIONS(2462), - [sym_private_property_identifier] = ACTIONS(2462), - [sym_this] = ACTIONS(2464), - [sym_super] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_null] = ACTIONS(2464), - [sym_undefined] = ACTIONS(2464), - [anon_sym_AT] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2464), - [anon_sym_readonly] = ACTIONS(2464), - [anon_sym_get] = ACTIONS(2464), - [anon_sym_set] = ACTIONS(2464), - [anon_sym_declare] = ACTIONS(2464), - [anon_sym_public] = ACTIONS(2464), - [anon_sym_private] = ACTIONS(2464), - [anon_sym_protected] = ACTIONS(2464), - [anon_sym_override] = ACTIONS(2464), - [anon_sym_module] = ACTIONS(2464), - [anon_sym_any] = ACTIONS(2464), - [anon_sym_number] = ACTIONS(2464), - [anon_sym_boolean] = ACTIONS(2464), - [anon_sym_string] = ACTIONS(2464), - [anon_sym_symbol] = ACTIONS(2464), - [anon_sym_object] = ACTIONS(2464), - [anon_sym_abstract] = ACTIONS(2464), - [anon_sym_interface] = ACTIONS(2464), - [anon_sym_enum] = ACTIONS(2464), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [741] = { - [ts_builtin_sym_end] = ACTIONS(1801), - [sym_identifier] = ACTIONS(1803), - [anon_sym_export] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_type] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_COMMA] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_typeof] = ACTIONS(1803), - [anon_sym_import] = ACTIONS(1803), - [anon_sym_with] = ACTIONS(1803), - [anon_sym_var] = ACTIONS(1803), - [anon_sym_let] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1803), - [anon_sym_switch] = ACTIONS(1803), - [anon_sym_for] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_await] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_do] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1803), - [anon_sym_continue] = ACTIONS(1803), - [anon_sym_debugger] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1803), - [anon_sym_throw] = ACTIONS(1803), - [anon_sym_case] = ACTIONS(1803), - [anon_sym_catch] = ACTIONS(1803), - [anon_sym_finally] = ACTIONS(1803), - [anon_sym_yield] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1801), - [sym_glimmer_opening_tag] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_async] = ACTIONS(1803), - [anon_sym_function] = ACTIONS(1803), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_void] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1801), - [sym_number] = ACTIONS(1801), - [sym_private_property_identifier] = ACTIONS(1801), - [sym_this] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_undefined] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_readonly] = ACTIONS(1803), - [anon_sym_get] = ACTIONS(1803), - [anon_sym_set] = ACTIONS(1803), - [anon_sym_declare] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [anon_sym_override] = ACTIONS(1803), - [anon_sym_module] = ACTIONS(1803), - [anon_sym_any] = ACTIONS(1803), - [anon_sym_number] = ACTIONS(1803), - [anon_sym_boolean] = ACTIONS(1803), - [anon_sym_string] = ACTIONS(1803), - [anon_sym_symbol] = ACTIONS(1803), - [anon_sym_object] = ACTIONS(1803), - [anon_sym_abstract] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [sym__automatic_semicolon] = ACTIONS(2470), - [sym_html_comment] = ACTIONS(5), - }, - [742] = { - [sym__call_signature] = STATE(5609), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2454), - [anon_sym_export] = ACTIONS(2456), + [sym__call_signature] = STATE(5608), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2468), + [anon_sym_export] = ACTIONS(2470), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2456), - [anon_sym_EQ] = ACTIONS(831), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_EQ] = ACTIONS(939), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2456), - [anon_sym_LBRACE] = ACTIONS(161), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2456), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2470), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2470), [anon_sym_function] = ACTIONS(2429), [anon_sym_EQ_GT] = ACTIONS(945), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -104683,80 +104595,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2456), - [anon_sym_readonly] = ACTIONS(2456), - [anon_sym_get] = ACTIONS(2456), - [anon_sym_set] = ACTIONS(2456), - [anon_sym_declare] = ACTIONS(2456), - [anon_sym_public] = ACTIONS(2456), - [anon_sym_private] = ACTIONS(2456), - [anon_sym_protected] = ACTIONS(2456), - [anon_sym_override] = ACTIONS(2456), - [anon_sym_module] = ACTIONS(2456), - [anon_sym_any] = ACTIONS(2456), - [anon_sym_number] = ACTIONS(2456), - [anon_sym_boolean] = ACTIONS(2456), - [anon_sym_string] = ACTIONS(2456), - [anon_sym_symbol] = ACTIONS(2456), - [anon_sym_object] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), [anon_sym_satisfies] = ACTIONS(122), [anon_sym_implements] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [743] = { - [sym__call_signature] = STATE(5643), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2444), - [anon_sym_export] = ACTIONS(2446), + [742] = { + [sym__call_signature] = STATE(5641), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2436), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2446), - [anon_sym_EQ] = ACTIONS(831), + [anon_sym_type] = ACTIONS(2436), + [anon_sym_EQ] = ACTIONS(887), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2446), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2446), + [anon_sym_namespace] = ACTIONS(2436), + [anon_sym_COMMA] = ACTIONS(224), + [anon_sym_RBRACE] = ACTIONS(224), + [anon_sym_let] = ACTIONS(2436), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(224), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2436), [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2446), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(851), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2436), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -104771,79 +104683,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2446), - [anon_sym_readonly] = ACTIONS(2446), - [anon_sym_get] = ACTIONS(2446), - [anon_sym_set] = ACTIONS(2446), - [anon_sym_declare] = ACTIONS(2446), - [anon_sym_public] = ACTIONS(2446), - [anon_sym_private] = ACTIONS(2446), - [anon_sym_protected] = ACTIONS(2446), - [anon_sym_override] = ACTIONS(2446), - [anon_sym_module] = ACTIONS(2446), - [anon_sym_any] = ACTIONS(2446), - [anon_sym_number] = ACTIONS(2446), - [anon_sym_boolean] = ACTIONS(2446), - [anon_sym_string] = ACTIONS(2446), - [anon_sym_symbol] = ACTIONS(2446), - [anon_sym_object] = ACTIONS(2446), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_readonly] = ACTIONS(2436), + [anon_sym_get] = ACTIONS(2436), + [anon_sym_set] = ACTIONS(2436), + [anon_sym_declare] = ACTIONS(2436), + [anon_sym_public] = ACTIONS(2436), + [anon_sym_private] = ACTIONS(2436), + [anon_sym_protected] = ACTIONS(2436), + [anon_sym_override] = ACTIONS(2436), + [anon_sym_module] = ACTIONS(2436), + [anon_sym_any] = ACTIONS(2436), + [anon_sym_number] = ACTIONS(2436), + [anon_sym_boolean] = ACTIONS(2436), + [anon_sym_string] = ACTIONS(2436), + [anon_sym_symbol] = ACTIONS(2436), + [anon_sym_object] = ACTIONS(2436), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [744] = { - [sym__call_signature] = STATE(5601), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [743] = { + [sym__call_signature] = STATE(5641), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2434), [anon_sym_export] = ACTIONS(2436), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2436), - [anon_sym_EQ] = ACTIONS(887), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2436), - [anon_sym_COMMA] = ACTIONS(224), - [anon_sym_RBRACE] = ACTIONS(224), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_let] = ACTIONS(2436), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(224), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(895), + [anon_sym_of] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2436), [anon_sym_function] = ACTIONS(2429), [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2436), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -104858,18 +104770,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2436), [anon_sym_readonly] = ACTIONS(2436), [anon_sym_get] = ACTIONS(2436), @@ -104887,50 +104800,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2436), [anon_sym_object] = ACTIONS(2436), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [745] = { - [sym__call_signature] = STATE(5643), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2444), - [anon_sym_export] = ACTIONS(2446), + [744] = { + [sym__call_signature] = STATE(5608), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2468), + [anon_sym_export] = ACTIONS(2470), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2446), - [anon_sym_EQ] = ACTIONS(890), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_EQ] = ACTIONS(831), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2446), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_let] = ACTIONS(2446), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2470), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_RPAREN] = ACTIONS(161), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2429), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2446), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_satisfies] = ACTIONS(122), + [anon_sym_implements] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [745] = { + [sym__call_signature] = STATE(5567), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2440), [anon_sym_function] = ACTIONS(2429), [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2446), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -104945,164 +104944,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2446), - [anon_sym_readonly] = ACTIONS(2446), - [anon_sym_get] = ACTIONS(2446), - [anon_sym_set] = ACTIONS(2446), - [anon_sym_declare] = ACTIONS(2446), - [anon_sym_public] = ACTIONS(2446), - [anon_sym_private] = ACTIONS(2446), - [anon_sym_protected] = ACTIONS(2446), - [anon_sym_override] = ACTIONS(2446), - [anon_sym_module] = ACTIONS(2446), - [anon_sym_any] = ACTIONS(2446), - [anon_sym_number] = ACTIONS(2446), - [anon_sym_boolean] = ACTIONS(2446), - [anon_sym_string] = ACTIONS(2446), - [anon_sym_symbol] = ACTIONS(2446), - [anon_sym_object] = ACTIONS(2446), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_readonly] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_object] = ACTIONS(2440), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [746] = { - [ts_builtin_sym_end] = ACTIONS(1801), - [sym_identifier] = ACTIONS(1803), - [anon_sym_export] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_type] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_COMMA] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_typeof] = ACTIONS(1803), - [anon_sym_import] = ACTIONS(1803), - [anon_sym_with] = ACTIONS(1803), - [anon_sym_var] = ACTIONS(1803), - [anon_sym_let] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1803), - [anon_sym_switch] = ACTIONS(1803), - [anon_sym_for] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_await] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_do] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1803), - [anon_sym_continue] = ACTIONS(1803), - [anon_sym_debugger] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1803), - [anon_sym_throw] = ACTIONS(1803), - [anon_sym_case] = ACTIONS(1803), - [anon_sym_catch] = ACTIONS(1803), - [anon_sym_finally] = ACTIONS(1803), - [anon_sym_yield] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1801), - [sym_glimmer_opening_tag] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_async] = ACTIONS(1803), - [anon_sym_function] = ACTIONS(1803), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_void] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1801), - [sym_number] = ACTIONS(1801), - [sym_private_property_identifier] = ACTIONS(1801), - [sym_this] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_undefined] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_readonly] = ACTIONS(1803), - [anon_sym_get] = ACTIONS(1803), - [anon_sym_set] = ACTIONS(1803), - [anon_sym_declare] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [anon_sym_override] = ACTIONS(1803), - [anon_sym_module] = ACTIONS(1803), - [anon_sym_any] = ACTIONS(1803), - [anon_sym_number] = ACTIONS(1803), - [anon_sym_boolean] = ACTIONS(1803), - [anon_sym_string] = ACTIONS(1803), - [anon_sym_symbol] = ACTIONS(1803), - [anon_sym_object] = ACTIONS(1803), - [anon_sym_abstract] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), + [ts_builtin_sym_end] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1833), + [anon_sym_type] = ACTIONS(1833), + [anon_sym_namespace] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_COMMA] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_typeof] = ACTIONS(1833), + [anon_sym_import] = ACTIONS(1833), + [anon_sym_with] = ACTIONS(1833), + [anon_sym_var] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_switch] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_debugger] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_throw] = ACTIONS(1833), + [anon_sym_case] = ACTIONS(1833), + [anon_sym_yield] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1831), + [sym_glimmer_opening_tag] = ACTIONS(1831), + [anon_sym_class] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1833), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1833), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_SLASH] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1833), + [anon_sym_delete] = ACTIONS(1833), + [anon_sym_PLUS_PLUS] = ACTIONS(1831), + [anon_sym_DASH_DASH] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1831), + [sym_number] = ACTIONS(1831), + [sym_private_property_identifier] = ACTIONS(1831), + [sym_this] = ACTIONS(1833), + [sym_super] = ACTIONS(1833), + [sym_true] = ACTIONS(1833), + [sym_false] = ACTIONS(1833), + [sym_null] = ACTIONS(1833), + [sym_undefined] = ACTIONS(1833), + [anon_sym_AT] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1833), + [anon_sym_readonly] = ACTIONS(1833), + [anon_sym_get] = ACTIONS(1833), + [anon_sym_set] = ACTIONS(1833), + [anon_sym_declare] = ACTIONS(1833), + [anon_sym_public] = ACTIONS(1833), + [anon_sym_private] = ACTIONS(1833), + [anon_sym_protected] = ACTIONS(1833), + [anon_sym_override] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_any] = ACTIONS(1833), + [anon_sym_number] = ACTIONS(1833), + [anon_sym_boolean] = ACTIONS(1833), + [anon_sym_string] = ACTIONS(1833), + [anon_sym_symbol] = ACTIONS(1833), + [anon_sym_object] = ACTIONS(1833), + [anon_sym_abstract] = ACTIONS(1833), + [anon_sym_interface] = ACTIONS(1833), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_PIPE_RBRACE] = ACTIONS(1831), + [sym__automatic_semicolon] = ACTIONS(1831), [sym_html_comment] = ACTIONS(5), }, [747] = { [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2460), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2464), + [anon_sym_export] = ACTIONS(2466), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2460), + [anon_sym_type] = ACTIONS(2466), [anon_sym_EQ] = ACTIONS(917), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), + [anon_sym_namespace] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2460), + [anon_sym_COLON] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2466), [anon_sym_function] = ACTIONS(2429), [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2466), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -105117,42 +105116,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2460), - [anon_sym_readonly] = ACTIONS(2460), - [anon_sym_get] = ACTIONS(2460), - [anon_sym_set] = ACTIONS(2460), - [anon_sym_declare] = ACTIONS(2460), - [anon_sym_public] = ACTIONS(2460), - [anon_sym_private] = ACTIONS(2460), - [anon_sym_protected] = ACTIONS(2460), - [anon_sym_override] = ACTIONS(2460), - [anon_sym_module] = ACTIONS(2460), - [anon_sym_any] = ACTIONS(2460), - [anon_sym_number] = ACTIONS(2460), - [anon_sym_boolean] = ACTIONS(2460), - [anon_sym_string] = ACTIONS(2460), - [anon_sym_symbol] = ACTIONS(2460), - [anon_sym_object] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_readonly] = ACTIONS(2466), + [anon_sym_get] = ACTIONS(2466), + [anon_sym_set] = ACTIONS(2466), + [anon_sym_declare] = ACTIONS(2466), + [anon_sym_public] = ACTIONS(2466), + [anon_sym_private] = ACTIONS(2466), + [anon_sym_protected] = ACTIONS(2466), + [anon_sym_override] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_any] = ACTIONS(2466), + [anon_sym_number] = ACTIONS(2466), + [anon_sym_boolean] = ACTIONS(2466), + [anon_sym_string] = ACTIONS(2466), + [anon_sym_symbol] = ACTIONS(2466), + [anon_sym_object] = ACTIONS(2466), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [748] = { [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2472), [anon_sym_export] = ACTIONS(2474), [anon_sym_STAR] = ACTIONS(122), @@ -105163,31 +105163,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2474), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2474), [anon_sym_function] = ACTIONS(2448), [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -105202,18 +105201,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2474), [anon_sym_readonly] = ACTIONS(2474), [anon_sym_get] = ACTIONS(2474), @@ -105231,269 +105231,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2474), [anon_sym_object] = ACTIONS(2474), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [749] = { - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_export] = ACTIONS(1809), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_namespace] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_COMMA] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_typeof] = ACTIONS(1809), - [anon_sym_import] = ACTIONS(1809), - [anon_sym_with] = ACTIONS(1809), - [anon_sym_var] = ACTIONS(1809), - [anon_sym_let] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_else] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_switch] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_await] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_debugger] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_throw] = ACTIONS(1809), - [anon_sym_case] = ACTIONS(1809), - [anon_sym_yield] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [sym_glimmer_opening_tag] = ACTIONS(1807), - [anon_sym_DQUOTE] = ACTIONS(1807), - [anon_sym_SQUOTE] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1809), - [anon_sym_async] = ACTIONS(1809), - [anon_sym_function] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_void] = ACTIONS(1809), - [anon_sym_delete] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1807), - [sym_number] = ACTIONS(1807), - [sym_private_property_identifier] = ACTIONS(1807), - [sym_this] = ACTIONS(1809), - [sym_super] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_null] = ACTIONS(1809), - [sym_undefined] = ACTIONS(1809), - [anon_sym_AT] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_readonly] = ACTIONS(1809), - [anon_sym_get] = ACTIONS(1809), - [anon_sym_set] = ACTIONS(1809), - [anon_sym_declare] = ACTIONS(1809), - [anon_sym_public] = ACTIONS(1809), - [anon_sym_private] = ACTIONS(1809), - [anon_sym_protected] = ACTIONS(1809), - [anon_sym_override] = ACTIONS(1809), - [anon_sym_module] = ACTIONS(1809), - [anon_sym_any] = ACTIONS(1809), - [anon_sym_number] = ACTIONS(1809), - [anon_sym_boolean] = ACTIONS(1809), - [anon_sym_string] = ACTIONS(1809), - [anon_sym_symbol] = ACTIONS(1809), - [anon_sym_object] = ACTIONS(1809), - [anon_sym_abstract] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_PIPE_RBRACE] = ACTIONS(1807), - [sym__automatic_semicolon] = ACTIONS(1807), + [sym__call_signature] = STATE(5493), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2464), + [anon_sym_export] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2466), + [anon_sym_EQ] = ACTIONS(917), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2466), + [anon_sym_function] = ACTIONS(2429), + [anon_sym_EQ_GT] = ACTIONS(913), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2466), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_readonly] = ACTIONS(2466), + [anon_sym_get] = ACTIONS(2466), + [anon_sym_set] = ACTIONS(2466), + [anon_sym_declare] = ACTIONS(2466), + [anon_sym_public] = ACTIONS(2466), + [anon_sym_private] = ACTIONS(2466), + [anon_sym_protected] = ACTIONS(2466), + [anon_sym_override] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_any] = ACTIONS(2466), + [anon_sym_number] = ACTIONS(2466), + [anon_sym_boolean] = ACTIONS(2466), + [anon_sym_string] = ACTIONS(2466), + [anon_sym_symbol] = ACTIONS(2466), + [anon_sym_object] = ACTIONS(2466), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [750] = { - [ts_builtin_sym_end] = ACTIONS(1847), - [sym_identifier] = ACTIONS(1849), - [anon_sym_export] = ACTIONS(1849), - [anon_sym_default] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1849), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_COMMA] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_typeof] = ACTIONS(1849), - [anon_sym_import] = ACTIONS(1849), - [anon_sym_with] = ACTIONS(1849), - [anon_sym_var] = ACTIONS(1849), - [anon_sym_let] = ACTIONS(1849), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_else] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1847), - [anon_sym_await] = ACTIONS(1849), - [anon_sym_while] = ACTIONS(1849), - [anon_sym_do] = ACTIONS(1849), - [anon_sym_try] = ACTIONS(1849), - [anon_sym_break] = ACTIONS(1849), - [anon_sym_continue] = ACTIONS(1849), - [anon_sym_debugger] = ACTIONS(1849), - [anon_sym_return] = ACTIONS(1849), - [anon_sym_throw] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1849), - [anon_sym_yield] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1847), - [sym_glimmer_opening_tag] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1847), - [anon_sym_SQUOTE] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1849), - [anon_sym_async] = ACTIONS(1849), - [anon_sym_function] = ACTIONS(1849), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_void] = ACTIONS(1849), - [anon_sym_delete] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1847), - [sym_number] = ACTIONS(1847), - [sym_private_property_identifier] = ACTIONS(1847), - [sym_this] = ACTIONS(1849), - [sym_super] = ACTIONS(1849), - [sym_true] = ACTIONS(1849), - [sym_false] = ACTIONS(1849), - [sym_null] = ACTIONS(1849), - [sym_undefined] = ACTIONS(1849), - [anon_sym_AT] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1849), - [anon_sym_readonly] = ACTIONS(1849), - [anon_sym_get] = ACTIONS(1849), - [anon_sym_set] = ACTIONS(1849), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_public] = ACTIONS(1849), - [anon_sym_private] = ACTIONS(1849), - [anon_sym_protected] = ACTIONS(1849), - [anon_sym_override] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1849), - [anon_sym_any] = ACTIONS(1849), - [anon_sym_number] = ACTIONS(1849), - [anon_sym_boolean] = ACTIONS(1849), - [anon_sym_string] = ACTIONS(1849), - [anon_sym_symbol] = ACTIONS(1849), - [anon_sym_object] = ACTIONS(1849), - [anon_sym_abstract] = ACTIONS(1849), - [anon_sym_interface] = ACTIONS(1849), - [anon_sym_enum] = ACTIONS(1849), - [anon_sym_PIPE_RBRACE] = ACTIONS(1847), - [sym__automatic_semicolon] = ACTIONS(1847), + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1797), + [anon_sym_export] = ACTIONS(1797), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_type] = ACTIONS(1797), + [anon_sym_namespace] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_COMMA] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym_import] = ACTIONS(1797), + [anon_sym_with] = ACTIONS(1797), + [anon_sym_var] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_else] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_switch] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1795), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_do] = ACTIONS(1797), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_debugger] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_throw] = ACTIONS(1797), + [anon_sym_case] = ACTIONS(1797), + [anon_sym_yield] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1795), + [sym_glimmer_opening_tag] = ACTIONS(1795), + [anon_sym_class] = ACTIONS(1797), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1797), + [anon_sym_new] = ACTIONS(1797), + [anon_sym_using] = ACTIONS(1797), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_SLASH] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_void] = ACTIONS(1797), + [anon_sym_delete] = ACTIONS(1797), + [anon_sym_PLUS_PLUS] = ACTIONS(1795), + [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1795), + [sym_number] = ACTIONS(1795), + [sym_private_property_identifier] = ACTIONS(1795), + [sym_this] = ACTIONS(1797), + [sym_super] = ACTIONS(1797), + [sym_true] = ACTIONS(1797), + [sym_false] = ACTIONS(1797), + [sym_null] = ACTIONS(1797), + [sym_undefined] = ACTIONS(1797), + [anon_sym_AT] = ACTIONS(1795), + [anon_sym_static] = ACTIONS(1797), + [anon_sym_readonly] = ACTIONS(1797), + [anon_sym_get] = ACTIONS(1797), + [anon_sym_set] = ACTIONS(1797), + [anon_sym_declare] = ACTIONS(1797), + [anon_sym_public] = ACTIONS(1797), + [anon_sym_private] = ACTIONS(1797), + [anon_sym_protected] = ACTIONS(1797), + [anon_sym_override] = ACTIONS(1797), + [anon_sym_module] = ACTIONS(1797), + [anon_sym_any] = ACTIONS(1797), + [anon_sym_number] = ACTIONS(1797), + [anon_sym_boolean] = ACTIONS(1797), + [anon_sym_string] = ACTIONS(1797), + [anon_sym_symbol] = ACTIONS(1797), + [anon_sym_object] = ACTIONS(1797), + [anon_sym_abstract] = ACTIONS(1797), + [anon_sym_interface] = ACTIONS(1797), + [anon_sym_enum] = ACTIONS(1797), + [anon_sym_PIPE_RBRACE] = ACTIONS(1795), + [sym__automatic_semicolon] = ACTIONS(1795), [sym_html_comment] = ACTIONS(5), }, [751] = { - [ts_builtin_sym_end] = ACTIONS(1801), - [sym_identifier] = ACTIONS(1803), - [anon_sym_export] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_type] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_COMMA] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_typeof] = ACTIONS(1803), - [anon_sym_import] = ACTIONS(1803), - [anon_sym_with] = ACTIONS(1803), - [anon_sym_var] = ACTIONS(1803), - [anon_sym_let] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1803), - [anon_sym_switch] = ACTIONS(1803), - [anon_sym_for] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_await] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_do] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1803), - [anon_sym_continue] = ACTIONS(1803), - [anon_sym_debugger] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1803), - [anon_sym_throw] = ACTIONS(1803), - [anon_sym_case] = ACTIONS(1803), - [anon_sym_yield] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1801), - [sym_glimmer_opening_tag] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_async] = ACTIONS(1803), - [anon_sym_function] = ACTIONS(1803), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_void] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1801), - [sym_number] = ACTIONS(1801), - [sym_private_property_identifier] = ACTIONS(1801), - [sym_this] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_undefined] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_readonly] = ACTIONS(1803), - [anon_sym_get] = ACTIONS(1803), - [anon_sym_set] = ACTIONS(1803), - [anon_sym_declare] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [anon_sym_override] = ACTIONS(1803), - [anon_sym_module] = ACTIONS(1803), - [anon_sym_any] = ACTIONS(1803), - [anon_sym_number] = ACTIONS(1803), - [anon_sym_boolean] = ACTIONS(1803), - [anon_sym_string] = ACTIONS(1803), - [anon_sym_symbol] = ACTIONS(1803), - [anon_sym_object] = ACTIONS(1803), - [anon_sym_abstract] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_PIPE_RBRACE] = ACTIONS(1801), - [sym__automatic_semicolon] = ACTIONS(1801), + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1837), + [anon_sym_default] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_namespace] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_COMMA] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_typeof] = ACTIONS(1837), + [anon_sym_import] = ACTIONS(1837), + [anon_sym_with] = ACTIONS(1837), + [anon_sym_var] = ACTIONS(1837), + [anon_sym_let] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_else] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_switch] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_while] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_debugger] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_throw] = ACTIONS(1837), + [anon_sym_case] = ACTIONS(1837), + [anon_sym_yield] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [sym_glimmer_opening_tag] = ACTIONS(1835), + [anon_sym_class] = ACTIONS(1837), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(1837), + [anon_sym_new] = ACTIONS(1837), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_void] = ACTIONS(1837), + [anon_sym_delete] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [anon_sym_SQUOTE] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1835), + [sym_number] = ACTIONS(1835), + [sym_private_property_identifier] = ACTIONS(1835), + [sym_this] = ACTIONS(1837), + [sym_super] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_null] = ACTIONS(1837), + [sym_undefined] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1835), + [anon_sym_static] = ACTIONS(1837), + [anon_sym_readonly] = ACTIONS(1837), + [anon_sym_get] = ACTIONS(1837), + [anon_sym_set] = ACTIONS(1837), + [anon_sym_declare] = ACTIONS(1837), + [anon_sym_public] = ACTIONS(1837), + [anon_sym_private] = ACTIONS(1837), + [anon_sym_protected] = ACTIONS(1837), + [anon_sym_override] = ACTIONS(1837), + [anon_sym_module] = ACTIONS(1837), + [anon_sym_any] = ACTIONS(1837), + [anon_sym_number] = ACTIONS(1837), + [anon_sym_boolean] = ACTIONS(1837), + [anon_sym_string] = ACTIONS(1837), + [anon_sym_symbol] = ACTIONS(1837), + [anon_sym_object] = ACTIONS(1837), + [anon_sym_abstract] = ACTIONS(1837), + [anon_sym_interface] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [anon_sym_PIPE_RBRACE] = ACTIONS(1835), + [sym__automatic_semicolon] = ACTIONS(1835), [sym_html_comment] = ACTIONS(5), }, [752] = { + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_export] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_namespace] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_typeof] = ACTIONS(1791), + [anon_sym_import] = ACTIONS(1791), + [anon_sym_with] = ACTIONS(1791), + [anon_sym_var] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_else] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_switch] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_debugger] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_throw] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1791), + [anon_sym_catch] = ACTIONS(1791), + [anon_sym_finally] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1789), + [sym_glimmer_opening_tag] = ACTIONS(1789), + [anon_sym_class] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_function] = ACTIONS(1791), + [anon_sym_new] = ACTIONS(1791), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1791), + [anon_sym_delete] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1789), + [sym_number] = ACTIONS(1789), + [sym_private_property_identifier] = ACTIONS(1789), + [sym_this] = ACTIONS(1791), + [sym_super] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_undefined] = ACTIONS(1791), + [anon_sym_AT] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_get] = ACTIONS(1791), + [anon_sym_set] = ACTIONS(1791), + [anon_sym_declare] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_private] = ACTIONS(1791), + [anon_sym_protected] = ACTIONS(1791), + [anon_sym_override] = ACTIONS(1791), + [anon_sym_module] = ACTIONS(1791), + [anon_sym_any] = ACTIONS(1791), + [anon_sym_number] = ACTIONS(1791), + [anon_sym_boolean] = ACTIONS(1791), + [anon_sym_string] = ACTIONS(1791), + [anon_sym_symbol] = ACTIONS(1791), + [anon_sym_object] = ACTIONS(1791), + [anon_sym_abstract] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [sym_html_comment] = ACTIONS(5), + }, + [753] = { [ts_builtin_sym_end] = ACTIONS(1703), [sym_identifier] = ACTIONS(1705), [anon_sym_export] = ACTIONS(1705), @@ -105529,8 +105615,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1705), [anon_sym_LBRACK] = ACTIONS(1703), [sym_glimmer_opening_tag] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), [anon_sym_class] = ACTIONS(1705), [anon_sym_async] = ACTIONS(1705), [anon_sym_function] = ACTIONS(1705), @@ -105545,6 +105629,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1705), [anon_sym_PLUS_PLUS] = ACTIONS(1703), [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1703), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1703), [sym_number] = ACTIONS(1703), @@ -105579,217 +105665,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(2476), [sym_html_comment] = ACTIONS(5), }, - [753] = { - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_namespace] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_typeof] = ACTIONS(1845), - [anon_sym_import] = ACTIONS(1845), - [anon_sym_with] = ACTIONS(1845), - [anon_sym_var] = ACTIONS(1845), - [anon_sym_let] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_switch] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_await] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_do] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_debugger] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_throw] = ACTIONS(1845), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [sym_glimmer_opening_tag] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [anon_sym_SQUOTE] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1845), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_using] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_void] = ACTIONS(1845), - [anon_sym_delete] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1843), - [sym_number] = ACTIONS(1843), - [sym_private_property_identifier] = ACTIONS(1843), - [sym_this] = ACTIONS(1845), - [sym_super] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_null] = ACTIONS(1845), - [sym_undefined] = ACTIONS(1845), - [anon_sym_AT] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1845), - [anon_sym_readonly] = ACTIONS(1845), - [anon_sym_get] = ACTIONS(1845), - [anon_sym_set] = ACTIONS(1845), - [anon_sym_declare] = ACTIONS(1845), - [anon_sym_public] = ACTIONS(1845), - [anon_sym_private] = ACTIONS(1845), - [anon_sym_protected] = ACTIONS(1845), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_module] = ACTIONS(1845), - [anon_sym_any] = ACTIONS(1845), - [anon_sym_number] = ACTIONS(1845), - [anon_sym_boolean] = ACTIONS(1845), - [anon_sym_string] = ACTIONS(1845), - [anon_sym_symbol] = ACTIONS(1845), - [anon_sym_object] = ACTIONS(1845), - [anon_sym_abstract] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), - [anon_sym_PIPE_RBRACE] = ACTIONS(1843), - [sym__automatic_semicolon] = ACTIONS(1843), + [754] = { + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_export] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_namespace] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_typeof] = ACTIONS(1791), + [anon_sym_import] = ACTIONS(1791), + [anon_sym_with] = ACTIONS(1791), + [anon_sym_var] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_else] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_switch] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_debugger] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_throw] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1789), + [sym_glimmer_opening_tag] = ACTIONS(1789), + [anon_sym_class] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_function] = ACTIONS(1791), + [anon_sym_new] = ACTIONS(1791), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1791), + [anon_sym_delete] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1789), + [sym_number] = ACTIONS(1789), + [sym_private_property_identifier] = ACTIONS(1789), + [sym_this] = ACTIONS(1791), + [sym_super] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_undefined] = ACTIONS(1791), + [anon_sym_AT] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_get] = ACTIONS(1791), + [anon_sym_set] = ACTIONS(1791), + [anon_sym_declare] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_private] = ACTIONS(1791), + [anon_sym_protected] = ACTIONS(1791), + [anon_sym_override] = ACTIONS(1791), + [anon_sym_module] = ACTIONS(1791), + [anon_sym_any] = ACTIONS(1791), + [anon_sym_number] = ACTIONS(1791), + [anon_sym_boolean] = ACTIONS(1791), + [anon_sym_string] = ACTIONS(1791), + [anon_sym_symbol] = ACTIONS(1791), + [anon_sym_object] = ACTIONS(1791), + [anon_sym_abstract] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_PIPE_RBRACE] = ACTIONS(1789), + [sym__automatic_semicolon] = ACTIONS(1789), [sym_html_comment] = ACTIONS(5), }, - [754] = { - [ts_builtin_sym_end] = ACTIONS(1801), - [sym_identifier] = ACTIONS(1803), - [anon_sym_export] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_type] = ACTIONS(1803), - [anon_sym_namespace] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_COMMA] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_typeof] = ACTIONS(1803), - [anon_sym_import] = ACTIONS(1803), - [anon_sym_with] = ACTIONS(1803), - [anon_sym_var] = ACTIONS(1803), - [anon_sym_let] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_else] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1803), - [anon_sym_switch] = ACTIONS(1803), - [anon_sym_for] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_await] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_do] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1803), - [anon_sym_continue] = ACTIONS(1803), - [anon_sym_debugger] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1803), - [anon_sym_throw] = ACTIONS(1803), - [anon_sym_case] = ACTIONS(1803), - [anon_sym_yield] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1801), - [sym_glimmer_opening_tag] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_class] = ACTIONS(1803), - [anon_sym_async] = ACTIONS(1803), - [anon_sym_function] = ACTIONS(1803), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1803), - [anon_sym_PLUS] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_SLASH] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1801), - [anon_sym_void] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1803), - [anon_sym_PLUS_PLUS] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1801), - [sym_number] = ACTIONS(1801), - [sym_private_property_identifier] = ACTIONS(1801), - [sym_this] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_undefined] = ACTIONS(1803), - [anon_sym_AT] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_readonly] = ACTIONS(1803), - [anon_sym_get] = ACTIONS(1803), - [anon_sym_set] = ACTIONS(1803), - [anon_sym_declare] = ACTIONS(1803), - [anon_sym_public] = ACTIONS(1803), - [anon_sym_private] = ACTIONS(1803), - [anon_sym_protected] = ACTIONS(1803), - [anon_sym_override] = ACTIONS(1803), - [anon_sym_module] = ACTIONS(1803), - [anon_sym_any] = ACTIONS(1803), - [anon_sym_number] = ACTIONS(1803), - [anon_sym_boolean] = ACTIONS(1803), - [anon_sym_string] = ACTIONS(1803), - [anon_sym_symbol] = ACTIONS(1803), - [anon_sym_object] = ACTIONS(1803), - [anon_sym_abstract] = ACTIONS(1803), - [anon_sym_interface] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_PIPE_RBRACE] = ACTIONS(1801), + [755] = { + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_export] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_namespace] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_COMMA] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_typeof] = ACTIONS(1791), + [anon_sym_import] = ACTIONS(1791), + [anon_sym_with] = ACTIONS(1791), + [anon_sym_var] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_else] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_switch] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_debugger] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_throw] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1789), + [sym_glimmer_opening_tag] = ACTIONS(1789), + [anon_sym_class] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_function] = ACTIONS(1791), + [anon_sym_new] = ACTIONS(1791), + [anon_sym_using] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1791), + [anon_sym_delete] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1789), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1789), + [sym_number] = ACTIONS(1789), + [sym_private_property_identifier] = ACTIONS(1789), + [sym_this] = ACTIONS(1791), + [sym_super] = ACTIONS(1791), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_undefined] = ACTIONS(1791), + [anon_sym_AT] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_readonly] = ACTIONS(1791), + [anon_sym_get] = ACTIONS(1791), + [anon_sym_set] = ACTIONS(1791), + [anon_sym_declare] = ACTIONS(1791), + [anon_sym_public] = ACTIONS(1791), + [anon_sym_private] = ACTIONS(1791), + [anon_sym_protected] = ACTIONS(1791), + [anon_sym_override] = ACTIONS(1791), + [anon_sym_module] = ACTIONS(1791), + [anon_sym_any] = ACTIONS(1791), + [anon_sym_number] = ACTIONS(1791), + [anon_sym_boolean] = ACTIONS(1791), + [anon_sym_string] = ACTIONS(1791), + [anon_sym_symbol] = ACTIONS(1791), + [anon_sym_object] = ACTIONS(1791), + [anon_sym_abstract] = ACTIONS(1791), + [anon_sym_interface] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_PIPE_RBRACE] = ACTIONS(1789), [sym__automatic_semicolon] = ACTIONS(2478), [sym_html_comment] = ACTIONS(5), }, - [755] = { + [756] = { [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2472), [anon_sym_export] = ACTIONS(2474), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(831), + [anon_sym_EQ] = ACTIONS(925), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2474), [anon_sym_let] = ACTIONS(2474), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2448), + [anon_sym_function] = ACTIONS(2480), [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -105804,18 +105889,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2474), [anon_sym_readonly] = ACTIONS(2474), [anon_sym_get] = ACTIONS(2474), @@ -105833,14 +105919,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2474), [anon_sym_object] = ACTIONS(2474), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [756] = { + [757] = { [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2472), [anon_sym_export] = ACTIONS(2474), [anon_sym_STAR] = ACTIONS(122), @@ -105851,31 +105937,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2474), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2342), + [anon_sym_function] = ACTIONS(2338), [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -105890,18 +105975,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2474), [anon_sym_readonly] = ACTIONS(2474), [anon_sym_get] = ACTIONS(2474), @@ -105919,100 +106005,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2474), [anon_sym_object] = ACTIONS(2474), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [757] = { - [ts_builtin_sym_end] = ACTIONS(1843), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1845), - [anon_sym_type] = ACTIONS(1845), - [anon_sym_namespace] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_COMMA] = ACTIONS(1843), - [anon_sym_RBRACE] = ACTIONS(1843), - [anon_sym_typeof] = ACTIONS(1845), - [anon_sym_import] = ACTIONS(1845), - [anon_sym_with] = ACTIONS(1845), - [anon_sym_var] = ACTIONS(1845), - [anon_sym_let] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_else] = ACTIONS(1845), - [anon_sym_if] = ACTIONS(1845), - [anon_sym_switch] = ACTIONS(1845), - [anon_sym_for] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_await] = ACTIONS(1845), - [anon_sym_while] = ACTIONS(1845), - [anon_sym_do] = ACTIONS(1845), - [anon_sym_try] = ACTIONS(1845), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1845), - [anon_sym_debugger] = ACTIONS(1845), - [anon_sym_return] = ACTIONS(1845), - [anon_sym_throw] = ACTIONS(1845), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_catch] = ACTIONS(1845), - [anon_sym_finally] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1843), - [sym_glimmer_opening_tag] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [anon_sym_SQUOTE] = ACTIONS(1843), - [anon_sym_class] = ACTIONS(1845), - [anon_sym_async] = ACTIONS(1845), - [anon_sym_function] = ACTIONS(1845), - [anon_sym_new] = ACTIONS(1845), - [anon_sym_using] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(1845), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_SLASH] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1843), - [anon_sym_void] = ACTIONS(1845), - [anon_sym_delete] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1843), - [sym_number] = ACTIONS(1843), - [sym_private_property_identifier] = ACTIONS(1843), - [sym_this] = ACTIONS(1845), - [sym_super] = ACTIONS(1845), - [sym_true] = ACTIONS(1845), - [sym_false] = ACTIONS(1845), - [sym_null] = ACTIONS(1845), - [sym_undefined] = ACTIONS(1845), - [anon_sym_AT] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1845), - [anon_sym_readonly] = ACTIONS(1845), - [anon_sym_get] = ACTIONS(1845), - [anon_sym_set] = ACTIONS(1845), - [anon_sym_declare] = ACTIONS(1845), - [anon_sym_public] = ACTIONS(1845), - [anon_sym_private] = ACTIONS(1845), - [anon_sym_protected] = ACTIONS(1845), - [anon_sym_override] = ACTIONS(1845), - [anon_sym_module] = ACTIONS(1845), - [anon_sym_any] = ACTIONS(1845), - [anon_sym_number] = ACTIONS(1845), - [anon_sym_boolean] = ACTIONS(1845), - [anon_sym_string] = ACTIONS(1845), - [anon_sym_symbol] = ACTIONS(1845), - [anon_sym_object] = ACTIONS(1845), - [anon_sym_abstract] = ACTIONS(1845), - [anon_sym_interface] = ACTIONS(1845), - [anon_sym_enum] = ACTIONS(1845), + [758] = { + [sym__call_signature] = STATE(5493), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2464), + [anon_sym_export] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2466), + [anon_sym_EQ] = ACTIONS(904), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2466), + [anon_sym_COMMA] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(224), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2466), + [anon_sym_function] = ACTIONS(2429), + [anon_sym_EQ_GT] = ACTIONS(913), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2466), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_readonly] = ACTIONS(2466), + [anon_sym_get] = ACTIONS(2466), + [anon_sym_set] = ACTIONS(2466), + [anon_sym_declare] = ACTIONS(2466), + [anon_sym_public] = ACTIONS(2466), + [anon_sym_private] = ACTIONS(2466), + [anon_sym_protected] = ACTIONS(2466), + [anon_sym_override] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_any] = ACTIONS(2466), + [anon_sym_number] = ACTIONS(2466), + [anon_sym_boolean] = ACTIONS(2466), + [anon_sym_string] = ACTIONS(2466), + [anon_sym_symbol] = ACTIONS(2466), + [anon_sym_object] = ACTIONS(2466), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [758] = { + [759] = { [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2472), [anon_sym_export] = ACTIONS(2474), [anon_sym_STAR] = ACTIONS(122), @@ -106023,31 +106109,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2474), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2480), + [anon_sym_function] = ACTIONS(2446), [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -106062,18 +106147,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2474), [anon_sym_readonly] = ACTIONS(2474), [anon_sym_get] = ACTIONS(2474), @@ -106091,135 +106177,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2474), [anon_sym_object] = ACTIONS(2474), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [759] = { - [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2460), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2460), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2460), - [anon_sym_readonly] = ACTIONS(2460), - [anon_sym_get] = ACTIONS(2460), - [anon_sym_set] = ACTIONS(2460), - [anon_sym_declare] = ACTIONS(2460), - [anon_sym_public] = ACTIONS(2460), - [anon_sym_private] = ACTIONS(2460), - [anon_sym_protected] = ACTIONS(2460), - [anon_sym_override] = ACTIONS(2460), - [anon_sym_module] = ACTIONS(2460), - [anon_sym_any] = ACTIONS(2460), - [anon_sym_number] = ACTIONS(2460), - [anon_sym_boolean] = ACTIONS(2460), - [anon_sym_string] = ACTIONS(2460), - [anon_sym_symbol] = ACTIONS(2460), - [anon_sym_object] = ACTIONS(2460), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [760] = { [sym__call_signature] = STATE(5613), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2472), [anon_sym_export] = ACTIONS(2474), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(831), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2474), [anon_sym_let] = ACTIONS(2474), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2442), + [anon_sym_function] = ACTIONS(2448), [anon_sym_EQ_GT] = ACTIONS(931), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -106234,18 +106233,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2474), [anon_sym_readonly] = ACTIONS(2474), [anon_sym_get] = ACTIONS(2474), @@ -106263,183 +106263,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2474), [anon_sym_object] = ACTIONS(2474), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [761] = { - [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2460), - [anon_sym_EQ] = ACTIONS(904), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2460), - [anon_sym_COMMA] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2460), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(224), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2460), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2460), - [anon_sym_readonly] = ACTIONS(2460), - [anon_sym_get] = ACTIONS(2460), - [anon_sym_set] = ACTIONS(2460), - [anon_sym_declare] = ACTIONS(2460), - [anon_sym_public] = ACTIONS(2460), - [anon_sym_private] = ACTIONS(2460), - [anon_sym_protected] = ACTIONS(2460), - [anon_sym_override] = ACTIONS(2460), - [anon_sym_module] = ACTIONS(2460), - [anon_sym_any] = ACTIONS(2460), - [anon_sym_number] = ACTIONS(2460), - [anon_sym_boolean] = ACTIONS(2460), - [anon_sym_string] = ACTIONS(2460), - [anon_sym_symbol] = ACTIONS(2460), - [anon_sym_object] = ACTIONS(2460), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [ts_builtin_sym_end] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1833), + [anon_sym_type] = ACTIONS(1833), + [anon_sym_namespace] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_COMMA] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_typeof] = ACTIONS(1833), + [anon_sym_import] = ACTIONS(1833), + [anon_sym_with] = ACTIONS(1833), + [anon_sym_var] = ACTIONS(1833), + [anon_sym_let] = ACTIONS(1833), + [anon_sym_const] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_else] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_switch] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_while] = ACTIONS(1833), + [anon_sym_do] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1833), + [anon_sym_break] = ACTIONS(1833), + [anon_sym_continue] = ACTIONS(1833), + [anon_sym_debugger] = ACTIONS(1833), + [anon_sym_return] = ACTIONS(1833), + [anon_sym_throw] = ACTIONS(1833), + [anon_sym_case] = ACTIONS(1833), + [anon_sym_catch] = ACTIONS(1833), + [anon_sym_finally] = ACTIONS(1833), + [anon_sym_yield] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1831), + [sym_glimmer_opening_tag] = ACTIONS(1831), + [anon_sym_class] = ACTIONS(1833), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1833), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1833), + [anon_sym_PLUS] = ACTIONS(1833), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_SLASH] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1833), + [anon_sym_delete] = ACTIONS(1833), + [anon_sym_PLUS_PLUS] = ACTIONS(1831), + [anon_sym_DASH_DASH] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1831), + [sym_number] = ACTIONS(1831), + [sym_private_property_identifier] = ACTIONS(1831), + [sym_this] = ACTIONS(1833), + [sym_super] = ACTIONS(1833), + [sym_true] = ACTIONS(1833), + [sym_false] = ACTIONS(1833), + [sym_null] = ACTIONS(1833), + [sym_undefined] = ACTIONS(1833), + [anon_sym_AT] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1833), + [anon_sym_readonly] = ACTIONS(1833), + [anon_sym_get] = ACTIONS(1833), + [anon_sym_set] = ACTIONS(1833), + [anon_sym_declare] = ACTIONS(1833), + [anon_sym_public] = ACTIONS(1833), + [anon_sym_private] = ACTIONS(1833), + [anon_sym_protected] = ACTIONS(1833), + [anon_sym_override] = ACTIONS(1833), + [anon_sym_module] = ACTIONS(1833), + [anon_sym_any] = ACTIONS(1833), + [anon_sym_number] = ACTIONS(1833), + [anon_sym_boolean] = ACTIONS(1833), + [anon_sym_string] = ACTIONS(1833), + [anon_sym_symbol] = ACTIONS(1833), + [anon_sym_object] = ACTIONS(1833), + [anon_sym_abstract] = ACTIONS(1833), + [anon_sym_interface] = ACTIONS(1833), + [anon_sym_enum] = ACTIONS(1833), [sym_html_comment] = ACTIONS(5), }, [762] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [763] = { - [sym_statement_block] = STATE(898), + [sym_statement_block] = STATE(899), [ts_builtin_sym_end] = ACTIONS(1717), [sym_identifier] = ACTIONS(1719), [anon_sym_export] = ACTIONS(1719), @@ -106475,8 +106390,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1717), [sym_glimmer_opening_tag] = ACTIONS(1717), [anon_sym_DOT] = ACTIONS(2484), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), [anon_sym_class] = ACTIONS(1719), [anon_sym_async] = ACTIONS(1719), [anon_sym_function] = ACTIONS(1719), @@ -106491,6 +106404,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1719), [anon_sym_PLUS_PLUS] = ACTIONS(1717), [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_SQUOTE] = ACTIONS(1717), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1717), [sym_number] = ACTIONS(1717), @@ -106523,8 +106438,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [764] = { - [sym_statement_block] = STATE(898), + [763] = { + [sym_statement_block] = STATE(899), [ts_builtin_sym_end] = ACTIONS(1717), [sym_identifier] = ACTIONS(1719), [anon_sym_export] = ACTIONS(1719), @@ -106560,8 +106475,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1717), [sym_glimmer_opening_tag] = ACTIONS(1717), [anon_sym_DOT] = ACTIONS(2486), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), [anon_sym_class] = ACTIONS(1719), [anon_sym_async] = ACTIONS(1719), [anon_sym_function] = ACTIONS(1719), @@ -106576,6 +106489,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1719), [anon_sym_PLUS_PLUS] = ACTIONS(1717), [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_SQUOTE] = ACTIONS(1717), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1717), [sym_number] = ACTIONS(1717), @@ -106608,10 +106523,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [765] = { - [sym__call_signature] = STATE(5749), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [764] = { + [sym__call_signature] = STATE(5756), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2488), [anon_sym_export] = ACTIONS(2490), [anon_sym_STAR] = ACTIONS(122), @@ -106623,30 +106538,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2490), [anon_sym_function] = ACTIONS(2429), [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2490), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -106661,18 +106575,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2490), [anon_sym_readonly] = ACTIONS(2490), [anon_sym_get] = ACTIONS(2490), @@ -106690,48 +106605,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2490), [anon_sym_object] = ACTIONS(2490), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [766] = { + [765] = { [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2460), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2464), + [anon_sym_export] = ACTIONS(2466), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2460), + [anon_sym_type] = ACTIONS(2466), [anon_sym_EQ] = ACTIONS(917), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), + [anon_sym_namespace] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2460), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2466), [anon_sym_function] = ACTIONS(2429), [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2466), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -106746,42 +106660,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2460), - [anon_sym_readonly] = ACTIONS(2460), - [anon_sym_get] = ACTIONS(2460), - [anon_sym_set] = ACTIONS(2460), - [anon_sym_declare] = ACTIONS(2460), - [anon_sym_public] = ACTIONS(2460), - [anon_sym_private] = ACTIONS(2460), - [anon_sym_protected] = ACTIONS(2460), - [anon_sym_override] = ACTIONS(2460), - [anon_sym_module] = ACTIONS(2460), - [anon_sym_any] = ACTIONS(2460), - [anon_sym_number] = ACTIONS(2460), - [anon_sym_boolean] = ACTIONS(2460), - [anon_sym_string] = ACTIONS(2460), - [anon_sym_symbol] = ACTIONS(2460), - [anon_sym_object] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_readonly] = ACTIONS(2466), + [anon_sym_get] = ACTIONS(2466), + [anon_sym_set] = ACTIONS(2466), + [anon_sym_declare] = ACTIONS(2466), + [anon_sym_public] = ACTIONS(2466), + [anon_sym_private] = ACTIONS(2466), + [anon_sym_protected] = ACTIONS(2466), + [anon_sym_override] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_any] = ACTIONS(2466), + [anon_sym_number] = ACTIONS(2466), + [anon_sym_boolean] = ACTIONS(2466), + [anon_sym_string] = ACTIONS(2466), + [anon_sym_symbol] = ACTIONS(2466), + [anon_sym_object] = ACTIONS(2466), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [767] = { - [sym__call_signature] = STATE(5749), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [766] = { + [sym__call_signature] = STATE(5756), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2488), [anon_sym_export] = ACTIONS(2490), [anon_sym_STAR] = ACTIONS(122), @@ -106793,30 +106708,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2490), [anon_sym_function] = ACTIONS(2429), [anon_sym_EQ_GT] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2490), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -106831,18 +106745,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2490), [anon_sym_readonly] = ACTIONS(2490), [anon_sym_get] = ACTIONS(2490), @@ -106860,48 +106775,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2490), [anon_sym_object] = ACTIONS(2490), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [768] = { - [sym__call_signature] = STATE(5493), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2460), + [767] = { + [sym__call_signature] = STATE(5844), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2422), + [anon_sym_export] = ACTIONS(2424), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2460), + [anon_sym_type] = ACTIONS(2424), [anon_sym_EQ] = ACTIONS(831), [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2460), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2424), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2424), + [anon_sym_function] = ACTIONS(2429), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2460), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_readonly] = ACTIONS(2424), + [anon_sym_get] = ACTIONS(2424), + [anon_sym_set] = ACTIONS(2424), + [anon_sym_declare] = ACTIONS(2424), + [anon_sym_public] = ACTIONS(2424), + [anon_sym_private] = ACTIONS(2424), + [anon_sym_protected] = ACTIONS(2424), + [anon_sym_override] = ACTIONS(2424), + [anon_sym_module] = ACTIONS(2424), + [anon_sym_any] = ACTIONS(2424), + [anon_sym_number] = ACTIONS(2424), + [anon_sym_boolean] = ACTIONS(2424), + [anon_sym_string] = ACTIONS(2424), + [anon_sym_symbol] = ACTIONS(2424), + [anon_sym_object] = ACTIONS(2424), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [768] = { + [sym__call_signature] = STATE(5844), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2422), + [anon_sym_export] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2424), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2424), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_in] = ACTIONS(895), + [anon_sym_of] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(913), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2460), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -106916,47 +106915,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2460), - [anon_sym_readonly] = ACTIONS(2460), - [anon_sym_get] = ACTIONS(2460), - [anon_sym_set] = ACTIONS(2460), - [anon_sym_declare] = ACTIONS(2460), - [anon_sym_public] = ACTIONS(2460), - [anon_sym_private] = ACTIONS(2460), - [anon_sym_protected] = ACTIONS(2460), - [anon_sym_override] = ACTIONS(2460), - [anon_sym_module] = ACTIONS(2460), - [anon_sym_any] = ACTIONS(2460), - [anon_sym_number] = ACTIONS(2460), - [anon_sym_boolean] = ACTIONS(2460), - [anon_sym_string] = ACTIONS(2460), - [anon_sym_symbol] = ACTIONS(2460), - [anon_sym_object] = ACTIONS(2460), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_readonly] = ACTIONS(2424), + [anon_sym_get] = ACTIONS(2424), + [anon_sym_set] = ACTIONS(2424), + [anon_sym_declare] = ACTIONS(2424), + [anon_sym_public] = ACTIONS(2424), + [anon_sym_private] = ACTIONS(2424), + [anon_sym_protected] = ACTIONS(2424), + [anon_sym_override] = ACTIONS(2424), + [anon_sym_module] = ACTIONS(2424), + [anon_sym_any] = ACTIONS(2424), + [anon_sym_number] = ACTIONS(2424), + [anon_sym_boolean] = ACTIONS(2424), + [anon_sym_string] = ACTIONS(2424), + [anon_sym_symbol] = ACTIONS(2424), + [anon_sym_object] = ACTIONS(2424), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [769] = { [sym__call_signature] = STATE(5545), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2492), [anon_sym_export] = ACTIONS(2494), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2494), - [anon_sym_EQ] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(831), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2494), [anon_sym_let] = ACTIONS(2494), @@ -106964,29 +106964,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2494), [anon_sym_function] = ACTIONS(2429), [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2494), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -107001,18 +107000,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2494), [anon_sym_readonly] = ACTIONS(2494), [anon_sym_get] = ACTIONS(2494), @@ -107030,18 +107030,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2494), [anon_sym_object] = ACTIONS(2494), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [770] = { [sym__call_signature] = STATE(5545), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2492), [anon_sym_export] = ACTIONS(2494), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2494), - [anon_sym_EQ] = ACTIONS(831), + [anon_sym_EQ] = ACTIONS(969), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2494), [anon_sym_let] = ACTIONS(2494), @@ -107049,29 +107049,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2494), [anon_sym_function] = ACTIONS(2429), [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2494), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -107086,18 +107085,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2494), [anon_sym_readonly] = ACTIONS(2494), [anon_sym_get] = ACTIONS(2494), @@ -107115,96 +107115,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2494), [anon_sym_object] = ACTIONS(2494), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [771] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(895), - [anon_sym_of] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [772] = { - [sym_finally_clause] = STATE(841), + [sym_finally_clause] = STATE(842), [ts_builtin_sym_end] = ACTIONS(2496), [sym_identifier] = ACTIONS(2498), [anon_sym_export] = ACTIONS(2498), @@ -107236,12 +107151,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2498), [anon_sym_throw] = ACTIONS(2498), [anon_sym_case] = ACTIONS(2498), - [anon_sym_finally] = ACTIONS(2468), + [anon_sym_finally] = ACTIONS(2460), [anon_sym_yield] = ACTIONS(2498), [anon_sym_LBRACK] = ACTIONS(2496), [sym_glimmer_opening_tag] = ACTIONS(2496), - [anon_sym_DQUOTE] = ACTIONS(2496), - [anon_sym_SQUOTE] = ACTIONS(2496), [anon_sym_class] = ACTIONS(2498), [anon_sym_async] = ACTIONS(2498), [anon_sym_function] = ACTIONS(2498), @@ -107256,6 +107169,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2498), [anon_sym_PLUS_PLUS] = ACTIONS(2496), [anon_sym_DASH_DASH] = ACTIONS(2496), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2496), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2496), [sym_number] = ACTIONS(2496), @@ -107288,7 +107203,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2498), [sym_html_comment] = ACTIONS(5), }, + [772] = { + [sym__call_signature] = STATE(5493), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2464), + [anon_sym_export] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2466), + [anon_sym_EQ] = ACTIONS(831), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2466), + [anon_sym_function] = ACTIONS(2429), + [anon_sym_EQ_GT] = ACTIONS(913), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2466), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_readonly] = ACTIONS(2466), + [anon_sym_get] = ACTIONS(2466), + [anon_sym_set] = ACTIONS(2466), + [anon_sym_declare] = ACTIONS(2466), + [anon_sym_public] = ACTIONS(2466), + [anon_sym_private] = ACTIONS(2466), + [anon_sym_protected] = ACTIONS(2466), + [anon_sym_override] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_any] = ACTIONS(2466), + [anon_sym_number] = ACTIONS(2466), + [anon_sym_boolean] = ACTIONS(2466), + [anon_sym_string] = ACTIONS(2466), + [anon_sym_symbol] = ACTIONS(2466), + [anon_sym_object] = ACTIONS(2466), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, [773] = { + [ts_builtin_sym_end] = ACTIONS(1799), + [sym_identifier] = ACTIONS(1801), + [anon_sym_export] = ACTIONS(1801), + [anon_sym_default] = ACTIONS(1801), + [anon_sym_type] = ACTIONS(1801), + [anon_sym_namespace] = ACTIONS(1801), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_typeof] = ACTIONS(1801), + [anon_sym_import] = ACTIONS(1801), + [anon_sym_with] = ACTIONS(1801), + [anon_sym_var] = ACTIONS(1801), + [anon_sym_let] = ACTIONS(1801), + [anon_sym_const] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1801), + [anon_sym_if] = ACTIONS(1801), + [anon_sym_switch] = ACTIONS(1801), + [anon_sym_for] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1799), + [anon_sym_await] = ACTIONS(1801), + [anon_sym_while] = ACTIONS(1801), + [anon_sym_do] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1801), + [anon_sym_break] = ACTIONS(1801), + [anon_sym_continue] = ACTIONS(1801), + [anon_sym_debugger] = ACTIONS(1801), + [anon_sym_return] = ACTIONS(1801), + [anon_sym_throw] = ACTIONS(1801), + [anon_sym_case] = ACTIONS(1801), + [anon_sym_yield] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1799), + [sym_glimmer_opening_tag] = ACTIONS(1799), + [anon_sym_class] = ACTIONS(1801), + [anon_sym_async] = ACTIONS(1801), + [anon_sym_function] = ACTIONS(1801), + [anon_sym_new] = ACTIONS(1801), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1801), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_SLASH] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_void] = ACTIONS(1801), + [anon_sym_delete] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [anon_sym_SQUOTE] = ACTIONS(1799), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1799), + [sym_number] = ACTIONS(1799), + [sym_private_property_identifier] = ACTIONS(1799), + [sym_this] = ACTIONS(1801), + [sym_super] = ACTIONS(1801), + [sym_true] = ACTIONS(1801), + [sym_false] = ACTIONS(1801), + [sym_null] = ACTIONS(1801), + [sym_undefined] = ACTIONS(1801), + [anon_sym_AT] = ACTIONS(1799), + [anon_sym_static] = ACTIONS(1801), + [anon_sym_readonly] = ACTIONS(1801), + [anon_sym_get] = ACTIONS(1801), + [anon_sym_set] = ACTIONS(1801), + [anon_sym_declare] = ACTIONS(1801), + [anon_sym_public] = ACTIONS(1801), + [anon_sym_private] = ACTIONS(1801), + [anon_sym_protected] = ACTIONS(1801), + [anon_sym_override] = ACTIONS(1801), + [anon_sym_module] = ACTIONS(1801), + [anon_sym_any] = ACTIONS(1801), + [anon_sym_number] = ACTIONS(1801), + [anon_sym_boolean] = ACTIONS(1801), + [anon_sym_string] = ACTIONS(1801), + [anon_sym_symbol] = ACTIONS(1801), + [anon_sym_object] = ACTIONS(1801), + [anon_sym_abstract] = ACTIONS(1801), + [anon_sym_interface] = ACTIONS(1801), + [anon_sym_enum] = ACTIONS(1801), + [sym__automatic_semicolon] = ACTIONS(1807), + [sym_html_comment] = ACTIONS(5), + }, + [774] = { [ts_builtin_sym_end] = ACTIONS(2500), [sym_identifier] = ACTIONS(2502), [anon_sym_export] = ACTIONS(2502), @@ -107323,8 +107407,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2502), [anon_sym_LBRACK] = ACTIONS(2500), [sym_glimmer_opening_tag] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_SQUOTE] = ACTIONS(2500), [anon_sym_class] = ACTIONS(2502), [anon_sym_async] = ACTIONS(2502), [anon_sym_function] = ACTIONS(2502), @@ -107339,6 +107421,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2502), [anon_sym_PLUS_PLUS] = ACTIONS(2500), [anon_sym_DASH_DASH] = ACTIONS(2500), + [anon_sym_DQUOTE] = ACTIONS(2500), + [anon_sym_SQUOTE] = ACTIONS(2500), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2500), [sym_number] = ACTIONS(2500), @@ -107372,94 +107456,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(2500), [sym_html_comment] = ACTIONS(5), }, - [774] = { - [ts_builtin_sym_end] = ACTIONS(2504), - [sym_identifier] = ACTIONS(2506), - [anon_sym_export] = ACTIONS(2506), - [anon_sym_default] = ACTIONS(2506), - [anon_sym_type] = ACTIONS(2506), - [anon_sym_namespace] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2504), - [anon_sym_RBRACE] = ACTIONS(2504), - [anon_sym_typeof] = ACTIONS(2506), - [anon_sym_import] = ACTIONS(2506), - [anon_sym_with] = ACTIONS(2506), - [anon_sym_var] = ACTIONS(2506), - [anon_sym_let] = ACTIONS(2506), - [anon_sym_const] = ACTIONS(2506), - [anon_sym_BANG] = ACTIONS(2504), - [anon_sym_else] = ACTIONS(2506), - [anon_sym_if] = ACTIONS(2506), - [anon_sym_switch] = ACTIONS(2506), - [anon_sym_for] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2504), - [anon_sym_await] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2506), - [anon_sym_do] = ACTIONS(2506), - [anon_sym_try] = ACTIONS(2506), - [anon_sym_break] = ACTIONS(2506), - [anon_sym_continue] = ACTIONS(2506), - [anon_sym_debugger] = ACTIONS(2506), - [anon_sym_return] = ACTIONS(2506), - [anon_sym_throw] = ACTIONS(2506), - [anon_sym_case] = ACTIONS(2506), - [anon_sym_finally] = ACTIONS(2506), - [anon_sym_yield] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2504), - [sym_glimmer_opening_tag] = ACTIONS(2504), - [anon_sym_DQUOTE] = ACTIONS(2504), - [anon_sym_SQUOTE] = ACTIONS(2504), - [anon_sym_class] = ACTIONS(2506), - [anon_sym_async] = ACTIONS(2506), - [anon_sym_function] = ACTIONS(2506), - [anon_sym_new] = ACTIONS(2506), - [anon_sym_using] = ACTIONS(2506), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_SLASH] = ACTIONS(2506), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(2506), - [anon_sym_delete] = ACTIONS(2506), - [anon_sym_PLUS_PLUS] = ACTIONS(2504), - [anon_sym_DASH_DASH] = ACTIONS(2504), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2504), - [sym_number] = ACTIONS(2504), - [sym_private_property_identifier] = ACTIONS(2504), - [sym_this] = ACTIONS(2506), - [sym_super] = ACTIONS(2506), - [sym_true] = ACTIONS(2506), - [sym_false] = ACTIONS(2506), - [sym_null] = ACTIONS(2506), - [sym_undefined] = ACTIONS(2506), - [anon_sym_AT] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2506), - [anon_sym_readonly] = ACTIONS(2506), - [anon_sym_get] = ACTIONS(2506), - [anon_sym_set] = ACTIONS(2506), - [anon_sym_declare] = ACTIONS(2506), - [anon_sym_public] = ACTIONS(2506), - [anon_sym_private] = ACTIONS(2506), - [anon_sym_protected] = ACTIONS(2506), - [anon_sym_override] = ACTIONS(2506), - [anon_sym_module] = ACTIONS(2506), - [anon_sym_any] = ACTIONS(2506), - [anon_sym_number] = ACTIONS(2506), - [anon_sym_boolean] = ACTIONS(2506), - [anon_sym_string] = ACTIONS(2506), - [anon_sym_symbol] = ACTIONS(2506), - [anon_sym_object] = ACTIONS(2506), - [anon_sym_abstract] = ACTIONS(2506), - [anon_sym_interface] = ACTIONS(2506), - [anon_sym_enum] = ACTIONS(2506), - [sym_html_comment] = ACTIONS(5), - }, [775] = { [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2422), [anon_sym_export] = ACTIONS(2424), [anon_sym_STAR] = ACTIONS(122), @@ -107471,29 +107471,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -107508,18 +107507,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2424), [anon_sym_readonly] = ACTIONS(2424), [anon_sym_get] = ACTIONS(2424), @@ -107537,346 +107537,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2424), [anon_sym_object] = ACTIONS(2424), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [776] = { - [ts_builtin_sym_end] = ACTIONS(1781), - [sym_identifier] = ACTIONS(1783), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_default] = ACTIONS(1783), - [anon_sym_type] = ACTIONS(1783), - [anon_sym_namespace] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1781), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_typeof] = ACTIONS(1783), - [anon_sym_import] = ACTIONS(1783), - [anon_sym_with] = ACTIONS(1783), - [anon_sym_var] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_BANG] = ACTIONS(1781), - [anon_sym_else] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_switch] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1781), - [anon_sym_await] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_debugger] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_throw] = ACTIONS(1783), - [anon_sym_case] = ACTIONS(1783), - [anon_sym_yield] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1781), - [sym_glimmer_opening_tag] = ACTIONS(1781), - [anon_sym_DQUOTE] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_class] = ACTIONS(1783), - [anon_sym_async] = ACTIONS(1783), - [anon_sym_function] = ACTIONS(1783), - [anon_sym_new] = ACTIONS(1783), - [anon_sym_using] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_SLASH] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1781), - [anon_sym_void] = ACTIONS(1783), - [anon_sym_delete] = ACTIONS(1783), - [anon_sym_PLUS_PLUS] = ACTIONS(1781), - [anon_sym_DASH_DASH] = ACTIONS(1781), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1781), - [sym_number] = ACTIONS(1781), - [sym_private_property_identifier] = ACTIONS(1781), - [sym_this] = ACTIONS(1783), - [sym_super] = ACTIONS(1783), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_null] = ACTIONS(1783), - [sym_undefined] = ACTIONS(1783), - [anon_sym_AT] = ACTIONS(1781), - [anon_sym_static] = ACTIONS(1783), - [anon_sym_readonly] = ACTIONS(1783), - [anon_sym_get] = ACTIONS(1783), - [anon_sym_set] = ACTIONS(1783), - [anon_sym_declare] = ACTIONS(1783), - [anon_sym_public] = ACTIONS(1783), - [anon_sym_private] = ACTIONS(1783), - [anon_sym_protected] = ACTIONS(1783), - [anon_sym_override] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_any] = ACTIONS(1783), - [anon_sym_number] = ACTIONS(1783), - [anon_sym_boolean] = ACTIONS(1783), - [anon_sym_string] = ACTIONS(1783), - [anon_sym_symbol] = ACTIONS(1783), - [anon_sym_object] = ACTIONS(1783), - [anon_sym_abstract] = ACTIONS(1783), - [anon_sym_interface] = ACTIONS(1783), - [anon_sym_enum] = ACTIONS(1783), - [sym__automatic_semicolon] = ACTIONS(1789), + [ts_builtin_sym_end] = ACTIONS(1769), + [sym_identifier] = ACTIONS(1771), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(1771), + [anon_sym_type] = ACTIONS(1771), + [anon_sym_namespace] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_typeof] = ACTIONS(1771), + [anon_sym_import] = ACTIONS(1771), + [anon_sym_with] = ACTIONS(1771), + [anon_sym_var] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_switch] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_await] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_debugger] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_throw] = ACTIONS(1771), + [anon_sym_case] = ACTIONS(1771), + [anon_sym_yield] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1769), + [sym_glimmer_opening_tag] = ACTIONS(1769), + [anon_sym_class] = ACTIONS(1771), + [anon_sym_async] = ACTIONS(1771), + [anon_sym_function] = ACTIONS(1771), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1771), + [anon_sym_SLASH] = ACTIONS(1771), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_void] = ACTIONS(1771), + [anon_sym_delete] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [anon_sym_SQUOTE] = ACTIONS(1769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1769), + [sym_number] = ACTIONS(1769), + [sym_private_property_identifier] = ACTIONS(1769), + [sym_this] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_true] = ACTIONS(1771), + [sym_false] = ACTIONS(1771), + [sym_null] = ACTIONS(1771), + [sym_undefined] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(1769), + [anon_sym_static] = ACTIONS(1771), + [anon_sym_readonly] = ACTIONS(1771), + [anon_sym_get] = ACTIONS(1771), + [anon_sym_set] = ACTIONS(1771), + [anon_sym_declare] = ACTIONS(1771), + [anon_sym_public] = ACTIONS(1771), + [anon_sym_private] = ACTIONS(1771), + [anon_sym_protected] = ACTIONS(1771), + [anon_sym_override] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_any] = ACTIONS(1771), + [anon_sym_number] = ACTIONS(1771), + [anon_sym_boolean] = ACTIONS(1771), + [anon_sym_string] = ACTIONS(1771), + [anon_sym_symbol] = ACTIONS(1771), + [anon_sym_object] = ACTIONS(1771), + [anon_sym_abstract] = ACTIONS(1771), + [anon_sym_interface] = ACTIONS(1771), + [anon_sym_enum] = ACTIONS(1771), + [sym__automatic_semicolon] = ACTIONS(1777), [sym_html_comment] = ACTIONS(5), }, [777] = { - [ts_builtin_sym_end] = ACTIONS(1753), - [sym_identifier] = ACTIONS(1755), - [anon_sym_export] = ACTIONS(1755), - [anon_sym_default] = ACTIONS(1755), - [anon_sym_type] = ACTIONS(1755), - [anon_sym_namespace] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1753), - [anon_sym_RBRACE] = ACTIONS(1753), - [anon_sym_typeof] = ACTIONS(1755), - [anon_sym_import] = ACTIONS(1755), - [anon_sym_with] = ACTIONS(1755), - [anon_sym_var] = ACTIONS(1755), - [anon_sym_let] = ACTIONS(1755), - [anon_sym_const] = ACTIONS(1755), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_else] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym_await] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_try] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_debugger] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_throw] = ACTIONS(1755), - [anon_sym_case] = ACTIONS(1755), - [anon_sym_yield] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1753), - [sym_glimmer_opening_tag] = ACTIONS(1753), - [anon_sym_DQUOTE] = ACTIONS(1753), - [anon_sym_SQUOTE] = ACTIONS(1753), - [anon_sym_class] = ACTIONS(1755), - [anon_sym_async] = ACTIONS(1755), - [anon_sym_function] = ACTIONS(1755), - [anon_sym_new] = ACTIONS(1755), - [anon_sym_using] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_SLASH] = ACTIONS(1755), - [anon_sym_LT] = ACTIONS(1755), - [anon_sym_TILDE] = ACTIONS(1753), - [anon_sym_void] = ACTIONS(1755), - [anon_sym_delete] = ACTIONS(1755), - [anon_sym_PLUS_PLUS] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1753), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1753), - [sym_number] = ACTIONS(1753), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(1755), - [sym_super] = ACTIONS(1755), - [sym_true] = ACTIONS(1755), - [sym_false] = ACTIONS(1755), - [sym_null] = ACTIONS(1755), - [sym_undefined] = ACTIONS(1755), - [anon_sym_AT] = ACTIONS(1753), - [anon_sym_static] = ACTIONS(1755), - [anon_sym_readonly] = ACTIONS(1755), - [anon_sym_get] = ACTIONS(1755), - [anon_sym_set] = ACTIONS(1755), - [anon_sym_declare] = ACTIONS(1755), - [anon_sym_public] = ACTIONS(1755), - [anon_sym_private] = ACTIONS(1755), - [anon_sym_protected] = ACTIONS(1755), - [anon_sym_override] = ACTIONS(1755), - [anon_sym_module] = ACTIONS(1755), - [anon_sym_any] = ACTIONS(1755), - [anon_sym_number] = ACTIONS(1755), - [anon_sym_boolean] = ACTIONS(1755), - [anon_sym_string] = ACTIONS(1755), - [anon_sym_symbol] = ACTIONS(1755), - [anon_sym_object] = ACTIONS(1755), - [anon_sym_abstract] = ACTIONS(1755), - [anon_sym_interface] = ACTIONS(1755), - [anon_sym_enum] = ACTIONS(1755), - [sym__automatic_semicolon] = ACTIONS(1761), + [ts_builtin_sym_end] = ACTIONS(1859), + [sym_identifier] = ACTIONS(1861), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_default] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_typeof] = ACTIONS(1861), + [anon_sym_import] = ACTIONS(1861), + [anon_sym_with] = ACTIONS(1861), + [anon_sym_var] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_switch] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_SEMI] = ACTIONS(1859), + [anon_sym_await] = ACTIONS(1861), + [anon_sym_while] = ACTIONS(1861), + [anon_sym_do] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_debugger] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_throw] = ACTIONS(1861), + [anon_sym_case] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1859), + [sym_glimmer_opening_tag] = ACTIONS(1859), + [anon_sym_class] = ACTIONS(1861), + [anon_sym_async] = ACTIONS(1861), + [anon_sym_function] = ACTIONS(1861), + [anon_sym_new] = ACTIONS(1861), + [anon_sym_using] = ACTIONS(1861), + [anon_sym_PLUS] = ACTIONS(1861), + [anon_sym_DASH] = ACTIONS(1861), + [anon_sym_SLASH] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1861), + [anon_sym_TILDE] = ACTIONS(1859), + [anon_sym_void] = ACTIONS(1861), + [anon_sym_delete] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1859), + [anon_sym_DASH_DASH] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1859), + [anon_sym_SQUOTE] = ACTIONS(1859), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1859), + [sym_number] = ACTIONS(1859), + [sym_private_property_identifier] = ACTIONS(1859), + [sym_this] = ACTIONS(1861), + [sym_super] = ACTIONS(1861), + [sym_true] = ACTIONS(1861), + [sym_false] = ACTIONS(1861), + [sym_null] = ACTIONS(1861), + [sym_undefined] = ACTIONS(1861), + [anon_sym_AT] = ACTIONS(1859), + [anon_sym_static] = ACTIONS(1861), + [anon_sym_readonly] = ACTIONS(1861), + [anon_sym_get] = ACTIONS(1861), + [anon_sym_set] = ACTIONS(1861), + [anon_sym_declare] = ACTIONS(1861), + [anon_sym_public] = ACTIONS(1861), + [anon_sym_private] = ACTIONS(1861), + [anon_sym_protected] = ACTIONS(1861), + [anon_sym_override] = ACTIONS(1861), + [anon_sym_module] = ACTIONS(1861), + [anon_sym_any] = ACTIONS(1861), + [anon_sym_number] = ACTIONS(1861), + [anon_sym_boolean] = ACTIONS(1861), + [anon_sym_string] = ACTIONS(1861), + [anon_sym_symbol] = ACTIONS(1861), + [anon_sym_object] = ACTIONS(1861), + [anon_sym_abstract] = ACTIONS(1861), + [anon_sym_interface] = ACTIONS(1861), + [anon_sym_enum] = ACTIONS(1861), + [sym__automatic_semicolon] = ACTIONS(1867), [sym_html_comment] = ACTIONS(5), }, [778] = { - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_export] = ACTIONS(1769), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_namespace] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_typeof] = ACTIONS(1769), - [anon_sym_import] = ACTIONS(1769), - [anon_sym_with] = ACTIONS(1769), - [anon_sym_var] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_else] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_switch] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_await] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_do] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_debugger] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_throw] = ACTIONS(1769), - [anon_sym_case] = ACTIONS(1769), - [anon_sym_yield] = ACTIONS(1769), - [anon_sym_LBRACK] = ACTIONS(1767), - [sym_glimmer_opening_tag] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [anon_sym_SQUOTE] = ACTIONS(1767), - [anon_sym_class] = ACTIONS(1769), - [anon_sym_async] = ACTIONS(1769), - [anon_sym_function] = ACTIONS(1769), - [anon_sym_new] = ACTIONS(1769), - [anon_sym_using] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_SLASH] = ACTIONS(1769), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_void] = ACTIONS(1769), - [anon_sym_delete] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1767), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1767), - [sym_number] = ACTIONS(1767), - [sym_private_property_identifier] = ACTIONS(1767), - [sym_this] = ACTIONS(1769), - [sym_super] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_null] = ACTIONS(1769), - [sym_undefined] = ACTIONS(1769), - [anon_sym_AT] = ACTIONS(1767), - [anon_sym_static] = ACTIONS(1769), - [anon_sym_readonly] = ACTIONS(1769), - [anon_sym_get] = ACTIONS(1769), - [anon_sym_set] = ACTIONS(1769), - [anon_sym_declare] = ACTIONS(1769), - [anon_sym_public] = ACTIONS(1769), - [anon_sym_private] = ACTIONS(1769), - [anon_sym_protected] = ACTIONS(1769), - [anon_sym_override] = ACTIONS(1769), - [anon_sym_module] = ACTIONS(1769), - [anon_sym_any] = ACTIONS(1769), - [anon_sym_number] = ACTIONS(1769), - [anon_sym_boolean] = ACTIONS(1769), - [anon_sym_string] = ACTIONS(1769), - [anon_sym_symbol] = ACTIONS(1769), - [anon_sym_object] = ACTIONS(1769), - [anon_sym_abstract] = ACTIONS(1769), - [anon_sym_interface] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [sym__automatic_semicolon] = ACTIONS(1775), + [ts_builtin_sym_end] = ACTIONS(1733), + [sym_identifier] = ACTIONS(1735), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_default] = ACTIONS(1735), + [anon_sym_type] = ACTIONS(1735), + [anon_sym_namespace] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_typeof] = ACTIONS(1735), + [anon_sym_import] = ACTIONS(1735), + [anon_sym_with] = ACTIONS(1735), + [anon_sym_var] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_BANG] = ACTIONS(1733), + [anon_sym_else] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_switch] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_debugger] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_throw] = ACTIONS(1735), + [anon_sym_case] = ACTIONS(1735), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1733), + [sym_glimmer_opening_tag] = ACTIONS(1733), + [anon_sym_class] = ACTIONS(1735), + [anon_sym_async] = ACTIONS(1735), + [anon_sym_function] = ACTIONS(1735), + [anon_sym_new] = ACTIONS(1735), + [anon_sym_using] = ACTIONS(1735), + [anon_sym_PLUS] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_SLASH] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_TILDE] = ACTIONS(1733), + [anon_sym_void] = ACTIONS(1735), + [anon_sym_delete] = ACTIONS(1735), + [anon_sym_PLUS_PLUS] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [anon_sym_SQUOTE] = ACTIONS(1733), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1733), + [sym_number] = ACTIONS(1733), + [sym_private_property_identifier] = ACTIONS(1733), + [sym_this] = ACTIONS(1735), + [sym_super] = ACTIONS(1735), + [sym_true] = ACTIONS(1735), + [sym_false] = ACTIONS(1735), + [sym_null] = ACTIONS(1735), + [sym_undefined] = ACTIONS(1735), + [anon_sym_AT] = ACTIONS(1733), + [anon_sym_static] = ACTIONS(1735), + [anon_sym_readonly] = ACTIONS(1735), + [anon_sym_get] = ACTIONS(1735), + [anon_sym_set] = ACTIONS(1735), + [anon_sym_declare] = ACTIONS(1735), + [anon_sym_public] = ACTIONS(1735), + [anon_sym_private] = ACTIONS(1735), + [anon_sym_protected] = ACTIONS(1735), + [anon_sym_override] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_any] = ACTIONS(1735), + [anon_sym_number] = ACTIONS(1735), + [anon_sym_boolean] = ACTIONS(1735), + [anon_sym_string] = ACTIONS(1735), + [anon_sym_symbol] = ACTIONS(1735), + [anon_sym_object] = ACTIONS(1735), + [anon_sym_abstract] = ACTIONS(1735), + [anon_sym_interface] = ACTIONS(1735), + [anon_sym_enum] = ACTIONS(1735), + [sym__automatic_semicolon] = ACTIONS(1741), [sym_html_comment] = ACTIONS(5), }, [779] = { - [ts_builtin_sym_end] = ACTIONS(1823), - [sym_identifier] = ACTIONS(1825), - [anon_sym_export] = ACTIONS(1825), - [anon_sym_default] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_namespace] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_typeof] = ACTIONS(1825), - [anon_sym_import] = ACTIONS(1825), - [anon_sym_with] = ACTIONS(1825), - [anon_sym_var] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1825), - [anon_sym_const] = ACTIONS(1825), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_else] = ACTIONS(1825), - [anon_sym_if] = ACTIONS(1825), - [anon_sym_switch] = ACTIONS(1825), - [anon_sym_for] = ACTIONS(1825), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_await] = ACTIONS(1825), - [anon_sym_while] = ACTIONS(1825), - [anon_sym_do] = ACTIONS(1825), - [anon_sym_try] = ACTIONS(1825), - [anon_sym_break] = ACTIONS(1825), - [anon_sym_continue] = ACTIONS(1825), - [anon_sym_debugger] = ACTIONS(1825), - [anon_sym_return] = ACTIONS(1825), - [anon_sym_throw] = ACTIONS(1825), - [anon_sym_case] = ACTIONS(1825), - [anon_sym_yield] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(1823), - [sym_glimmer_opening_tag] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_class] = ACTIONS(1825), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(1825), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1825), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_SLASH] = ACTIONS(1825), - [anon_sym_LT] = ACTIONS(1825), - [anon_sym_TILDE] = ACTIONS(1823), - [anon_sym_void] = ACTIONS(1825), - [anon_sym_delete] = ACTIONS(1825), - [anon_sym_PLUS_PLUS] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1823), - [sym_number] = ACTIONS(1823), - [sym_private_property_identifier] = ACTIONS(1823), - [sym_this] = ACTIONS(1825), - [sym_super] = ACTIONS(1825), - [sym_true] = ACTIONS(1825), - [sym_false] = ACTIONS(1825), - [sym_null] = ACTIONS(1825), - [sym_undefined] = ACTIONS(1825), - [anon_sym_AT] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(1825), - [anon_sym_readonly] = ACTIONS(1825), - [anon_sym_get] = ACTIONS(1825), - [anon_sym_set] = ACTIONS(1825), - [anon_sym_declare] = ACTIONS(1825), - [anon_sym_public] = ACTIONS(1825), - [anon_sym_private] = ACTIONS(1825), - [anon_sym_protected] = ACTIONS(1825), - [anon_sym_override] = ACTIONS(1825), - [anon_sym_module] = ACTIONS(1825), - [anon_sym_any] = ACTIONS(1825), - [anon_sym_number] = ACTIONS(1825), - [anon_sym_boolean] = ACTIONS(1825), - [anon_sym_string] = ACTIONS(1825), - [anon_sym_symbol] = ACTIONS(1825), - [anon_sym_object] = ACTIONS(1825), - [anon_sym_abstract] = ACTIONS(1825), - [anon_sym_interface] = ACTIONS(1825), - [anon_sym_enum] = ACTIONS(1825), - [sym__automatic_semicolon] = ACTIONS(1831), - [sym_html_comment] = ACTIONS(5), - }, - [780] = { [ts_builtin_sym_end] = ACTIONS(1811), [sym_identifier] = ACTIONS(1813), [anon_sym_export] = ACTIONS(1813), @@ -107911,8 +107827,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1813), [anon_sym_LBRACK] = ACTIONS(1811), [sym_glimmer_opening_tag] = ACTIONS(1811), - [anon_sym_DQUOTE] = ACTIONS(1811), - [anon_sym_SQUOTE] = ACTIONS(1811), [anon_sym_class] = ACTIONS(1813), [anon_sym_async] = ACTIONS(1813), [anon_sym_function] = ACTIONS(1813), @@ -107927,6 +107841,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1813), [anon_sym_PLUS_PLUS] = ACTIONS(1811), [anon_sym_DASH_DASH] = ACTIONS(1811), + [anon_sym_DQUOTE] = ACTIONS(1811), + [anon_sym_SQUOTE] = ACTIONS(1811), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1811), [sym_number] = ACTIONS(1811), @@ -107960,128 +107876,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1819), [sym_html_comment] = ACTIONS(5), }, - [781] = { - [ts_builtin_sym_end] = ACTIONS(1875), - [sym_identifier] = ACTIONS(1877), - [anon_sym_export] = ACTIONS(1877), - [anon_sym_default] = ACTIONS(1877), - [anon_sym_type] = ACTIONS(1877), - [anon_sym_namespace] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_typeof] = ACTIONS(1877), - [anon_sym_import] = ACTIONS(1877), - [anon_sym_with] = ACTIONS(1877), - [anon_sym_var] = ACTIONS(1877), - [anon_sym_let] = ACTIONS(1877), - [anon_sym_const] = ACTIONS(1877), - [anon_sym_BANG] = ACTIONS(1875), - [anon_sym_else] = ACTIONS(1877), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_switch] = ACTIONS(1877), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1875), - [anon_sym_SEMI] = ACTIONS(1875), - [anon_sym_await] = ACTIONS(1877), - [anon_sym_while] = ACTIONS(1877), - [anon_sym_do] = ACTIONS(1877), - [anon_sym_try] = ACTIONS(1877), - [anon_sym_break] = ACTIONS(1877), - [anon_sym_continue] = ACTIONS(1877), - [anon_sym_debugger] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1877), - [anon_sym_throw] = ACTIONS(1877), - [anon_sym_case] = ACTIONS(1877), - [anon_sym_yield] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1875), - [sym_glimmer_opening_tag] = ACTIONS(1875), - [anon_sym_DQUOTE] = ACTIONS(1875), - [anon_sym_SQUOTE] = ACTIONS(1875), - [anon_sym_class] = ACTIONS(1877), - [anon_sym_async] = ACTIONS(1877), - [anon_sym_function] = ACTIONS(1877), - [anon_sym_new] = ACTIONS(1877), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_SLASH] = ACTIONS(1877), - [anon_sym_LT] = ACTIONS(1877), - [anon_sym_TILDE] = ACTIONS(1875), - [anon_sym_void] = ACTIONS(1877), - [anon_sym_delete] = ACTIONS(1877), - [anon_sym_PLUS_PLUS] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1875), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1875), - [sym_number] = ACTIONS(1875), - [sym_private_property_identifier] = ACTIONS(1875), - [sym_this] = ACTIONS(1877), - [sym_super] = ACTIONS(1877), - [sym_true] = ACTIONS(1877), - [sym_false] = ACTIONS(1877), - [sym_null] = ACTIONS(1877), - [sym_undefined] = ACTIONS(1877), - [anon_sym_AT] = ACTIONS(1875), - [anon_sym_static] = ACTIONS(1877), - [anon_sym_readonly] = ACTIONS(1877), - [anon_sym_get] = ACTIONS(1877), - [anon_sym_set] = ACTIONS(1877), - [anon_sym_declare] = ACTIONS(1877), - [anon_sym_public] = ACTIONS(1877), - [anon_sym_private] = ACTIONS(1877), - [anon_sym_protected] = ACTIONS(1877), - [anon_sym_override] = ACTIONS(1877), - [anon_sym_module] = ACTIONS(1877), - [anon_sym_any] = ACTIONS(1877), - [anon_sym_number] = ACTIONS(1877), - [anon_sym_boolean] = ACTIONS(1877), - [anon_sym_string] = ACTIONS(1877), - [anon_sym_symbol] = ACTIONS(1877), - [anon_sym_object] = ACTIONS(1877), - [anon_sym_abstract] = ACTIONS(1877), - [anon_sym_interface] = ACTIONS(1877), - [anon_sym_enum] = ACTIONS(1877), - [sym__automatic_semicolon] = ACTIONS(1883), - [sym_html_comment] = ACTIONS(5), - }, - [782] = { + [780] = { [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2422), [anon_sym_export] = ACTIONS(2424), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(991), + [anon_sym_EQ] = ACTIONS(831), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2424), [anon_sym_let] = ACTIONS(2424), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -108096,18 +107927,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2424), [anon_sym_readonly] = ACTIONS(2424), [anon_sym_get] = ACTIONS(2424), @@ -108125,131 +107957,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2424), [anon_sym_object] = ACTIONS(2424), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [783] = { - [ts_builtin_sym_end] = ACTIONS(1743), - [sym_identifier] = ACTIONS(1745), - [anon_sym_export] = ACTIONS(1745), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_type] = ACTIONS(1745), - [anon_sym_namespace] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_typeof] = ACTIONS(1745), - [anon_sym_import] = ACTIONS(1745), - [anon_sym_with] = ACTIONS(1745), - [anon_sym_var] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_BANG] = ACTIONS(1743), - [anon_sym_else] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_switch] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_await] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_do] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_debugger] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_throw] = ACTIONS(1745), - [anon_sym_case] = ACTIONS(1745), - [anon_sym_yield] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1743), - [sym_glimmer_opening_tag] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1743), - [anon_sym_class] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1745), - [anon_sym_function] = ACTIONS(1745), - [anon_sym_new] = ACTIONS(1745), - [anon_sym_using] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_LT] = ACTIONS(1745), - [anon_sym_TILDE] = ACTIONS(1743), - [anon_sym_void] = ACTIONS(1745), - [anon_sym_delete] = ACTIONS(1745), - [anon_sym_PLUS_PLUS] = ACTIONS(1743), - [anon_sym_DASH_DASH] = ACTIONS(1743), + [781] = { + [ts_builtin_sym_end] = ACTIONS(1869), + [sym_identifier] = ACTIONS(1871), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_type] = ACTIONS(1871), + [anon_sym_namespace] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_typeof] = ACTIONS(1871), + [anon_sym_import] = ACTIONS(1871), + [anon_sym_with] = ACTIONS(1871), + [anon_sym_var] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_switch] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_await] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_debugger] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(1871), + [anon_sym_case] = ACTIONS(1871), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1869), + [sym_glimmer_opening_tag] = ACTIONS(1869), + [anon_sym_class] = ACTIONS(1871), + [anon_sym_async] = ACTIONS(1871), + [anon_sym_function] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1871), + [anon_sym_using] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1869), + [anon_sym_void] = ACTIONS(1871), + [anon_sym_delete] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1869), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1869), + [sym_number] = ACTIONS(1869), + [sym_private_property_identifier] = ACTIONS(1869), + [sym_this] = ACTIONS(1871), + [sym_super] = ACTIONS(1871), + [sym_true] = ACTIONS(1871), + [sym_false] = ACTIONS(1871), + [sym_null] = ACTIONS(1871), + [sym_undefined] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1869), + [anon_sym_static] = ACTIONS(1871), + [anon_sym_readonly] = ACTIONS(1871), + [anon_sym_get] = ACTIONS(1871), + [anon_sym_set] = ACTIONS(1871), + [anon_sym_declare] = ACTIONS(1871), + [anon_sym_public] = ACTIONS(1871), + [anon_sym_private] = ACTIONS(1871), + [anon_sym_protected] = ACTIONS(1871), + [anon_sym_override] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_any] = ACTIONS(1871), + [anon_sym_number] = ACTIONS(1871), + [anon_sym_boolean] = ACTIONS(1871), + [anon_sym_string] = ACTIONS(1871), + [anon_sym_symbol] = ACTIONS(1871), + [anon_sym_object] = ACTIONS(1871), + [anon_sym_abstract] = ACTIONS(1871), + [anon_sym_interface] = ACTIONS(1871), + [anon_sym_enum] = ACTIONS(1871), + [sym__automatic_semicolon] = ACTIONS(1877), + [sym_html_comment] = ACTIONS(5), + }, + [782] = { + [ts_builtin_sym_end] = ACTIONS(2504), + [sym_identifier] = ACTIONS(2506), + [anon_sym_export] = ACTIONS(2506), + [anon_sym_default] = ACTIONS(2506), + [anon_sym_type] = ACTIONS(2506), + [anon_sym_namespace] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2504), + [anon_sym_RBRACE] = ACTIONS(2504), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_import] = ACTIONS(2506), + [anon_sym_with] = ACTIONS(2506), + [anon_sym_var] = ACTIONS(2506), + [anon_sym_let] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(2506), + [anon_sym_BANG] = ACTIONS(2504), + [anon_sym_else] = ACTIONS(2506), + [anon_sym_if] = ACTIONS(2506), + [anon_sym_switch] = ACTIONS(2506), + [anon_sym_for] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(2504), + [anon_sym_SEMI] = ACTIONS(2504), + [anon_sym_RPAREN] = ACTIONS(2504), + [anon_sym_await] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2506), + [anon_sym_do] = ACTIONS(2506), + [anon_sym_try] = ACTIONS(2506), + [anon_sym_break] = ACTIONS(2506), + [anon_sym_continue] = ACTIONS(2506), + [anon_sym_debugger] = ACTIONS(2506), + [anon_sym_return] = ACTIONS(2506), + [anon_sym_throw] = ACTIONS(2506), + [anon_sym_case] = ACTIONS(2506), + [anon_sym_yield] = ACTIONS(2506), + [anon_sym_LBRACK] = ACTIONS(2504), + [sym_glimmer_opening_tag] = ACTIONS(2504), + [anon_sym_class] = ACTIONS(2506), + [anon_sym_async] = ACTIONS(2506), + [anon_sym_function] = ACTIONS(2506), + [anon_sym_new] = ACTIONS(2506), + [anon_sym_using] = ACTIONS(2506), + [anon_sym_PLUS] = ACTIONS(2506), + [anon_sym_DASH] = ACTIONS(2506), + [anon_sym_SLASH] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2506), + [anon_sym_TILDE] = ACTIONS(2504), + [anon_sym_void] = ACTIONS(2506), + [anon_sym_delete] = ACTIONS(2506), + [anon_sym_PLUS_PLUS] = ACTIONS(2504), + [anon_sym_DASH_DASH] = ACTIONS(2504), + [anon_sym_DQUOTE] = ACTIONS(2504), + [anon_sym_SQUOTE] = ACTIONS(2504), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1743), - [sym_number] = ACTIONS(1743), - [sym_private_property_identifier] = ACTIONS(1743), - [sym_this] = ACTIONS(1745), - [sym_super] = ACTIONS(1745), - [sym_true] = ACTIONS(1745), - [sym_false] = ACTIONS(1745), - [sym_null] = ACTIONS(1745), - [sym_undefined] = ACTIONS(1745), - [anon_sym_AT] = ACTIONS(1743), - [anon_sym_static] = ACTIONS(1745), - [anon_sym_readonly] = ACTIONS(1745), - [anon_sym_get] = ACTIONS(1745), - [anon_sym_set] = ACTIONS(1745), - [anon_sym_declare] = ACTIONS(1745), - [anon_sym_public] = ACTIONS(1745), - [anon_sym_private] = ACTIONS(1745), - [anon_sym_protected] = ACTIONS(1745), - [anon_sym_override] = ACTIONS(1745), - [anon_sym_module] = ACTIONS(1745), - [anon_sym_any] = ACTIONS(1745), - [anon_sym_number] = ACTIONS(1745), - [anon_sym_boolean] = ACTIONS(1745), - [anon_sym_string] = ACTIONS(1745), - [anon_sym_symbol] = ACTIONS(1745), - [anon_sym_object] = ACTIONS(1745), - [anon_sym_abstract] = ACTIONS(1745), - [anon_sym_interface] = ACTIONS(1745), - [anon_sym_enum] = ACTIONS(1745), - [sym__automatic_semicolon] = ACTIONS(1751), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2504), + [sym_private_property_identifier] = ACTIONS(2504), + [sym_this] = ACTIONS(2506), + [sym_super] = ACTIONS(2506), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_AT] = ACTIONS(2504), + [anon_sym_static] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2506), + [anon_sym_get] = ACTIONS(2506), + [anon_sym_set] = ACTIONS(2506), + [anon_sym_declare] = ACTIONS(2506), + [anon_sym_public] = ACTIONS(2506), + [anon_sym_private] = ACTIONS(2506), + [anon_sym_protected] = ACTIONS(2506), + [anon_sym_override] = ACTIONS(2506), + [anon_sym_module] = ACTIONS(2506), + [anon_sym_any] = ACTIONS(2506), + [anon_sym_number] = ACTIONS(2506), + [anon_sym_boolean] = ACTIONS(2506), + [anon_sym_string] = ACTIONS(2506), + [anon_sym_symbol] = ACTIONS(2506), + [anon_sym_object] = ACTIONS(2506), + [anon_sym_abstract] = ACTIONS(2506), + [anon_sym_interface] = ACTIONS(2506), + [anon_sym_enum] = ACTIONS(2506), + [sym_html_comment] = ACTIONS(5), + }, + [783] = { + [ts_builtin_sym_end] = ACTIONS(1915), + [sym_identifier] = ACTIONS(1917), + [anon_sym_export] = ACTIONS(1917), + [anon_sym_default] = ACTIONS(1917), + [anon_sym_type] = ACTIONS(1917), + [anon_sym_namespace] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_typeof] = ACTIONS(1917), + [anon_sym_import] = ACTIONS(1917), + [anon_sym_with] = ACTIONS(1917), + [anon_sym_var] = ACTIONS(1917), + [anon_sym_let] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [anon_sym_BANG] = ACTIONS(1915), + [anon_sym_else] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_switch] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1915), + [anon_sym_await] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_do] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_debugger] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_throw] = ACTIONS(1917), + [anon_sym_case] = ACTIONS(1917), + [anon_sym_yield] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1915), + [sym_glimmer_opening_tag] = ACTIONS(1915), + [anon_sym_class] = ACTIONS(1917), + [anon_sym_async] = ACTIONS(1917), + [anon_sym_function] = ACTIONS(1917), + [anon_sym_new] = ACTIONS(1917), + [anon_sym_using] = ACTIONS(1917), + [anon_sym_PLUS] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1917), + [anon_sym_LT] = ACTIONS(1917), + [anon_sym_TILDE] = ACTIONS(1915), + [anon_sym_void] = ACTIONS(1917), + [anon_sym_delete] = ACTIONS(1917), + [anon_sym_PLUS_PLUS] = ACTIONS(1915), + [anon_sym_DASH_DASH] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(1915), + [anon_sym_SQUOTE] = ACTIONS(1915), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1915), + [sym_number] = ACTIONS(1915), + [sym_private_property_identifier] = ACTIONS(1915), + [sym_this] = ACTIONS(1917), + [sym_super] = ACTIONS(1917), + [sym_true] = ACTIONS(1917), + [sym_false] = ACTIONS(1917), + [sym_null] = ACTIONS(1917), + [sym_undefined] = ACTIONS(1917), + [anon_sym_AT] = ACTIONS(1915), + [anon_sym_static] = ACTIONS(1917), + [anon_sym_readonly] = ACTIONS(1917), + [anon_sym_get] = ACTIONS(1917), + [anon_sym_set] = ACTIONS(1917), + [anon_sym_declare] = ACTIONS(1917), + [anon_sym_public] = ACTIONS(1917), + [anon_sym_private] = ACTIONS(1917), + [anon_sym_protected] = ACTIONS(1917), + [anon_sym_override] = ACTIONS(1917), + [anon_sym_module] = ACTIONS(1917), + [anon_sym_any] = ACTIONS(1917), + [anon_sym_number] = ACTIONS(1917), + [anon_sym_boolean] = ACTIONS(1917), + [anon_sym_string] = ACTIONS(1917), + [anon_sym_symbol] = ACTIONS(1917), + [anon_sym_object] = ACTIONS(1917), + [anon_sym_abstract] = ACTIONS(1917), + [anon_sym_interface] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1917), + [sym__automatic_semicolon] = ACTIONS(1923), [sym_html_comment] = ACTIONS(5), }, [784] = { [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2422), [anon_sym_export] = ACTIONS(2424), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(1051), + [anon_sym_EQ] = ACTIONS(995), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2424), [anon_sym_let] = ACTIONS(2424), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -108264,18 +108263,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2424), [anon_sym_readonly] = ACTIONS(2424), [anon_sym_get] = ACTIONS(2424), @@ -108293,94 +108293,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2424), [anon_sym_object] = ACTIONS(2424), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [785] = { - [sym_statement_block] = STATE(898), - [ts_builtin_sym_end] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1719), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_typeof] = ACTIONS(1719), - [anon_sym_import] = ACTIONS(1719), - [anon_sym_with] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_switch] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_await] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1719), - [anon_sym_do] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_debugger] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1717), - [sym_glimmer_opening_tag] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_class] = ACTIONS(1719), - [anon_sym_async] = ACTIONS(1719), - [anon_sym_function] = ACTIONS(1719), - [anon_sym_new] = ACTIONS(1719), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_void] = ACTIONS(1719), - [anon_sym_delete] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1717), - [sym_number] = ACTIONS(1717), - [sym_private_property_identifier] = ACTIONS(1717), - [sym_this] = ACTIONS(1719), - [sym_super] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_undefined] = ACTIONS(1719), - [anon_sym_AT] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_identifier] = ACTIONS(1889), + [anon_sym_export] = ACTIONS(1889), + [anon_sym_default] = ACTIONS(1889), + [anon_sym_type] = ACTIONS(1889), + [anon_sym_namespace] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_typeof] = ACTIONS(1889), + [anon_sym_import] = ACTIONS(1889), + [anon_sym_with] = ACTIONS(1889), + [anon_sym_var] = ACTIONS(1889), + [anon_sym_let] = ACTIONS(1889), + [anon_sym_const] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1887), + [anon_sym_else] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_switch] = ACTIONS(1889), + [anon_sym_for] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_await] = ACTIONS(1889), + [anon_sym_while] = ACTIONS(1889), + [anon_sym_do] = ACTIONS(1889), + [anon_sym_try] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1889), + [anon_sym_continue] = ACTIONS(1889), + [anon_sym_debugger] = ACTIONS(1889), + [anon_sym_return] = ACTIONS(1889), + [anon_sym_throw] = ACTIONS(1889), + [anon_sym_case] = ACTIONS(1889), + [anon_sym_yield] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1887), + [sym_glimmer_opening_tag] = ACTIONS(1887), + [anon_sym_DOT] = ACTIONS(1889), + [anon_sym_class] = ACTIONS(1889), + [anon_sym_async] = ACTIONS(1889), + [anon_sym_function] = ACTIONS(1889), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_using] = ACTIONS(1889), + [anon_sym_PLUS] = ACTIONS(1889), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_SLASH] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_void] = ACTIONS(1889), + [anon_sym_delete] = ACTIONS(1889), + [anon_sym_PLUS_PLUS] = ACTIONS(1887), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [anon_sym_SQUOTE] = ACTIONS(1887), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1887), + [sym_number] = ACTIONS(1887), + [sym_private_property_identifier] = ACTIONS(1887), + [sym_this] = ACTIONS(1889), + [sym_super] = ACTIONS(1889), + [sym_true] = ACTIONS(1889), + [sym_false] = ACTIONS(1889), + [sym_null] = ACTIONS(1889), + [sym_undefined] = ACTIONS(1889), + [anon_sym_AT] = ACTIONS(1887), + [anon_sym_static] = ACTIONS(1889), + [anon_sym_readonly] = ACTIONS(1889), + [anon_sym_get] = ACTIONS(1889), + [anon_sym_set] = ACTIONS(1889), + [anon_sym_declare] = ACTIONS(1889), + [anon_sym_public] = ACTIONS(1889), + [anon_sym_private] = ACTIONS(1889), + [anon_sym_protected] = ACTIONS(1889), + [anon_sym_override] = ACTIONS(1889), + [anon_sym_module] = ACTIONS(1889), + [anon_sym_any] = ACTIONS(1889), + [anon_sym_number] = ACTIONS(1889), + [anon_sym_boolean] = ACTIONS(1889), + [anon_sym_string] = ACTIONS(1889), + [anon_sym_symbol] = ACTIONS(1889), + [anon_sym_object] = ACTIONS(1889), + [anon_sym_abstract] = ACTIONS(1889), + [anon_sym_interface] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1889), [sym_html_comment] = ACTIONS(5), }, [786] = { + [ts_builtin_sym_end] = ACTIONS(1891), + [sym_identifier] = ACTIONS(1893), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_default] = ACTIONS(1893), + [anon_sym_type] = ACTIONS(1893), + [anon_sym_namespace] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_typeof] = ACTIONS(1893), + [anon_sym_import] = ACTIONS(1893), + [anon_sym_with] = ACTIONS(1893), + [anon_sym_var] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1891), + [anon_sym_else] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_switch] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_SEMI] = ACTIONS(1891), + [anon_sym_await] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_do] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_debugger] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_throw] = ACTIONS(1893), + [anon_sym_case] = ACTIONS(1893), + [anon_sym_yield] = ACTIONS(1893), + [anon_sym_LBRACK] = ACTIONS(1891), + [sym_glimmer_opening_tag] = ACTIONS(1891), + [anon_sym_DOT] = ACTIONS(1893), + [anon_sym_class] = ACTIONS(1893), + [anon_sym_async] = ACTIONS(1893), + [anon_sym_function] = ACTIONS(1893), + [anon_sym_new] = ACTIONS(1893), + [anon_sym_using] = ACTIONS(1893), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_TILDE] = ACTIONS(1891), + [anon_sym_void] = ACTIONS(1893), + [anon_sym_delete] = ACTIONS(1893), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(1891), + [anon_sym_SQUOTE] = ACTIONS(1891), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1891), + [sym_number] = ACTIONS(1891), + [sym_private_property_identifier] = ACTIONS(1891), + [sym_this] = ACTIONS(1893), + [sym_super] = ACTIONS(1893), + [sym_true] = ACTIONS(1893), + [sym_false] = ACTIONS(1893), + [sym_null] = ACTIONS(1893), + [sym_undefined] = ACTIONS(1893), + [anon_sym_AT] = ACTIONS(1891), + [anon_sym_static] = ACTIONS(1893), + [anon_sym_readonly] = ACTIONS(1893), + [anon_sym_get] = ACTIONS(1893), + [anon_sym_set] = ACTIONS(1893), + [anon_sym_declare] = ACTIONS(1893), + [anon_sym_public] = ACTIONS(1893), + [anon_sym_private] = ACTIONS(1893), + [anon_sym_protected] = ACTIONS(1893), + [anon_sym_override] = ACTIONS(1893), + [anon_sym_module] = ACTIONS(1893), + [anon_sym_any] = ACTIONS(1893), + [anon_sym_number] = ACTIONS(1893), + [anon_sym_boolean] = ACTIONS(1893), + [anon_sym_string] = ACTIONS(1893), + [anon_sym_symbol] = ACTIONS(1893), + [anon_sym_object] = ACTIONS(1893), + [anon_sym_abstract] = ACTIONS(1893), + [anon_sym_interface] = ACTIONS(1893), + [anon_sym_enum] = ACTIONS(1893), + [sym_html_comment] = ACTIONS(5), + }, + [787] = { [ts_builtin_sym_end] = ACTIONS(2508), [sym_identifier] = ACTIONS(2510), [anon_sym_export] = ACTIONS(2510), @@ -108401,7 +108485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(2510), [anon_sym_for] = ACTIONS(2510), [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_SEMI] = ACTIONS(2508), + [anon_sym_SEMI] = ACTIONS(2512), [anon_sym_await] = ACTIONS(2510), [anon_sym_while] = ACTIONS(2510), [anon_sym_do] = ACTIONS(2510), @@ -108412,12 +108496,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2510), [anon_sym_throw] = ACTIONS(2510), [anon_sym_case] = ACTIONS(2510), - [anon_sym_finally] = ACTIONS(2510), [anon_sym_yield] = ACTIONS(2510), [anon_sym_LBRACK] = ACTIONS(2508), [sym_glimmer_opening_tag] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2508), [anon_sym_class] = ACTIONS(2510), [anon_sym_async] = ACTIONS(2510), [anon_sym_function] = ACTIONS(2510), @@ -108432,6 +108513,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2510), [anon_sym_PLUS_PLUS] = ACTIONS(2508), [anon_sym_DASH_DASH] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2508), + [anon_sym_SQUOTE] = ACTIONS(2508), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2508), [sym_number] = ACTIONS(2508), @@ -108462,382 +108545,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2510), [anon_sym_interface] = ACTIONS(2510), [anon_sym_enum] = ACTIONS(2510), - [sym_html_comment] = ACTIONS(5), - }, - [787] = { - [ts_builtin_sym_end] = ACTIONS(1733), - [sym_identifier] = ACTIONS(1735), - [anon_sym_export] = ACTIONS(1735), - [anon_sym_default] = ACTIONS(1735), - [anon_sym_type] = ACTIONS(1735), - [anon_sym_namespace] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_typeof] = ACTIONS(1735), - [anon_sym_import] = ACTIONS(1735), - [anon_sym_with] = ACTIONS(1735), - [anon_sym_var] = ACTIONS(1735), - [anon_sym_let] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_switch] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_await] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_debugger] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_case] = ACTIONS(1735), - [anon_sym_yield] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1733), - [sym_glimmer_opening_tag] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1733), - [anon_sym_SQUOTE] = ACTIONS(1733), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_async] = ACTIONS(1735), - [anon_sym_function] = ACTIONS(1735), - [anon_sym_new] = ACTIONS(1735), - [anon_sym_using] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_SLASH] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_void] = ACTIONS(1735), - [anon_sym_delete] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1733), - [sym_number] = ACTIONS(1733), - [sym_private_property_identifier] = ACTIONS(1733), - [sym_this] = ACTIONS(1735), - [sym_super] = ACTIONS(1735), - [sym_true] = ACTIONS(1735), - [sym_false] = ACTIONS(1735), - [sym_null] = ACTIONS(1735), - [sym_undefined] = ACTIONS(1735), - [anon_sym_AT] = ACTIONS(1733), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_readonly] = ACTIONS(1735), - [anon_sym_get] = ACTIONS(1735), - [anon_sym_set] = ACTIONS(1735), - [anon_sym_declare] = ACTIONS(1735), - [anon_sym_public] = ACTIONS(1735), - [anon_sym_private] = ACTIONS(1735), - [anon_sym_protected] = ACTIONS(1735), - [anon_sym_override] = ACTIONS(1735), - [anon_sym_module] = ACTIONS(1735), - [anon_sym_any] = ACTIONS(1735), - [anon_sym_number] = ACTIONS(1735), - [anon_sym_boolean] = ACTIONS(1735), - [anon_sym_string] = ACTIONS(1735), - [anon_sym_symbol] = ACTIONS(1735), - [anon_sym_object] = ACTIONS(1735), - [anon_sym_abstract] = ACTIONS(1735), - [anon_sym_interface] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [sym__automatic_semicolon] = ACTIONS(1741), + [sym__automatic_semicolon] = ACTIONS(2512), [sym_html_comment] = ACTIONS(5), }, [788] = { - [sym_else_clause] = STATE(856), - [ts_builtin_sym_end] = ACTIONS(2512), - [sym_identifier] = ACTIONS(2514), - [anon_sym_export] = ACTIONS(2514), - [anon_sym_default] = ACTIONS(2514), - [anon_sym_type] = ACTIONS(2514), - [anon_sym_namespace] = ACTIONS(2514), - [anon_sym_LBRACE] = ACTIONS(2512), - [anon_sym_RBRACE] = ACTIONS(2512), - [anon_sym_typeof] = ACTIONS(2514), - [anon_sym_import] = ACTIONS(2514), - [anon_sym_with] = ACTIONS(2514), - [anon_sym_var] = ACTIONS(2514), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_const] = ACTIONS(2514), - [anon_sym_BANG] = ACTIONS(2512), - [anon_sym_else] = ACTIONS(2516), - [anon_sym_if] = ACTIONS(2514), - [anon_sym_switch] = ACTIONS(2514), - [anon_sym_for] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_await] = ACTIONS(2514), - [anon_sym_while] = ACTIONS(2514), - [anon_sym_do] = ACTIONS(2514), - [anon_sym_try] = ACTIONS(2514), - [anon_sym_break] = ACTIONS(2514), - [anon_sym_continue] = ACTIONS(2514), - [anon_sym_debugger] = ACTIONS(2514), - [anon_sym_return] = ACTIONS(2514), - [anon_sym_throw] = ACTIONS(2514), - [anon_sym_case] = ACTIONS(2514), - [anon_sym_yield] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(2512), - [sym_glimmer_opening_tag] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2512), - [anon_sym_class] = ACTIONS(2514), - [anon_sym_async] = ACTIONS(2514), - [anon_sym_function] = ACTIONS(2514), - [anon_sym_new] = ACTIONS(2514), - [anon_sym_using] = ACTIONS(2514), - [anon_sym_PLUS] = ACTIONS(2514), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_SLASH] = ACTIONS(2514), - [anon_sym_LT] = ACTIONS(2514), - [anon_sym_TILDE] = ACTIONS(2512), - [anon_sym_void] = ACTIONS(2514), - [anon_sym_delete] = ACTIONS(2514), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2512), - [sym_number] = ACTIONS(2512), - [sym_private_property_identifier] = ACTIONS(2512), - [sym_this] = ACTIONS(2514), - [sym_super] = ACTIONS(2514), - [sym_true] = ACTIONS(2514), - [sym_false] = ACTIONS(2514), - [sym_null] = ACTIONS(2514), - [sym_undefined] = ACTIONS(2514), - [anon_sym_AT] = ACTIONS(2512), - [anon_sym_static] = ACTIONS(2514), - [anon_sym_readonly] = ACTIONS(2514), - [anon_sym_get] = ACTIONS(2514), - [anon_sym_set] = ACTIONS(2514), - [anon_sym_declare] = ACTIONS(2514), - [anon_sym_public] = ACTIONS(2514), - [anon_sym_private] = ACTIONS(2514), - [anon_sym_protected] = ACTIONS(2514), - [anon_sym_override] = ACTIONS(2514), - [anon_sym_module] = ACTIONS(2514), - [anon_sym_any] = ACTIONS(2514), - [anon_sym_number] = ACTIONS(2514), - [anon_sym_boolean] = ACTIONS(2514), - [anon_sym_string] = ACTIONS(2514), - [anon_sym_symbol] = ACTIONS(2514), - [anon_sym_object] = ACTIONS(2514), - [anon_sym_abstract] = ACTIONS(2514), - [anon_sym_interface] = ACTIONS(2514), - [anon_sym_enum] = ACTIONS(2514), + [ts_builtin_sym_end] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1823), + [anon_sym_export] = ACTIONS(1823), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_type] = ACTIONS(1823), + [anon_sym_namespace] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_typeof] = ACTIONS(1823), + [anon_sym_import] = ACTIONS(1823), + [anon_sym_with] = ACTIONS(1823), + [anon_sym_var] = ACTIONS(1823), + [anon_sym_let] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_else] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_switch] = ACTIONS(1823), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_await] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_do] = ACTIONS(1823), + [anon_sym_try] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_debugger] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_throw] = ACTIONS(1823), + [anon_sym_case] = ACTIONS(1823), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [sym_glimmer_opening_tag] = ACTIONS(1821), + [anon_sym_class] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_function] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1823), + [anon_sym_using] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1821), + [anon_sym_void] = ACTIONS(1823), + [anon_sym_delete] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1821), + [anon_sym_DASH_DASH] = ACTIONS(1821), + [anon_sym_DQUOTE] = ACTIONS(1821), + [anon_sym_SQUOTE] = ACTIONS(1821), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1821), + [sym_number] = ACTIONS(1821), + [sym_private_property_identifier] = ACTIONS(1821), + [sym_this] = ACTIONS(1823), + [sym_super] = ACTIONS(1823), + [sym_true] = ACTIONS(1823), + [sym_false] = ACTIONS(1823), + [sym_null] = ACTIONS(1823), + [sym_undefined] = ACTIONS(1823), + [anon_sym_AT] = ACTIONS(1821), + [anon_sym_static] = ACTIONS(1823), + [anon_sym_readonly] = ACTIONS(1823), + [anon_sym_get] = ACTIONS(1823), + [anon_sym_set] = ACTIONS(1823), + [anon_sym_declare] = ACTIONS(1823), + [anon_sym_public] = ACTIONS(1823), + [anon_sym_private] = ACTIONS(1823), + [anon_sym_protected] = ACTIONS(1823), + [anon_sym_override] = ACTIONS(1823), + [anon_sym_module] = ACTIONS(1823), + [anon_sym_any] = ACTIONS(1823), + [anon_sym_number] = ACTIONS(1823), + [anon_sym_boolean] = ACTIONS(1823), + [anon_sym_string] = ACTIONS(1823), + [anon_sym_symbol] = ACTIONS(1823), + [anon_sym_object] = ACTIONS(1823), + [anon_sym_abstract] = ACTIONS(1823), + [anon_sym_interface] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [sym__automatic_semicolon] = ACTIONS(1829), [sym_html_comment] = ACTIONS(5), }, [789] = { - [ts_builtin_sym_end] = ACTIONS(1893), - [sym_identifier] = ACTIONS(1895), - [anon_sym_export] = ACTIONS(1895), - [anon_sym_default] = ACTIONS(1895), - [anon_sym_type] = ACTIONS(1895), - [anon_sym_namespace] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_typeof] = ACTIONS(1895), - [anon_sym_import] = ACTIONS(1895), - [anon_sym_with] = ACTIONS(1895), - [anon_sym_var] = ACTIONS(1895), - [anon_sym_let] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_else] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_switch] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_await] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_try] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_debugger] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_throw] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1895), - [anon_sym_yield] = ACTIONS(1895), - [anon_sym_LBRACK] = ACTIONS(1893), - [sym_glimmer_opening_tag] = ACTIONS(1893), - [anon_sym_DOT] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_class] = ACTIONS(1895), - [anon_sym_async] = ACTIONS(1895), - [anon_sym_function] = ACTIONS(1895), - [anon_sym_new] = ACTIONS(1895), - [anon_sym_using] = ACTIONS(1895), - [anon_sym_PLUS] = ACTIONS(1895), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_SLASH] = ACTIONS(1895), - [anon_sym_LT] = ACTIONS(1895), - [anon_sym_TILDE] = ACTIONS(1893), - [anon_sym_void] = ACTIONS(1895), - [anon_sym_delete] = ACTIONS(1895), - [anon_sym_PLUS_PLUS] = ACTIONS(1893), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1893), - [sym_number] = ACTIONS(1893), - [sym_private_property_identifier] = ACTIONS(1893), - [sym_this] = ACTIONS(1895), - [sym_super] = ACTIONS(1895), - [sym_true] = ACTIONS(1895), - [sym_false] = ACTIONS(1895), - [sym_null] = ACTIONS(1895), - [sym_undefined] = ACTIONS(1895), - [anon_sym_AT] = ACTIONS(1893), - [anon_sym_static] = ACTIONS(1895), - [anon_sym_readonly] = ACTIONS(1895), - [anon_sym_get] = ACTIONS(1895), - [anon_sym_set] = ACTIONS(1895), - [anon_sym_declare] = ACTIONS(1895), - [anon_sym_public] = ACTIONS(1895), - [anon_sym_private] = ACTIONS(1895), - [anon_sym_protected] = ACTIONS(1895), - [anon_sym_override] = ACTIONS(1895), - [anon_sym_module] = ACTIONS(1895), - [anon_sym_any] = ACTIONS(1895), - [anon_sym_number] = ACTIONS(1895), - [anon_sym_boolean] = ACTIONS(1895), - [anon_sym_string] = ACTIONS(1895), - [anon_sym_symbol] = ACTIONS(1895), - [anon_sym_object] = ACTIONS(1895), - [anon_sym_abstract] = ACTIONS(1895), - [anon_sym_interface] = ACTIONS(1895), - [anon_sym_enum] = ACTIONS(1895), + [sym__call_signature] = STATE(5844), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), + [sym_identifier] = ACTIONS(2422), + [anon_sym_export] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_type] = ACTIONS(2424), + [anon_sym_EQ] = ACTIONS(989), + [anon_sym_as] = ACTIONS(122), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2424), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_async] = ACTIONS(2424), + [anon_sym_function] = ACTIONS(2429), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_readonly] = ACTIONS(2424), + [anon_sym_get] = ACTIONS(2424), + [anon_sym_set] = ACTIONS(2424), + [anon_sym_declare] = ACTIONS(2424), + [anon_sym_public] = ACTIONS(2424), + [anon_sym_private] = ACTIONS(2424), + [anon_sym_protected] = ACTIONS(2424), + [anon_sym_override] = ACTIONS(2424), + [anon_sym_module] = ACTIONS(2424), + [anon_sym_any] = ACTIONS(2424), + [anon_sym_number] = ACTIONS(2424), + [anon_sym_boolean] = ACTIONS(2424), + [anon_sym_string] = ACTIONS(2424), + [anon_sym_symbol] = ACTIONS(2424), + [anon_sym_object] = ACTIONS(2424), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [790] = { - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2520), - [anon_sym_export] = ACTIONS(2520), - [anon_sym_default] = ACTIONS(2520), - [anon_sym_type] = ACTIONS(2520), - [anon_sym_namespace] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_RBRACE] = ACTIONS(2518), - [anon_sym_typeof] = ACTIONS(2520), - [anon_sym_import] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2520), - [anon_sym_var] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [anon_sym_BANG] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2520), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_switch] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_await] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_debugger] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_throw] = ACTIONS(2520), - [anon_sym_case] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2518), - [sym_glimmer_opening_tag] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_SQUOTE] = ACTIONS(2518), - [anon_sym_class] = ACTIONS(2520), - [anon_sym_async] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_using] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_SLASH] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_void] = ACTIONS(2520), - [anon_sym_delete] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2518), - [anon_sym_DASH_DASH] = ACTIONS(2518), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2518), - [sym_number] = ACTIONS(2518), - [sym_private_property_identifier] = ACTIONS(2518), - [sym_this] = ACTIONS(2520), - [sym_super] = ACTIONS(2520), - [sym_true] = ACTIONS(2520), - [sym_false] = ACTIONS(2520), - [sym_null] = ACTIONS(2520), - [sym_undefined] = ACTIONS(2520), - [anon_sym_AT] = ACTIONS(2518), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_readonly] = ACTIONS(2520), - [anon_sym_get] = ACTIONS(2520), - [anon_sym_set] = ACTIONS(2520), - [anon_sym_declare] = ACTIONS(2520), - [anon_sym_public] = ACTIONS(2520), - [anon_sym_private] = ACTIONS(2520), - [anon_sym_protected] = ACTIONS(2520), - [anon_sym_override] = ACTIONS(2520), - [anon_sym_module] = ACTIONS(2520), - [anon_sym_any] = ACTIONS(2520), - [anon_sym_number] = ACTIONS(2520), - [anon_sym_boolean] = ACTIONS(2520), - [anon_sym_string] = ACTIONS(2520), - [anon_sym_symbol] = ACTIONS(2520), - [anon_sym_object] = ACTIONS(2520), - [anon_sym_abstract] = ACTIONS(2520), - [anon_sym_interface] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), - [sym__automatic_semicolon] = ACTIONS(2518), - [sym_html_comment] = ACTIONS(5), - }, - [791] = { [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2422), [anon_sym_export] = ACTIONS(2424), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(987), + [anon_sym_EQ] = ACTIONS(1051), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2424), [anon_sym_let] = ACTIONS(2424), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -108852,18 +108767,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2424), [anon_sym_readonly] = ACTIONS(2424), [anon_sym_get] = ACTIONS(2424), @@ -108881,131 +108797,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2424), [anon_sym_object] = ACTIONS(2424), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [791] = { + [ts_builtin_sym_end] = ACTIONS(1755), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1757), + [anon_sym_default] = ACTIONS(1757), + [anon_sym_type] = ACTIONS(1757), + [anon_sym_namespace] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1755), + [anon_sym_typeof] = ACTIONS(1757), + [anon_sym_import] = ACTIONS(1757), + [anon_sym_with] = ACTIONS(1757), + [anon_sym_var] = ACTIONS(1757), + [anon_sym_let] = ACTIONS(1757), + [anon_sym_const] = ACTIONS(1757), + [anon_sym_BANG] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1757), + [anon_sym_if] = ACTIONS(1757), + [anon_sym_switch] = ACTIONS(1757), + [anon_sym_for] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1755), + [anon_sym_SEMI] = ACTIONS(1755), + [anon_sym_await] = ACTIONS(1757), + [anon_sym_while] = ACTIONS(1757), + [anon_sym_do] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1757), + [anon_sym_break] = ACTIONS(1757), + [anon_sym_continue] = ACTIONS(1757), + [anon_sym_debugger] = ACTIONS(1757), + [anon_sym_return] = ACTIONS(1757), + [anon_sym_throw] = ACTIONS(1757), + [anon_sym_case] = ACTIONS(1757), + [anon_sym_yield] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1755), + [sym_glimmer_opening_tag] = ACTIONS(1755), + [anon_sym_class] = ACTIONS(1757), + [anon_sym_async] = ACTIONS(1757), + [anon_sym_function] = ACTIONS(1757), + [anon_sym_new] = ACTIONS(1757), + [anon_sym_using] = ACTIONS(1757), + [anon_sym_PLUS] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_SLASH] = ACTIONS(1757), + [anon_sym_LT] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1755), + [anon_sym_void] = ACTIONS(1757), + [anon_sym_delete] = ACTIONS(1757), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_DQUOTE] = ACTIONS(1755), + [anon_sym_SQUOTE] = ACTIONS(1755), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1755), + [sym_number] = ACTIONS(1755), + [sym_private_property_identifier] = ACTIONS(1755), + [sym_this] = ACTIONS(1757), + [sym_super] = ACTIONS(1757), + [sym_true] = ACTIONS(1757), + [sym_false] = ACTIONS(1757), + [sym_null] = ACTIONS(1757), + [sym_undefined] = ACTIONS(1757), + [anon_sym_AT] = ACTIONS(1755), + [anon_sym_static] = ACTIONS(1757), + [anon_sym_readonly] = ACTIONS(1757), + [anon_sym_get] = ACTIONS(1757), + [anon_sym_set] = ACTIONS(1757), + [anon_sym_declare] = ACTIONS(1757), + [anon_sym_public] = ACTIONS(1757), + [anon_sym_private] = ACTIONS(1757), + [anon_sym_protected] = ACTIONS(1757), + [anon_sym_override] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1757), + [anon_sym_any] = ACTIONS(1757), + [anon_sym_number] = ACTIONS(1757), + [anon_sym_boolean] = ACTIONS(1757), + [anon_sym_string] = ACTIONS(1757), + [anon_sym_symbol] = ACTIONS(1757), + [anon_sym_object] = ACTIONS(1757), + [anon_sym_abstract] = ACTIONS(1757), + [anon_sym_interface] = ACTIONS(1757), + [anon_sym_enum] = ACTIONS(1757), + [sym__automatic_semicolon] = ACTIONS(1763), [sym_html_comment] = ACTIONS(5), }, [792] = { - [ts_builtin_sym_end] = ACTIONS(2522), - [sym_identifier] = ACTIONS(2524), - [anon_sym_export] = ACTIONS(2524), - [anon_sym_default] = ACTIONS(2524), - [anon_sym_type] = ACTIONS(2524), - [anon_sym_namespace] = ACTIONS(2524), - [anon_sym_LBRACE] = ACTIONS(2522), - [anon_sym_RBRACE] = ACTIONS(2522), - [anon_sym_typeof] = ACTIONS(2524), - [anon_sym_import] = ACTIONS(2524), - [anon_sym_with] = ACTIONS(2524), - [anon_sym_var] = ACTIONS(2524), - [anon_sym_let] = ACTIONS(2524), - [anon_sym_const] = ACTIONS(2524), - [anon_sym_BANG] = ACTIONS(2522), - [anon_sym_else] = ACTIONS(2524), - [anon_sym_if] = ACTIONS(2524), - [anon_sym_switch] = ACTIONS(2524), - [anon_sym_for] = ACTIONS(2524), - [anon_sym_LPAREN] = ACTIONS(2522), - [anon_sym_SEMI] = ACTIONS(2522), - [anon_sym_RPAREN] = ACTIONS(2522), - [anon_sym_await] = ACTIONS(2524), - [anon_sym_while] = ACTIONS(2524), - [anon_sym_do] = ACTIONS(2524), - [anon_sym_try] = ACTIONS(2524), - [anon_sym_break] = ACTIONS(2524), - [anon_sym_continue] = ACTIONS(2524), - [anon_sym_debugger] = ACTIONS(2524), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_throw] = ACTIONS(2524), - [anon_sym_case] = ACTIONS(2524), - [anon_sym_yield] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(2522), - [sym_glimmer_opening_tag] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2522), - [anon_sym_SQUOTE] = ACTIONS(2522), - [anon_sym_class] = ACTIONS(2524), - [anon_sym_async] = ACTIONS(2524), - [anon_sym_function] = ACTIONS(2524), - [anon_sym_new] = ACTIONS(2524), - [anon_sym_using] = ACTIONS(2524), - [anon_sym_PLUS] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2524), - [anon_sym_SLASH] = ACTIONS(2524), - [anon_sym_LT] = ACTIONS(2524), - [anon_sym_TILDE] = ACTIONS(2522), - [anon_sym_void] = ACTIONS(2524), - [anon_sym_delete] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(2522), - [anon_sym_DASH_DASH] = ACTIONS(2522), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2522), - [sym_number] = ACTIONS(2522), - [sym_private_property_identifier] = ACTIONS(2522), - [sym_this] = ACTIONS(2524), - [sym_super] = ACTIONS(2524), - [sym_true] = ACTIONS(2524), - [sym_false] = ACTIONS(2524), - [sym_null] = ACTIONS(2524), - [sym_undefined] = ACTIONS(2524), - [anon_sym_AT] = ACTIONS(2522), - [anon_sym_static] = ACTIONS(2524), - [anon_sym_readonly] = ACTIONS(2524), - [anon_sym_get] = ACTIONS(2524), - [anon_sym_set] = ACTIONS(2524), - [anon_sym_declare] = ACTIONS(2524), - [anon_sym_public] = ACTIONS(2524), - [anon_sym_private] = ACTIONS(2524), - [anon_sym_protected] = ACTIONS(2524), - [anon_sym_override] = ACTIONS(2524), - [anon_sym_module] = ACTIONS(2524), - [anon_sym_any] = ACTIONS(2524), - [anon_sym_number] = ACTIONS(2524), - [anon_sym_boolean] = ACTIONS(2524), - [anon_sym_string] = ACTIONS(2524), - [anon_sym_symbol] = ACTIONS(2524), - [anon_sym_object] = ACTIONS(2524), - [anon_sym_abstract] = ACTIONS(2524), - [anon_sym_interface] = ACTIONS(2524), - [anon_sym_enum] = ACTIONS(2524), + [sym_else_clause] = STATE(857), + [ts_builtin_sym_end] = ACTIONS(2514), + [sym_identifier] = ACTIONS(2516), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2516), + [anon_sym_namespace] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_typeof] = ACTIONS(2516), + [anon_sym_import] = ACTIONS(2516), + [anon_sym_with] = ACTIONS(2516), + [anon_sym_var] = ACTIONS(2516), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_else] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_switch] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2514), + [anon_sym_await] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_debugger] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_throw] = ACTIONS(2516), + [anon_sym_case] = ACTIONS(2516), + [anon_sym_yield] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2514), + [sym_glimmer_opening_tag] = ACTIONS(2514), + [anon_sym_class] = ACTIONS(2516), + [anon_sym_async] = ACTIONS(2516), + [anon_sym_function] = ACTIONS(2516), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_using] = ACTIONS(2516), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_SLASH] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2516), + [anon_sym_TILDE] = ACTIONS(2514), + [anon_sym_void] = ACTIONS(2516), + [anon_sym_delete] = ACTIONS(2516), + [anon_sym_PLUS_PLUS] = ACTIONS(2514), + [anon_sym_DASH_DASH] = ACTIONS(2514), + [anon_sym_DQUOTE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2514), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2514), + [sym_number] = ACTIONS(2514), + [sym_private_property_identifier] = ACTIONS(2514), + [sym_this] = ACTIONS(2516), + [sym_super] = ACTIONS(2516), + [sym_true] = ACTIONS(2516), + [sym_false] = ACTIONS(2516), + [sym_null] = ACTIONS(2516), + [sym_undefined] = ACTIONS(2516), + [anon_sym_AT] = ACTIONS(2514), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_readonly] = ACTIONS(2516), + [anon_sym_get] = ACTIONS(2516), + [anon_sym_set] = ACTIONS(2516), + [anon_sym_declare] = ACTIONS(2516), + [anon_sym_public] = ACTIONS(2516), + [anon_sym_private] = ACTIONS(2516), + [anon_sym_protected] = ACTIONS(2516), + [anon_sym_override] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_any] = ACTIONS(2516), + [anon_sym_number] = ACTIONS(2516), + [anon_sym_boolean] = ACTIONS(2516), + [anon_sym_string] = ACTIONS(2516), + [anon_sym_symbol] = ACTIONS(2516), + [anon_sym_object] = ACTIONS(2516), + [anon_sym_abstract] = ACTIONS(2516), + [anon_sym_interface] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), [sym_html_comment] = ACTIONS(5), }, [793] = { + [ts_builtin_sym_end] = ACTIONS(2520), + [sym_identifier] = ACTIONS(2522), + [anon_sym_export] = ACTIONS(2522), + [anon_sym_default] = ACTIONS(2522), + [anon_sym_type] = ACTIONS(2522), + [anon_sym_namespace] = ACTIONS(2522), + [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2520), + [anon_sym_typeof] = ACTIONS(2522), + [anon_sym_import] = ACTIONS(2522), + [anon_sym_with] = ACTIONS(2522), + [anon_sym_var] = ACTIONS(2522), + [anon_sym_let] = ACTIONS(2522), + [anon_sym_const] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2522), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_switch] = ACTIONS(2522), + [anon_sym_for] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_await] = ACTIONS(2522), + [anon_sym_while] = ACTIONS(2522), + [anon_sym_do] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2522), + [anon_sym_break] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2522), + [anon_sym_debugger] = ACTIONS(2522), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_throw] = ACTIONS(2522), + [anon_sym_case] = ACTIONS(2522), + [anon_sym_yield] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(2520), + [sym_glimmer_opening_tag] = ACTIONS(2520), + [anon_sym_class] = ACTIONS(2522), + [anon_sym_async] = ACTIONS(2522), + [anon_sym_function] = ACTIONS(2522), + [anon_sym_new] = ACTIONS(2522), + [anon_sym_using] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2522), + [anon_sym_SLASH] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_void] = ACTIONS(2522), + [anon_sym_delete] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2520), + [anon_sym_SQUOTE] = ACTIONS(2520), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2520), + [sym_private_property_identifier] = ACTIONS(2520), + [sym_this] = ACTIONS(2522), + [sym_super] = ACTIONS(2522), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2522), + [anon_sym_get] = ACTIONS(2522), + [anon_sym_set] = ACTIONS(2522), + [anon_sym_declare] = ACTIONS(2522), + [anon_sym_public] = ACTIONS(2522), + [anon_sym_private] = ACTIONS(2522), + [anon_sym_protected] = ACTIONS(2522), + [anon_sym_override] = ACTIONS(2522), + [anon_sym_module] = ACTIONS(2522), + [anon_sym_any] = ACTIONS(2522), + [anon_sym_number] = ACTIONS(2522), + [anon_sym_boolean] = ACTIONS(2522), + [anon_sym_string] = ACTIONS(2522), + [anon_sym_symbol] = ACTIONS(2522), + [anon_sym_object] = ACTIONS(2522), + [anon_sym_abstract] = ACTIONS(2522), + [anon_sym_interface] = ACTIONS(2522), + [anon_sym_enum] = ACTIONS(2522), + [sym__automatic_semicolon] = ACTIONS(2520), + [sym_html_comment] = ACTIONS(5), + }, + [794] = { [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2422), [anon_sym_export] = ACTIONS(2424), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(985), + [anon_sym_EQ] = ACTIONS(987), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2424), [anon_sym_let] = ACTIONS(2424), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -109020,18 +109103,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2424), [anon_sym_readonly] = ACTIONS(2424), [anon_sym_get] = ACTIONS(2424), @@ -109049,349 +109133,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2424), [anon_sym_object] = ACTIONS(2424), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [794] = { - [ts_builtin_sym_end] = ACTIONS(1833), - [sym_identifier] = ACTIONS(1835), - [anon_sym_export] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1835), - [anon_sym_type] = ACTIONS(1835), - [anon_sym_namespace] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_typeof] = ACTIONS(1835), - [anon_sym_import] = ACTIONS(1835), - [anon_sym_with] = ACTIONS(1835), - [anon_sym_var] = ACTIONS(1835), - [anon_sym_let] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_else] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_switch] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_do] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_debugger] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_throw] = ACTIONS(1835), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1833), - [sym_glimmer_opening_tag] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [anon_sym_SQUOTE] = ACTIONS(1833), - [anon_sym_class] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_function] = ACTIONS(1835), - [anon_sym_new] = ACTIONS(1835), - [anon_sym_using] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_void] = ACTIONS(1835), - [anon_sym_delete] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(1833), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1833), - [sym_number] = ACTIONS(1833), - [sym_private_property_identifier] = ACTIONS(1833), - [sym_this] = ACTIONS(1835), - [sym_super] = ACTIONS(1835), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_null] = ACTIONS(1835), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(1833), - [anon_sym_static] = ACTIONS(1835), - [anon_sym_readonly] = ACTIONS(1835), - [anon_sym_get] = ACTIONS(1835), - [anon_sym_set] = ACTIONS(1835), - [anon_sym_declare] = ACTIONS(1835), - [anon_sym_public] = ACTIONS(1835), - [anon_sym_private] = ACTIONS(1835), - [anon_sym_protected] = ACTIONS(1835), - [anon_sym_override] = ACTIONS(1835), - [anon_sym_module] = ACTIONS(1835), - [anon_sym_any] = ACTIONS(1835), - [anon_sym_number] = ACTIONS(1835), - [anon_sym_boolean] = ACTIONS(1835), - [anon_sym_string] = ACTIONS(1835), - [anon_sym_symbol] = ACTIONS(1835), - [anon_sym_object] = ACTIONS(1835), - [anon_sym_abstract] = ACTIONS(1835), - [anon_sym_interface] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [sym__automatic_semicolon] = ACTIONS(1841), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [795] = { - [ts_builtin_sym_end] = ACTIONS(1865), - [sym_identifier] = ACTIONS(1867), - [anon_sym_export] = ACTIONS(1867), - [anon_sym_default] = ACTIONS(1867), - [anon_sym_type] = ACTIONS(1867), - [anon_sym_namespace] = ACTIONS(1867), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(1867), - [anon_sym_with] = ACTIONS(1867), - [anon_sym_var] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_BANG] = ACTIONS(1865), - [anon_sym_else] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_switch] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_await] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_do] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_debugger] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_case] = ACTIONS(1867), - [anon_sym_yield] = ACTIONS(1867), - [anon_sym_LBRACK] = ACTIONS(1865), - [sym_glimmer_opening_tag] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1865), - [anon_sym_SQUOTE] = ACTIONS(1865), - [anon_sym_class] = ACTIONS(1867), - [anon_sym_async] = ACTIONS(1867), - [anon_sym_function] = ACTIONS(1867), - [anon_sym_new] = ACTIONS(1867), - [anon_sym_using] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1867), - [anon_sym_LT] = ACTIONS(1867), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1865), - [anon_sym_DASH_DASH] = ACTIONS(1865), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1865), - [sym_number] = ACTIONS(1865), - [sym_private_property_identifier] = ACTIONS(1865), - [sym_this] = ACTIONS(1867), - [sym_super] = ACTIONS(1867), - [sym_true] = ACTIONS(1867), - [sym_false] = ACTIONS(1867), - [sym_null] = ACTIONS(1867), - [sym_undefined] = ACTIONS(1867), - [anon_sym_AT] = ACTIONS(1865), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_readonly] = ACTIONS(1867), - [anon_sym_get] = ACTIONS(1867), - [anon_sym_set] = ACTIONS(1867), - [anon_sym_declare] = ACTIONS(1867), - [anon_sym_public] = ACTIONS(1867), - [anon_sym_private] = ACTIONS(1867), - [anon_sym_protected] = ACTIONS(1867), - [anon_sym_override] = ACTIONS(1867), - [anon_sym_module] = ACTIONS(1867), - [anon_sym_any] = ACTIONS(1867), - [anon_sym_number] = ACTIONS(1867), - [anon_sym_boolean] = ACTIONS(1867), - [anon_sym_string] = ACTIONS(1867), - [anon_sym_symbol] = ACTIONS(1867), - [anon_sym_object] = ACTIONS(1867), - [anon_sym_abstract] = ACTIONS(1867), - [anon_sym_interface] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [sym__automatic_semicolon] = ACTIONS(1873), + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_identifier] = ACTIONS(1781), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_typeof] = ACTIONS(1781), + [anon_sym_import] = ACTIONS(1781), + [anon_sym_with] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1779), + [anon_sym_await] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_debugger] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1781), + [anon_sym_case] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1779), + [sym_glimmer_opening_tag] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1781), + [anon_sym_async] = ACTIONS(1781), + [anon_sym_function] = ACTIONS(1781), + [anon_sym_new] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1781), + [anon_sym_PLUS] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_TILDE] = ACTIONS(1779), + [anon_sym_void] = ACTIONS(1781), + [anon_sym_delete] = ACTIONS(1781), + [anon_sym_PLUS_PLUS] = ACTIONS(1779), + [anon_sym_DASH_DASH] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_SQUOTE] = ACTIONS(1779), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1779), + [sym_number] = ACTIONS(1779), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(1781), + [sym_super] = ACTIONS(1781), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_undefined] = ACTIONS(1781), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(1781), + [anon_sym_any] = ACTIONS(1781), + [anon_sym_number] = ACTIONS(1781), + [anon_sym_boolean] = ACTIONS(1781), + [anon_sym_string] = ACTIONS(1781), + [anon_sym_symbol] = ACTIONS(1781), + [anon_sym_object] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1781), + [anon_sym_interface] = ACTIONS(1781), + [anon_sym_enum] = ACTIONS(1781), + [sym__automatic_semicolon] = ACTIONS(1787), [sym_html_comment] = ACTIONS(5), }, [796] = { - [ts_builtin_sym_end] = ACTIONS(2526), - [sym_identifier] = ACTIONS(2528), - [anon_sym_export] = ACTIONS(2528), - [anon_sym_default] = ACTIONS(2528), - [anon_sym_type] = ACTIONS(2528), - [anon_sym_namespace] = ACTIONS(2528), - [anon_sym_LBRACE] = ACTIONS(2526), - [anon_sym_RBRACE] = ACTIONS(2526), - [anon_sym_typeof] = ACTIONS(2528), - [anon_sym_import] = ACTIONS(2528), - [anon_sym_with] = ACTIONS(2528), - [anon_sym_var] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_const] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2526), - [anon_sym_else] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_switch] = ACTIONS(2528), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_SEMI] = ACTIONS(2530), - [anon_sym_await] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_do] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_continue] = ACTIONS(2528), - [anon_sym_debugger] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_throw] = ACTIONS(2528), - [anon_sym_case] = ACTIONS(2528), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2526), - [sym_glimmer_opening_tag] = ACTIONS(2526), - [anon_sym_DQUOTE] = ACTIONS(2526), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_class] = ACTIONS(2528), - [anon_sym_async] = ACTIONS(2528), - [anon_sym_function] = ACTIONS(2528), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_using] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_SLASH] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2526), - [anon_sym_void] = ACTIONS(2528), - [anon_sym_delete] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2526), - [anon_sym_DASH_DASH] = ACTIONS(2526), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2526), - [sym_number] = ACTIONS(2526), - [sym_private_property_identifier] = ACTIONS(2526), - [sym_this] = ACTIONS(2528), - [sym_super] = ACTIONS(2528), - [sym_true] = ACTIONS(2528), - [sym_false] = ACTIONS(2528), - [sym_null] = ACTIONS(2528), - [sym_undefined] = ACTIONS(2528), - [anon_sym_AT] = ACTIONS(2526), - [anon_sym_static] = ACTIONS(2528), - [anon_sym_readonly] = ACTIONS(2528), - [anon_sym_get] = ACTIONS(2528), - [anon_sym_set] = ACTIONS(2528), - [anon_sym_declare] = ACTIONS(2528), - [anon_sym_public] = ACTIONS(2528), - [anon_sym_private] = ACTIONS(2528), - [anon_sym_protected] = ACTIONS(2528), - [anon_sym_override] = ACTIONS(2528), - [anon_sym_module] = ACTIONS(2528), - [anon_sym_any] = ACTIONS(2528), - [anon_sym_number] = ACTIONS(2528), - [anon_sym_boolean] = ACTIONS(2528), - [anon_sym_string] = ACTIONS(2528), - [anon_sym_symbol] = ACTIONS(2528), - [anon_sym_object] = ACTIONS(2528), - [anon_sym_abstract] = ACTIONS(2528), - [anon_sym_interface] = ACTIONS(2528), - [anon_sym_enum] = ACTIONS(2528), - [sym__automatic_semicolon] = ACTIONS(2530), + [ts_builtin_sym_end] = ACTIONS(2524), + [sym_identifier] = ACTIONS(2526), + [anon_sym_export] = ACTIONS(2526), + [anon_sym_default] = ACTIONS(2526), + [anon_sym_type] = ACTIONS(2526), + [anon_sym_namespace] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2524), + [anon_sym_RBRACE] = ACTIONS(2524), + [anon_sym_typeof] = ACTIONS(2526), + [anon_sym_import] = ACTIONS(2526), + [anon_sym_with] = ACTIONS(2526), + [anon_sym_var] = ACTIONS(2526), + [anon_sym_let] = ACTIONS(2526), + [anon_sym_const] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2524), + [anon_sym_else] = ACTIONS(2526), + [anon_sym_if] = ACTIONS(2526), + [anon_sym_switch] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2524), + [anon_sym_await] = ACTIONS(2526), + [anon_sym_while] = ACTIONS(2526), + [anon_sym_do] = ACTIONS(2526), + [anon_sym_try] = ACTIONS(2526), + [anon_sym_break] = ACTIONS(2526), + [anon_sym_continue] = ACTIONS(2526), + [anon_sym_debugger] = ACTIONS(2526), + [anon_sym_return] = ACTIONS(2526), + [anon_sym_throw] = ACTIONS(2526), + [anon_sym_case] = ACTIONS(2526), + [anon_sym_finally] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2524), + [sym_glimmer_opening_tag] = ACTIONS(2524), + [anon_sym_class] = ACTIONS(2526), + [anon_sym_async] = ACTIONS(2526), + [anon_sym_function] = ACTIONS(2526), + [anon_sym_new] = ACTIONS(2526), + [anon_sym_using] = ACTIONS(2526), + [anon_sym_PLUS] = ACTIONS(2526), + [anon_sym_DASH] = ACTIONS(2526), + [anon_sym_SLASH] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_TILDE] = ACTIONS(2524), + [anon_sym_void] = ACTIONS(2526), + [anon_sym_delete] = ACTIONS(2526), + [anon_sym_PLUS_PLUS] = ACTIONS(2524), + [anon_sym_DASH_DASH] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2524), + [anon_sym_SQUOTE] = ACTIONS(2524), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2524), + [sym_number] = ACTIONS(2524), + [sym_private_property_identifier] = ACTIONS(2524), + [sym_this] = ACTIONS(2526), + [sym_super] = ACTIONS(2526), + [sym_true] = ACTIONS(2526), + [sym_false] = ACTIONS(2526), + [sym_null] = ACTIONS(2526), + [sym_undefined] = ACTIONS(2526), + [anon_sym_AT] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2526), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_get] = ACTIONS(2526), + [anon_sym_set] = ACTIONS(2526), + [anon_sym_declare] = ACTIONS(2526), + [anon_sym_public] = ACTIONS(2526), + [anon_sym_private] = ACTIONS(2526), + [anon_sym_protected] = ACTIONS(2526), + [anon_sym_override] = ACTIONS(2526), + [anon_sym_module] = ACTIONS(2526), + [anon_sym_any] = ACTIONS(2526), + [anon_sym_number] = ACTIONS(2526), + [anon_sym_boolean] = ACTIONS(2526), + [anon_sym_string] = ACTIONS(2526), + [anon_sym_symbol] = ACTIONS(2526), + [anon_sym_object] = ACTIONS(2526), + [anon_sym_abstract] = ACTIONS(2526), + [anon_sym_interface] = ACTIONS(2526), + [anon_sym_enum] = ACTIONS(2526), [sym_html_comment] = ACTIONS(5), }, [797] = { - [ts_builtin_sym_end] = ACTIONS(1851), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1853), - [anon_sym_default] = ACTIONS(1853), - [anon_sym_type] = ACTIONS(1853), - [anon_sym_namespace] = ACTIONS(1853), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_RBRACE] = ACTIONS(1851), - [anon_sym_typeof] = ACTIONS(1853), - [anon_sym_import] = ACTIONS(1853), - [anon_sym_with] = ACTIONS(1853), - [anon_sym_var] = ACTIONS(1853), - [anon_sym_let] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1853), - [anon_sym_BANG] = ACTIONS(1851), - [anon_sym_else] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(1853), - [anon_sym_switch] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1851), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_while] = ACTIONS(1853), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_try] = ACTIONS(1853), - [anon_sym_break] = ACTIONS(1853), - [anon_sym_continue] = ACTIONS(1853), - [anon_sym_debugger] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1853), - [anon_sym_throw] = ACTIONS(1853), - [anon_sym_case] = ACTIONS(1853), - [anon_sym_yield] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1851), - [sym_glimmer_opening_tag] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [anon_sym_SQUOTE] = ACTIONS(1851), - [anon_sym_class] = ACTIONS(1853), - [anon_sym_async] = ACTIONS(1853), - [anon_sym_function] = ACTIONS(1853), - [anon_sym_new] = ACTIONS(1853), - [anon_sym_using] = ACTIONS(1853), - [anon_sym_PLUS] = ACTIONS(1853), - [anon_sym_DASH] = ACTIONS(1853), - [anon_sym_SLASH] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1853), - [anon_sym_TILDE] = ACTIONS(1851), - [anon_sym_void] = ACTIONS(1853), - [anon_sym_delete] = ACTIONS(1853), - [anon_sym_PLUS_PLUS] = ACTIONS(1851), - [anon_sym_DASH_DASH] = ACTIONS(1851), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1851), - [sym_number] = ACTIONS(1851), - [sym_private_property_identifier] = ACTIONS(1851), - [sym_this] = ACTIONS(1853), - [sym_super] = ACTIONS(1853), - [sym_true] = ACTIONS(1853), - [sym_false] = ACTIONS(1853), - [sym_null] = ACTIONS(1853), - [sym_undefined] = ACTIONS(1853), - [anon_sym_AT] = ACTIONS(1851), - [anon_sym_static] = ACTIONS(1853), - [anon_sym_readonly] = ACTIONS(1853), - [anon_sym_get] = ACTIONS(1853), - [anon_sym_set] = ACTIONS(1853), - [anon_sym_declare] = ACTIONS(1853), - [anon_sym_public] = ACTIONS(1853), - [anon_sym_private] = ACTIONS(1853), - [anon_sym_protected] = ACTIONS(1853), - [anon_sym_override] = ACTIONS(1853), - [anon_sym_module] = ACTIONS(1853), - [anon_sym_any] = ACTIONS(1853), - [anon_sym_number] = ACTIONS(1853), - [anon_sym_boolean] = ACTIONS(1853), - [anon_sym_string] = ACTIONS(1853), - [anon_sym_symbol] = ACTIONS(1853), - [anon_sym_object] = ACTIONS(1853), - [anon_sym_abstract] = ACTIONS(1853), - [anon_sym_interface] = ACTIONS(1853), - [anon_sym_enum] = ACTIONS(1853), - [sym__automatic_semicolon] = ACTIONS(1859), - [sym_html_comment] = ACTIONS(5), - }, - [798] = { [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2422), [anon_sym_export] = ACTIONS(2424), [anon_sym_STAR] = ACTIONS(122), @@ -109403,29 +109319,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -109440,18 +109355,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2424), [anon_sym_readonly] = ACTIONS(2424), [anon_sym_get] = ACTIONS(2424), @@ -109469,13 +109385,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2424), [anon_sym_object] = ACTIONS(2424), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [798] = { + [ts_builtin_sym_end] = ACTIONS(2528), + [sym_identifier] = ACTIONS(2530), + [anon_sym_export] = ACTIONS(2530), + [anon_sym_default] = ACTIONS(2530), + [anon_sym_type] = ACTIONS(2530), + [anon_sym_namespace] = ACTIONS(2530), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_RBRACE] = ACTIONS(2528), + [anon_sym_typeof] = ACTIONS(2530), + [anon_sym_import] = ACTIONS(2530), + [anon_sym_with] = ACTIONS(2530), + [anon_sym_var] = ACTIONS(2530), + [anon_sym_let] = ACTIONS(2530), + [anon_sym_const] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(2528), + [anon_sym_else] = ACTIONS(2530), + [anon_sym_if] = ACTIONS(2530), + [anon_sym_switch] = ACTIONS(2530), + [anon_sym_for] = ACTIONS(2530), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(2528), + [anon_sym_await] = ACTIONS(2530), + [anon_sym_while] = ACTIONS(2530), + [anon_sym_do] = ACTIONS(2530), + [anon_sym_try] = ACTIONS(2530), + [anon_sym_break] = ACTIONS(2530), + [anon_sym_continue] = ACTIONS(2530), + [anon_sym_debugger] = ACTIONS(2530), + [anon_sym_return] = ACTIONS(2530), + [anon_sym_throw] = ACTIONS(2530), + [anon_sym_case] = ACTIONS(2530), + [anon_sym_finally] = ACTIONS(2530), + [anon_sym_yield] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(2528), + [sym_glimmer_opening_tag] = ACTIONS(2528), + [anon_sym_class] = ACTIONS(2530), + [anon_sym_async] = ACTIONS(2530), + [anon_sym_function] = ACTIONS(2530), + [anon_sym_new] = ACTIONS(2530), + [anon_sym_using] = ACTIONS(2530), + [anon_sym_PLUS] = ACTIONS(2530), + [anon_sym_DASH] = ACTIONS(2530), + [anon_sym_SLASH] = ACTIONS(2530), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_TILDE] = ACTIONS(2528), + [anon_sym_void] = ACTIONS(2530), + [anon_sym_delete] = ACTIONS(2530), + [anon_sym_PLUS_PLUS] = ACTIONS(2528), + [anon_sym_DASH_DASH] = ACTIONS(2528), + [anon_sym_DQUOTE] = ACTIONS(2528), + [anon_sym_SQUOTE] = ACTIONS(2528), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2528), + [sym_number] = ACTIONS(2528), + [sym_private_property_identifier] = ACTIONS(2528), + [sym_this] = ACTIONS(2530), + [sym_super] = ACTIONS(2530), + [sym_true] = ACTIONS(2530), + [sym_false] = ACTIONS(2530), + [sym_null] = ACTIONS(2530), + [sym_undefined] = ACTIONS(2530), + [anon_sym_AT] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2530), + [anon_sym_readonly] = ACTIONS(2530), + [anon_sym_get] = ACTIONS(2530), + [anon_sym_set] = ACTIONS(2530), + [anon_sym_declare] = ACTIONS(2530), + [anon_sym_public] = ACTIONS(2530), + [anon_sym_private] = ACTIONS(2530), + [anon_sym_protected] = ACTIONS(2530), + [anon_sym_override] = ACTIONS(2530), + [anon_sym_module] = ACTIONS(2530), + [anon_sym_any] = ACTIONS(2530), + [anon_sym_number] = ACTIONS(2530), + [anon_sym_boolean] = ACTIONS(2530), + [anon_sym_string] = ACTIONS(2530), + [anon_sym_symbol] = ACTIONS(2530), + [anon_sym_object] = ACTIONS(2530), + [anon_sym_abstract] = ACTIONS(2530), + [anon_sym_interface] = ACTIONS(2530), + [anon_sym_enum] = ACTIONS(2530), [sym_html_comment] = ACTIONS(5), }, [799] = { [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2422), [anon_sym_export] = ACTIONS(2424), [anon_sym_STAR] = ACTIONS(122), @@ -109487,29 +109487,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -109524,18 +109523,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2424), [anon_sym_readonly] = ACTIONS(2424), [anon_sym_get] = ACTIONS(2424), @@ -109553,47 +109553,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2424), [anon_sym_object] = ACTIONS(2424), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [800] = { + [sym_statement_block] = STATE(899), + [ts_builtin_sym_end] = ACTIONS(1717), + [sym_identifier] = ACTIONS(1719), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_typeof] = ACTIONS(1719), + [anon_sym_import] = ACTIONS(1719), + [anon_sym_with] = ACTIONS(1719), + [anon_sym_var] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(1717), + [anon_sym_else] = ACTIONS(1719), + [anon_sym_if] = ACTIONS(1719), + [anon_sym_switch] = ACTIONS(1719), + [anon_sym_for] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_await] = ACTIONS(1719), + [anon_sym_while] = ACTIONS(1719), + [anon_sym_do] = ACTIONS(1719), + [anon_sym_try] = ACTIONS(1719), + [anon_sym_break] = ACTIONS(1719), + [anon_sym_continue] = ACTIONS(1719), + [anon_sym_debugger] = ACTIONS(1719), + [anon_sym_return] = ACTIONS(1719), + [anon_sym_throw] = ACTIONS(1719), + [anon_sym_case] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(1719), + [anon_sym_LBRACK] = ACTIONS(1717), + [sym_glimmer_opening_tag] = ACTIONS(1717), + [anon_sym_class] = ACTIONS(1719), + [anon_sym_async] = ACTIONS(1719), + [anon_sym_function] = ACTIONS(1719), + [anon_sym_new] = ACTIONS(1719), + [anon_sym_using] = ACTIONS(1719), + [anon_sym_PLUS] = ACTIONS(1719), + [anon_sym_DASH] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1719), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_TILDE] = ACTIONS(1717), + [anon_sym_void] = ACTIONS(1719), + [anon_sym_delete] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [anon_sym_SQUOTE] = ACTIONS(1717), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1717), + [sym_number] = ACTIONS(1717), + [sym_private_property_identifier] = ACTIONS(1717), + [sym_this] = ACTIONS(1719), + [sym_super] = ACTIONS(1719), + [sym_true] = ACTIONS(1719), + [sym_false] = ACTIONS(1719), + [sym_null] = ACTIONS(1719), + [sym_undefined] = ACTIONS(1719), + [anon_sym_AT] = ACTIONS(1717), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_abstract] = ACTIONS(1719), + [anon_sym_interface] = ACTIONS(1719), + [anon_sym_enum] = ACTIONS(1719), + [sym_html_comment] = ACTIONS(5), + }, + [801] = { [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2422), [anon_sym_export] = ACTIONS(2424), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(831), + [anon_sym_EQ] = ACTIONS(985), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2424), [anon_sym_let] = ACTIONS(2424), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -109608,18 +109691,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2424), [anon_sym_readonly] = ACTIONS(2424), [anon_sym_get] = ACTIONS(2424), @@ -109637,94 +109721,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2424), [anon_sym_object] = ACTIONS(2424), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [801] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_export] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_namespace] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_typeof] = ACTIONS(1899), - [anon_sym_import] = ACTIONS(1899), - [anon_sym_with] = ACTIONS(1899), - [anon_sym_var] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_else] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_switch] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_await] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_debugger] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_throw] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1899), - [anon_sym_yield] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1897), - [sym_glimmer_opening_tag] = ACTIONS(1897), - [anon_sym_DOT] = ACTIONS(1899), - [anon_sym_DQUOTE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_class] = ACTIONS(1899), - [anon_sym_async] = ACTIONS(1899), - [anon_sym_function] = ACTIONS(1899), - [anon_sym_new] = ACTIONS(1899), - [anon_sym_using] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_SLASH] = ACTIONS(1899), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_void] = ACTIONS(1899), - [anon_sym_delete] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1897), - [sym_number] = ACTIONS(1897), - [sym_private_property_identifier] = ACTIONS(1897), - [sym_this] = ACTIONS(1899), - [sym_super] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_null] = ACTIONS(1899), - [sym_undefined] = ACTIONS(1899), - [anon_sym_AT] = ACTIONS(1897), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_readonly] = ACTIONS(1899), - [anon_sym_get] = ACTIONS(1899), - [anon_sym_set] = ACTIONS(1899), - [anon_sym_declare] = ACTIONS(1899), - [anon_sym_public] = ACTIONS(1899), - [anon_sym_private] = ACTIONS(1899), - [anon_sym_protected] = ACTIONS(1899), - [anon_sym_override] = ACTIONS(1899), - [anon_sym_module] = ACTIONS(1899), - [anon_sym_any] = ACTIONS(1899), - [anon_sym_number] = ACTIONS(1899), - [anon_sym_boolean] = ACTIONS(1899), - [anon_sym_string] = ACTIONS(1899), - [anon_sym_symbol] = ACTIONS(1899), - [anon_sym_object] = ACTIONS(1899), - [anon_sym_abstract] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), + [802] = { + [ts_builtin_sym_end] = ACTIONS(1849), + [sym_identifier] = ACTIONS(1851), + [anon_sym_export] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1851), + [anon_sym_type] = ACTIONS(1851), + [anon_sym_namespace] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_typeof] = ACTIONS(1851), + [anon_sym_import] = ACTIONS(1851), + [anon_sym_with] = ACTIONS(1851), + [anon_sym_var] = ACTIONS(1851), + [anon_sym_let] = ACTIONS(1851), + [anon_sym_const] = ACTIONS(1851), + [anon_sym_BANG] = ACTIONS(1849), + [anon_sym_else] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_switch] = ACTIONS(1851), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_await] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_do] = ACTIONS(1851), + [anon_sym_try] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_debugger] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_throw] = ACTIONS(1851), + [anon_sym_case] = ACTIONS(1851), + [anon_sym_yield] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1849), + [sym_glimmer_opening_tag] = ACTIONS(1849), + [anon_sym_class] = ACTIONS(1851), + [anon_sym_async] = ACTIONS(1851), + [anon_sym_function] = ACTIONS(1851), + [anon_sym_new] = ACTIONS(1851), + [anon_sym_using] = ACTIONS(1851), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_SLASH] = ACTIONS(1851), + [anon_sym_LT] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_void] = ACTIONS(1851), + [anon_sym_delete] = ACTIONS(1851), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_DQUOTE] = ACTIONS(1849), + [anon_sym_SQUOTE] = ACTIONS(1849), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1849), + [sym_number] = ACTIONS(1849), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(1851), + [sym_super] = ACTIONS(1851), + [sym_true] = ACTIONS(1851), + [sym_false] = ACTIONS(1851), + [sym_null] = ACTIONS(1851), + [sym_undefined] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(1849), + [anon_sym_static] = ACTIONS(1851), + [anon_sym_readonly] = ACTIONS(1851), + [anon_sym_get] = ACTIONS(1851), + [anon_sym_set] = ACTIONS(1851), + [anon_sym_declare] = ACTIONS(1851), + [anon_sym_public] = ACTIONS(1851), + [anon_sym_private] = ACTIONS(1851), + [anon_sym_protected] = ACTIONS(1851), + [anon_sym_override] = ACTIONS(1851), + [anon_sym_module] = ACTIONS(1851), + [anon_sym_any] = ACTIONS(1851), + [anon_sym_number] = ACTIONS(1851), + [anon_sym_boolean] = ACTIONS(1851), + [anon_sym_string] = ACTIONS(1851), + [anon_sym_symbol] = ACTIONS(1851), + [anon_sym_object] = ACTIONS(1851), + [anon_sym_abstract] = ACTIONS(1851), + [anon_sym_interface] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1851), + [sym__automatic_semicolon] = ACTIONS(1857), [sym_html_comment] = ACTIONS(5), }, - [802] = { + [803] = { + [ts_builtin_sym_end] = ACTIONS(1839), + [sym_identifier] = ACTIONS(1841), + [anon_sym_export] = ACTIONS(1841), + [anon_sym_default] = ACTIONS(1841), + [anon_sym_type] = ACTIONS(1841), + [anon_sym_namespace] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_typeof] = ACTIONS(1841), + [anon_sym_import] = ACTIONS(1841), + [anon_sym_with] = ACTIONS(1841), + [anon_sym_var] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1839), + [anon_sym_else] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_switch] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_await] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_do] = ACTIONS(1841), + [anon_sym_try] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_debugger] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_throw] = ACTIONS(1841), + [anon_sym_case] = ACTIONS(1841), + [anon_sym_yield] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1839), + [sym_glimmer_opening_tag] = ACTIONS(1839), + [anon_sym_class] = ACTIONS(1841), + [anon_sym_async] = ACTIONS(1841), + [anon_sym_function] = ACTIONS(1841), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_TILDE] = ACTIONS(1839), + [anon_sym_void] = ACTIONS(1841), + [anon_sym_delete] = ACTIONS(1841), + [anon_sym_PLUS_PLUS] = ACTIONS(1839), + [anon_sym_DASH_DASH] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1839), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1839), + [sym_number] = ACTIONS(1839), + [sym_private_property_identifier] = ACTIONS(1839), + [sym_this] = ACTIONS(1841), + [sym_super] = ACTIONS(1841), + [sym_true] = ACTIONS(1841), + [sym_false] = ACTIONS(1841), + [sym_null] = ACTIONS(1841), + [sym_undefined] = ACTIONS(1841), + [anon_sym_AT] = ACTIONS(1839), + [anon_sym_static] = ACTIONS(1841), + [anon_sym_readonly] = ACTIONS(1841), + [anon_sym_get] = ACTIONS(1841), + [anon_sym_set] = ACTIONS(1841), + [anon_sym_declare] = ACTIONS(1841), + [anon_sym_public] = ACTIONS(1841), + [anon_sym_private] = ACTIONS(1841), + [anon_sym_protected] = ACTIONS(1841), + [anon_sym_override] = ACTIONS(1841), + [anon_sym_module] = ACTIONS(1841), + [anon_sym_any] = ACTIONS(1841), + [anon_sym_number] = ACTIONS(1841), + [anon_sym_boolean] = ACTIONS(1841), + [anon_sym_string] = ACTIONS(1841), + [anon_sym_symbol] = ACTIONS(1841), + [anon_sym_object] = ACTIONS(1841), + [anon_sym_abstract] = ACTIONS(1841), + [anon_sym_interface] = ACTIONS(1841), + [anon_sym_enum] = ACTIONS(1841), + [sym__automatic_semicolon] = ACTIONS(1847), + [sym_html_comment] = ACTIONS(5), + }, + [804] = { [ts_builtin_sym_end] = ACTIONS(2532), [sym_identifier] = ACTIONS(2534), [anon_sym_export] = ACTIONS(2534), @@ -109760,8 +109928,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(2532), [sym_glimmer_opening_tag] = ACTIONS(2532), - [anon_sym_DQUOTE] = ACTIONS(2532), - [anon_sym_SQUOTE] = ACTIONS(2532), [anon_sym_class] = ACTIONS(2534), [anon_sym_async] = ACTIONS(2534), [anon_sym_function] = ACTIONS(2534), @@ -109776,6 +109942,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2534), [anon_sym_PLUS_PLUS] = ACTIONS(2532), [anon_sym_DASH_DASH] = ACTIONS(2532), + [anon_sym_DQUOTE] = ACTIONS(2532), + [anon_sym_SQUOTE] = ACTIONS(2532), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2532), [sym_number] = ACTIONS(2532), @@ -109808,212 +109976,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2534), [sym_html_comment] = ACTIONS(5), }, - [803] = { - [ts_builtin_sym_end] = ACTIONS(1791), - [sym_identifier] = ACTIONS(1793), - [anon_sym_export] = ACTIONS(1793), - [anon_sym_default] = ACTIONS(1793), - [anon_sym_type] = ACTIONS(1793), - [anon_sym_namespace] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(1793), - [anon_sym_import] = ACTIONS(1793), - [anon_sym_with] = ACTIONS(1793), - [anon_sym_var] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_else] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_switch] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_await] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_do] = ACTIONS(1793), - [anon_sym_try] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_debugger] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_throw] = ACTIONS(1793), - [anon_sym_case] = ACTIONS(1793), - [anon_sym_yield] = ACTIONS(1793), - [anon_sym_LBRACK] = ACTIONS(1791), - [sym_glimmer_opening_tag] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1791), - [anon_sym_class] = ACTIONS(1793), - [anon_sym_async] = ACTIONS(1793), - [anon_sym_function] = ACTIONS(1793), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(1793), - [anon_sym_PLUS] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_SLASH] = ACTIONS(1793), - [anon_sym_LT] = ACTIONS(1793), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_void] = ACTIONS(1793), - [anon_sym_delete] = ACTIONS(1793), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1791), - [sym_number] = ACTIONS(1791), - [sym_private_property_identifier] = ACTIONS(1791), - [sym_this] = ACTIONS(1793), - [sym_super] = ACTIONS(1793), - [sym_true] = ACTIONS(1793), - [sym_false] = ACTIONS(1793), - [sym_null] = ACTIONS(1793), - [sym_undefined] = ACTIONS(1793), - [anon_sym_AT] = ACTIONS(1791), - [anon_sym_static] = ACTIONS(1793), - [anon_sym_readonly] = ACTIONS(1793), - [anon_sym_get] = ACTIONS(1793), - [anon_sym_set] = ACTIONS(1793), - [anon_sym_declare] = ACTIONS(1793), - [anon_sym_public] = ACTIONS(1793), - [anon_sym_private] = ACTIONS(1793), - [anon_sym_protected] = ACTIONS(1793), - [anon_sym_override] = ACTIONS(1793), - [anon_sym_module] = ACTIONS(1793), - [anon_sym_any] = ACTIONS(1793), - [anon_sym_number] = ACTIONS(1793), - [anon_sym_boolean] = ACTIONS(1793), - [anon_sym_string] = ACTIONS(1793), - [anon_sym_symbol] = ACTIONS(1793), - [anon_sym_object] = ACTIONS(1793), - [anon_sym_abstract] = ACTIONS(1793), - [anon_sym_interface] = ACTIONS(1793), - [anon_sym_enum] = ACTIONS(1793), - [sym__automatic_semicolon] = ACTIONS(1799), - [sym_html_comment] = ACTIONS(5), - }, - [804] = { - [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(995), - [anon_sym_as] = ACTIONS(122), - [anon_sym_namespace] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_async] = ACTIONS(2424), - [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_static] = ACTIONS(2424), - [anon_sym_readonly] = ACTIONS(2424), - [anon_sym_get] = ACTIONS(2424), - [anon_sym_set] = ACTIONS(2424), - [anon_sym_declare] = ACTIONS(2424), - [anon_sym_public] = ACTIONS(2424), - [anon_sym_private] = ACTIONS(2424), - [anon_sym_protected] = ACTIONS(2424), - [anon_sym_override] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_any] = ACTIONS(2424), - [anon_sym_number] = ACTIONS(2424), - [anon_sym_boolean] = ACTIONS(2424), - [anon_sym_string] = ACTIONS(2424), - [anon_sym_symbol] = ACTIONS(2424), - [anon_sym_object] = ACTIONS(2424), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, [805] = { [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2422), [anon_sym_export] = ACTIONS(2424), [anon_sym_STAR] = ACTIONS(122), [anon_sym_type] = ACTIONS(2424), - [anon_sym_EQ] = ACTIONS(989), + [anon_sym_EQ] = ACTIONS(991), [anon_sym_as] = ACTIONS(122), [anon_sym_namespace] = ACTIONS(2424), [anon_sym_let] = ACTIONS(2424), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -110028,18 +110027,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2424), [anon_sym_readonly] = ACTIONS(2424), [anon_sym_get] = ACTIONS(2424), @@ -110057,13 +110057,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2424), [anon_sym_object] = ACTIONS(2424), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [806] = { [sym__call_signature] = STATE(5844), - [sym_formal_parameters] = STATE(3895), - [sym_type_parameters] = STATE(5348), + [sym_formal_parameters] = STATE(3893), + [sym_type_parameters] = STATE(5354), [sym_identifier] = ACTIONS(2422), [anon_sym_export] = ACTIONS(2424), [anon_sym_STAR] = ACTIONS(122), @@ -110075,29 +110075,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2426), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(2429), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), [anon_sym_new] = ACTIONS(2424), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -110112,18 +110111,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_static] = ACTIONS(2424), [anon_sym_readonly] = ACTIONS(2424), [anon_sym_get] = ACTIONS(2424), @@ -110141,7 +110141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2424), [anon_sym_object] = ACTIONS(2424), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [807] = { @@ -110179,8 +110179,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2538), [anon_sym_LBRACK] = ACTIONS(2536), [sym_glimmer_opening_tag] = ACTIONS(2536), - [anon_sym_DQUOTE] = ACTIONS(2536), - [anon_sym_SQUOTE] = ACTIONS(2536), [anon_sym_class] = ACTIONS(2538), [anon_sym_async] = ACTIONS(2538), [anon_sym_function] = ACTIONS(2538), @@ -110195,6 +110193,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2538), [anon_sym_PLUS_PLUS] = ACTIONS(2536), [anon_sym_DASH_DASH] = ACTIONS(2536), + [anon_sym_DQUOTE] = ACTIONS(2536), + [anon_sym_SQUOTE] = ACTIONS(2536), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2536), [sym_number] = ACTIONS(2536), @@ -110262,8 +110262,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2542), [anon_sym_LBRACK] = ACTIONS(2540), [sym_glimmer_opening_tag] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [anon_sym_SQUOTE] = ACTIONS(2540), [anon_sym_class] = ACTIONS(2542), [anon_sym_async] = ACTIONS(2542), [anon_sym_function] = ACTIONS(2542), @@ -110278,6 +110276,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2542), [anon_sym_PLUS_PLUS] = ACTIONS(2540), [anon_sym_DASH_DASH] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2540), [sym_number] = ACTIONS(2540), @@ -110345,8 +110345,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2546), [anon_sym_LBRACK] = ACTIONS(2544), [sym_glimmer_opening_tag] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), [anon_sym_class] = ACTIONS(2546), [anon_sym_async] = ACTIONS(2546), [anon_sym_function] = ACTIONS(2546), @@ -110361,6 +110359,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2546), [anon_sym_PLUS_PLUS] = ACTIONS(2544), [anon_sym_DASH_DASH] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2544), + [anon_sym_SQUOTE] = ACTIONS(2544), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2544), [sym_number] = ACTIONS(2544), @@ -110428,8 +110428,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2550), [anon_sym_LBRACK] = ACTIONS(2548), [sym_glimmer_opening_tag] = ACTIONS(2548), - [anon_sym_DQUOTE] = ACTIONS(2548), - [anon_sym_SQUOTE] = ACTIONS(2548), [anon_sym_class] = ACTIONS(2550), [anon_sym_async] = ACTIONS(2550), [anon_sym_function] = ACTIONS(2550), @@ -110444,6 +110442,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2550), [anon_sym_PLUS_PLUS] = ACTIONS(2548), [anon_sym_DASH_DASH] = ACTIONS(2548), + [anon_sym_DQUOTE] = ACTIONS(2548), + [anon_sym_SQUOTE] = ACTIONS(2548), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2548), [sym_number] = ACTIONS(2548), @@ -110511,8 +110511,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2554), [anon_sym_LBRACK] = ACTIONS(2552), [sym_glimmer_opening_tag] = ACTIONS(2552), - [anon_sym_DQUOTE] = ACTIONS(2552), - [anon_sym_SQUOTE] = ACTIONS(2552), [anon_sym_class] = ACTIONS(2554), [anon_sym_async] = ACTIONS(2554), [anon_sym_function] = ACTIONS(2554), @@ -110527,6 +110525,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2554), [anon_sym_PLUS_PLUS] = ACTIONS(2552), [anon_sym_DASH_DASH] = ACTIONS(2552), + [anon_sym_DQUOTE] = ACTIONS(2552), + [anon_sym_SQUOTE] = ACTIONS(2552), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2552), [sym_number] = ACTIONS(2552), @@ -110594,8 +110594,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2558), [anon_sym_LBRACK] = ACTIONS(2556), [sym_glimmer_opening_tag] = ACTIONS(2556), - [anon_sym_DQUOTE] = ACTIONS(2556), - [anon_sym_SQUOTE] = ACTIONS(2556), [anon_sym_class] = ACTIONS(2558), [anon_sym_async] = ACTIONS(2558), [anon_sym_function] = ACTIONS(2558), @@ -110610,6 +110608,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2558), [anon_sym_PLUS_PLUS] = ACTIONS(2556), [anon_sym_DASH_DASH] = ACTIONS(2556), + [anon_sym_DQUOTE] = ACTIONS(2556), + [anon_sym_SQUOTE] = ACTIONS(2556), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2556), [sym_number] = ACTIONS(2556), @@ -110677,8 +110677,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2546), [anon_sym_LBRACK] = ACTIONS(2544), [sym_glimmer_opening_tag] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), [anon_sym_class] = ACTIONS(2546), [anon_sym_async] = ACTIONS(2546), [anon_sym_function] = ACTIONS(2546), @@ -110693,6 +110691,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2546), [anon_sym_PLUS_PLUS] = ACTIONS(2544), [anon_sym_DASH_DASH] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2544), + [anon_sym_SQUOTE] = ACTIONS(2544), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2544), [sym_number] = ACTIONS(2544), @@ -110726,43 +110726,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [814] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4592), - [sym_optional_tuple_parameter] = STATE(4592), - [sym_optional_type] = STATE(4592), - [sym_rest_type] = STATE(4592), - [sym__tuple_type_member] = STATE(4592), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_rest_pattern] = STATE(5271), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(4589), + [sym_optional_tuple_parameter] = STATE(4589), + [sym_optional_type] = STATE(4589), + [sym_rest_type] = STATE(4589), + [sym__tuple_type_member] = STATE(4589), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(2560), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -110773,8 +110773,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(2564), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), [anon_sym_AMP] = ACTIONS(610), @@ -110783,6 +110781,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -110843,8 +110843,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2546), [anon_sym_LBRACK] = ACTIONS(2544), [sym_glimmer_opening_tag] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), [anon_sym_class] = ACTIONS(2546), [anon_sym_async] = ACTIONS(2546), [anon_sym_function] = ACTIONS(2546), @@ -110859,6 +110857,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2546), [anon_sym_PLUS_PLUS] = ACTIONS(2544), [anon_sym_DASH_DASH] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2544), + [anon_sym_SQUOTE] = ACTIONS(2544), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2544), [sym_number] = ACTIONS(2544), @@ -110926,8 +110926,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2574), [anon_sym_LBRACK] = ACTIONS(2572), [sym_glimmer_opening_tag] = ACTIONS(2572), - [anon_sym_DQUOTE] = ACTIONS(2572), - [anon_sym_SQUOTE] = ACTIONS(2572), [anon_sym_class] = ACTIONS(2574), [anon_sym_async] = ACTIONS(2574), [anon_sym_function] = ACTIONS(2574), @@ -110942,6 +110940,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2574), [anon_sym_PLUS_PLUS] = ACTIONS(2572), [anon_sym_DASH_DASH] = ACTIONS(2572), + [anon_sym_DQUOTE] = ACTIONS(2572), + [anon_sym_SQUOTE] = ACTIONS(2572), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2572), [sym_number] = ACTIONS(2572), @@ -111009,8 +111009,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2546), [anon_sym_LBRACK] = ACTIONS(2544), [sym_glimmer_opening_tag] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), [anon_sym_class] = ACTIONS(2546), [anon_sym_async] = ACTIONS(2546), [anon_sym_function] = ACTIONS(2546), @@ -111025,6 +111023,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2546), [anon_sym_PLUS_PLUS] = ACTIONS(2544), [anon_sym_DASH_DASH] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2544), + [anon_sym_SQUOTE] = ACTIONS(2544), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2544), [sym_number] = ACTIONS(2544), @@ -111092,8 +111092,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2578), [anon_sym_LBRACK] = ACTIONS(2576), [sym_glimmer_opening_tag] = ACTIONS(2576), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2576), [anon_sym_class] = ACTIONS(2578), [anon_sym_async] = ACTIONS(2578), [anon_sym_function] = ACTIONS(2578), @@ -111108,6 +111106,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2578), [anon_sym_PLUS_PLUS] = ACTIONS(2576), [anon_sym_DASH_DASH] = ACTIONS(2576), + [anon_sym_DQUOTE] = ACTIONS(2576), + [anon_sym_SQUOTE] = ACTIONS(2576), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2576), [sym_number] = ACTIONS(2576), @@ -111175,8 +111175,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2582), [anon_sym_LBRACK] = ACTIONS(2580), [sym_glimmer_opening_tag] = ACTIONS(2580), - [anon_sym_DQUOTE] = ACTIONS(2580), - [anon_sym_SQUOTE] = ACTIONS(2580), [anon_sym_class] = ACTIONS(2582), [anon_sym_async] = ACTIONS(2582), [anon_sym_function] = ACTIONS(2582), @@ -111191,6 +111189,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2582), [anon_sym_PLUS_PLUS] = ACTIONS(2580), [anon_sym_DASH_DASH] = ACTIONS(2580), + [anon_sym_DQUOTE] = ACTIONS(2580), + [anon_sym_SQUOTE] = ACTIONS(2580), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2580), [sym_number] = ACTIONS(2580), @@ -111258,8 +111258,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2586), [anon_sym_LBRACK] = ACTIONS(2584), [sym_glimmer_opening_tag] = ACTIONS(2584), - [anon_sym_DQUOTE] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2584), [anon_sym_class] = ACTIONS(2586), [anon_sym_async] = ACTIONS(2586), [anon_sym_function] = ACTIONS(2586), @@ -111274,6 +111272,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2586), [anon_sym_PLUS_PLUS] = ACTIONS(2584), [anon_sym_DASH_DASH] = ACTIONS(2584), + [anon_sym_DQUOTE] = ACTIONS(2584), + [anon_sym_SQUOTE] = ACTIONS(2584), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2584), [sym_number] = ACTIONS(2584), @@ -111341,8 +111341,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2590), [anon_sym_LBRACK] = ACTIONS(2588), [sym_glimmer_opening_tag] = ACTIONS(2588), - [anon_sym_DQUOTE] = ACTIONS(2588), - [anon_sym_SQUOTE] = ACTIONS(2588), [anon_sym_class] = ACTIONS(2590), [anon_sym_async] = ACTIONS(2590), [anon_sym_function] = ACTIONS(2590), @@ -111357,6 +111355,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2590), [anon_sym_PLUS_PLUS] = ACTIONS(2588), [anon_sym_DASH_DASH] = ACTIONS(2588), + [anon_sym_DQUOTE] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(2588), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2588), [sym_number] = ACTIONS(2588), @@ -111424,8 +111424,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2594), [anon_sym_LBRACK] = ACTIONS(2592), [sym_glimmer_opening_tag] = ACTIONS(2592), - [anon_sym_DQUOTE] = ACTIONS(2592), - [anon_sym_SQUOTE] = ACTIONS(2592), [anon_sym_class] = ACTIONS(2594), [anon_sym_async] = ACTIONS(2594), [anon_sym_function] = ACTIONS(2594), @@ -111440,6 +111438,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2594), [anon_sym_PLUS_PLUS] = ACTIONS(2592), [anon_sym_DASH_DASH] = ACTIONS(2592), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2592), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2592), [sym_number] = ACTIONS(2592), @@ -111473,6 +111473,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [823] = { + [ts_builtin_sym_end] = ACTIONS(2596), + [sym_identifier] = ACTIONS(2598), + [anon_sym_export] = ACTIONS(2598), + [anon_sym_default] = ACTIONS(2598), + [anon_sym_type] = ACTIONS(2598), + [anon_sym_namespace] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_RBRACE] = ACTIONS(2596), + [anon_sym_typeof] = ACTIONS(2598), + [anon_sym_import] = ACTIONS(2598), + [anon_sym_with] = ACTIONS(2598), + [anon_sym_var] = ACTIONS(2598), + [anon_sym_let] = ACTIONS(2598), + [anon_sym_const] = ACTIONS(2598), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_else] = ACTIONS(2598), + [anon_sym_if] = ACTIONS(2598), + [anon_sym_switch] = ACTIONS(2598), + [anon_sym_for] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_await] = ACTIONS(2598), + [anon_sym_while] = ACTIONS(2598), + [anon_sym_do] = ACTIONS(2598), + [anon_sym_try] = ACTIONS(2598), + [anon_sym_break] = ACTIONS(2598), + [anon_sym_continue] = ACTIONS(2598), + [anon_sym_debugger] = ACTIONS(2598), + [anon_sym_return] = ACTIONS(2598), + [anon_sym_throw] = ACTIONS(2598), + [anon_sym_case] = ACTIONS(2598), + [anon_sym_yield] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(2596), + [sym_glimmer_opening_tag] = ACTIONS(2596), + [anon_sym_class] = ACTIONS(2598), + [anon_sym_async] = ACTIONS(2598), + [anon_sym_function] = ACTIONS(2598), + [anon_sym_new] = ACTIONS(2598), + [anon_sym_using] = ACTIONS(2598), + [anon_sym_PLUS] = ACTIONS(2598), + [anon_sym_DASH] = ACTIONS(2598), + [anon_sym_SLASH] = ACTIONS(2598), + [anon_sym_LT] = ACTIONS(2598), + [anon_sym_TILDE] = ACTIONS(2596), + [anon_sym_void] = ACTIONS(2598), + [anon_sym_delete] = ACTIONS(2598), + [anon_sym_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2596), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(2596), + [sym_this] = ACTIONS(2598), + [sym_super] = ACTIONS(2598), + [sym_true] = ACTIONS(2598), + [sym_false] = ACTIONS(2598), + [sym_null] = ACTIONS(2598), + [sym_undefined] = ACTIONS(2598), + [anon_sym_AT] = ACTIONS(2596), + [anon_sym_static] = ACTIONS(2598), + [anon_sym_readonly] = ACTIONS(2598), + [anon_sym_get] = ACTIONS(2598), + [anon_sym_set] = ACTIONS(2598), + [anon_sym_declare] = ACTIONS(2598), + [anon_sym_public] = ACTIONS(2598), + [anon_sym_private] = ACTIONS(2598), + [anon_sym_protected] = ACTIONS(2598), + [anon_sym_override] = ACTIONS(2598), + [anon_sym_module] = ACTIONS(2598), + [anon_sym_any] = ACTIONS(2598), + [anon_sym_number] = ACTIONS(2598), + [anon_sym_boolean] = ACTIONS(2598), + [anon_sym_string] = ACTIONS(2598), + [anon_sym_symbol] = ACTIONS(2598), + [anon_sym_object] = ACTIONS(2598), + [anon_sym_abstract] = ACTIONS(2598), + [anon_sym_interface] = ACTIONS(2598), + [anon_sym_enum] = ACTIONS(2598), + [sym_html_comment] = ACTIONS(5), + }, + [824] = { [ts_builtin_sym_end] = ACTIONS(2544), [sym_identifier] = ACTIONS(2546), [anon_sym_export] = ACTIONS(2546), @@ -111507,8 +111590,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2546), [anon_sym_LBRACK] = ACTIONS(2544), [sym_glimmer_opening_tag] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), [anon_sym_class] = ACTIONS(2546), [anon_sym_async] = ACTIONS(2546), [anon_sym_function] = ACTIONS(2546), @@ -111523,6 +111604,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2546), [anon_sym_PLUS_PLUS] = ACTIONS(2544), [anon_sym_DASH_DASH] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2544), + [anon_sym_SQUOTE] = ACTIONS(2544), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2544), [sym_number] = ACTIONS(2544), @@ -111555,170 +111638,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2546), [sym_html_comment] = ACTIONS(5), }, - [824] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_default] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_typeof] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_switch] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_debugger] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_throw] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_yield] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [sym_glimmer_opening_tag] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_function] = ACTIONS(1887), - [anon_sym_new] = ACTIONS(1887), - [anon_sym_using] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_SLASH] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_void] = ACTIONS(1887), - [anon_sym_delete] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1885), - [sym_number] = ACTIONS(1885), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(1887), - [sym_super] = ACTIONS(1887), - [sym_true] = ACTIONS(1887), - [sym_false] = ACTIONS(1887), - [sym_null] = ACTIONS(1887), - [sym_undefined] = ACTIONS(1887), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_readonly] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1887), - [anon_sym_set] = ACTIONS(1887), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_interface] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), - [sym_html_comment] = ACTIONS(5), - }, [825] = { - [ts_builtin_sym_end] = ACTIONS(2596), - [sym_identifier] = ACTIONS(2598), - [anon_sym_export] = ACTIONS(2598), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_type] = ACTIONS(2598), - [anon_sym_namespace] = ACTIONS(2598), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_typeof] = ACTIONS(2598), - [anon_sym_import] = ACTIONS(2598), - [anon_sym_with] = ACTIONS(2598), - [anon_sym_var] = ACTIONS(2598), - [anon_sym_let] = ACTIONS(2598), - [anon_sym_const] = ACTIONS(2598), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_else] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2598), - [anon_sym_switch] = ACTIONS(2598), - [anon_sym_for] = ACTIONS(2598), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_await] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2598), - [anon_sym_do] = ACTIONS(2598), - [anon_sym_try] = ACTIONS(2598), - [anon_sym_break] = ACTIONS(2598), - [anon_sym_continue] = ACTIONS(2598), - [anon_sym_debugger] = ACTIONS(2598), - [anon_sym_return] = ACTIONS(2598), - [anon_sym_throw] = ACTIONS(2598), - [anon_sym_case] = ACTIONS(2598), - [anon_sym_yield] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(2596), - [sym_glimmer_opening_tag] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_class] = ACTIONS(2598), - [anon_sym_async] = ACTIONS(2598), - [anon_sym_function] = ACTIONS(2598), - [anon_sym_new] = ACTIONS(2598), - [anon_sym_using] = ACTIONS(2598), - [anon_sym_PLUS] = ACTIONS(2598), - [anon_sym_DASH] = ACTIONS(2598), - [anon_sym_SLASH] = ACTIONS(2598), - [anon_sym_LT] = ACTIONS(2598), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_void] = ACTIONS(2598), - [anon_sym_delete] = ACTIONS(2598), - [anon_sym_PLUS_PLUS] = ACTIONS(2596), - [anon_sym_DASH_DASH] = ACTIONS(2596), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2596), - [sym_number] = ACTIONS(2596), - [sym_private_property_identifier] = ACTIONS(2596), - [sym_this] = ACTIONS(2598), - [sym_super] = ACTIONS(2598), - [sym_true] = ACTIONS(2598), - [sym_false] = ACTIONS(2598), - [sym_null] = ACTIONS(2598), - [sym_undefined] = ACTIONS(2598), - [anon_sym_AT] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2598), - [anon_sym_readonly] = ACTIONS(2598), - [anon_sym_get] = ACTIONS(2598), - [anon_sym_set] = ACTIONS(2598), - [anon_sym_declare] = ACTIONS(2598), - [anon_sym_public] = ACTIONS(2598), - [anon_sym_private] = ACTIONS(2598), - [anon_sym_protected] = ACTIONS(2598), - [anon_sym_override] = ACTIONS(2598), - [anon_sym_module] = ACTIONS(2598), - [anon_sym_any] = ACTIONS(2598), - [anon_sym_number] = ACTIONS(2598), - [anon_sym_boolean] = ACTIONS(2598), - [anon_sym_string] = ACTIONS(2598), - [anon_sym_symbol] = ACTIONS(2598), - [anon_sym_object] = ACTIONS(2598), - [anon_sym_abstract] = ACTIONS(2598), - [anon_sym_interface] = ACTIONS(2598), - [anon_sym_enum] = ACTIONS(2598), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_export] = ACTIONS(1881), + [anon_sym_default] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_namespace] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_typeof] = ACTIONS(1881), + [anon_sym_import] = ACTIONS(1881), + [anon_sym_with] = ACTIONS(1881), + [anon_sym_var] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_BANG] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_switch] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1881), + [anon_sym_do] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_debugger] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_throw] = ACTIONS(1881), + [anon_sym_case] = ACTIONS(1881), + [anon_sym_yield] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1879), + [sym_glimmer_opening_tag] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1881), + [anon_sym_async] = ACTIONS(1881), + [anon_sym_function] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1881), + [anon_sym_using] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_SLASH] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_void] = ACTIONS(1881), + [anon_sym_delete] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1879), + [anon_sym_SQUOTE] = ACTIONS(1879), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1879), + [sym_number] = ACTIONS(1879), + [sym_private_property_identifier] = ACTIONS(1879), + [sym_this] = ACTIONS(1881), + [sym_super] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_null] = ACTIONS(1881), + [sym_undefined] = ACTIONS(1881), + [anon_sym_AT] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1881), + [anon_sym_readonly] = ACTIONS(1881), + [anon_sym_get] = ACTIONS(1881), + [anon_sym_set] = ACTIONS(1881), + [anon_sym_declare] = ACTIONS(1881), + [anon_sym_public] = ACTIONS(1881), + [anon_sym_private] = ACTIONS(1881), + [anon_sym_protected] = ACTIONS(1881), + [anon_sym_override] = ACTIONS(1881), + [anon_sym_module] = ACTIONS(1881), + [anon_sym_any] = ACTIONS(1881), + [anon_sym_number] = ACTIONS(1881), + [anon_sym_boolean] = ACTIONS(1881), + [anon_sym_string] = ACTIONS(1881), + [anon_sym_symbol] = ACTIONS(1881), + [anon_sym_object] = ACTIONS(1881), + [anon_sym_abstract] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), [sym_html_comment] = ACTIONS(5), }, [826] = { @@ -111756,8 +111756,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2602), [anon_sym_LBRACK] = ACTIONS(2600), [sym_glimmer_opening_tag] = ACTIONS(2600), - [anon_sym_DQUOTE] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2600), [anon_sym_class] = ACTIONS(2602), [anon_sym_async] = ACTIONS(2602), [anon_sym_function] = ACTIONS(2602), @@ -111772,6 +111770,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2602), [anon_sym_PLUS_PLUS] = ACTIONS(2600), [anon_sym_DASH_DASH] = ACTIONS(2600), + [anon_sym_DQUOTE] = ACTIONS(2600), + [anon_sym_SQUOTE] = ACTIONS(2600), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2600), [sym_number] = ACTIONS(2600), @@ -111839,8 +111839,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2606), [anon_sym_LBRACK] = ACTIONS(2604), [sym_glimmer_opening_tag] = ACTIONS(2604), - [anon_sym_DQUOTE] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2604), [anon_sym_class] = ACTIONS(2606), [anon_sym_async] = ACTIONS(2606), [anon_sym_function] = ACTIONS(2606), @@ -111855,6 +111853,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2606), [anon_sym_PLUS_PLUS] = ACTIONS(2604), [anon_sym_DASH_DASH] = ACTIONS(2604), + [anon_sym_DQUOTE] = ACTIONS(2604), + [anon_sym_SQUOTE] = ACTIONS(2604), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2604), [sym_number] = ACTIONS(2604), @@ -111888,89 +111888,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [828] = { - [ts_builtin_sym_end] = ACTIONS(2572), - [sym_identifier] = ACTIONS(2574), - [anon_sym_export] = ACTIONS(2574), - [anon_sym_default] = ACTIONS(2574), - [anon_sym_type] = ACTIONS(2574), - [anon_sym_namespace] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(2574), - [anon_sym_import] = ACTIONS(2574), - [anon_sym_with] = ACTIONS(2574), - [anon_sym_var] = ACTIONS(2574), - [anon_sym_let] = ACTIONS(2574), - [anon_sym_const] = ACTIONS(2574), - [anon_sym_BANG] = ACTIONS(2572), - [anon_sym_else] = ACTIONS(2574), - [anon_sym_if] = ACTIONS(2574), - [anon_sym_switch] = ACTIONS(2574), - [anon_sym_for] = ACTIONS(2574), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_await] = ACTIONS(2574), - [anon_sym_while] = ACTIONS(2574), - [anon_sym_do] = ACTIONS(2574), - [anon_sym_try] = ACTIONS(2574), - [anon_sym_break] = ACTIONS(2574), - [anon_sym_continue] = ACTIONS(2574), - [anon_sym_debugger] = ACTIONS(2574), - [anon_sym_return] = ACTIONS(2574), - [anon_sym_throw] = ACTIONS(2574), - [anon_sym_case] = ACTIONS(2574), - [anon_sym_yield] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2572), - [sym_glimmer_opening_tag] = ACTIONS(2572), - [anon_sym_DQUOTE] = ACTIONS(2572), - [anon_sym_SQUOTE] = ACTIONS(2572), - [anon_sym_class] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2574), - [anon_sym_function] = ACTIONS(2574), - [anon_sym_new] = ACTIONS(2574), - [anon_sym_using] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_TILDE] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_delete] = ACTIONS(2574), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2572), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2572), - [sym_number] = ACTIONS(2572), - [sym_private_property_identifier] = ACTIONS(2572), - [sym_this] = ACTIONS(2574), - [sym_super] = ACTIONS(2574), - [sym_true] = ACTIONS(2574), - [sym_false] = ACTIONS(2574), - [sym_null] = ACTIONS(2574), - [sym_undefined] = ACTIONS(2574), - [anon_sym_AT] = ACTIONS(2572), - [anon_sym_static] = ACTIONS(2574), - [anon_sym_readonly] = ACTIONS(2574), - [anon_sym_get] = ACTIONS(2574), - [anon_sym_set] = ACTIONS(2574), - [anon_sym_declare] = ACTIONS(2574), - [anon_sym_public] = ACTIONS(2574), - [anon_sym_private] = ACTIONS(2574), - [anon_sym_protected] = ACTIONS(2574), - [anon_sym_override] = ACTIONS(2574), - [anon_sym_module] = ACTIONS(2574), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_object] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2574), - [anon_sym_interface] = ACTIONS(2574), - [anon_sym_enum] = ACTIONS(2574), - [sym_html_comment] = ACTIONS(5), - }, - [829] = { [ts_builtin_sym_end] = ACTIONS(2608), [sym_identifier] = ACTIONS(2610), [anon_sym_export] = ACTIONS(2610), @@ -112005,8 +111922,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2610), [anon_sym_LBRACK] = ACTIONS(2608), [sym_glimmer_opening_tag] = ACTIONS(2608), - [anon_sym_DQUOTE] = ACTIONS(2608), - [anon_sym_SQUOTE] = ACTIONS(2608), [anon_sym_class] = ACTIONS(2610), [anon_sym_async] = ACTIONS(2610), [anon_sym_function] = ACTIONS(2610), @@ -112021,6 +111936,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2610), [anon_sym_PLUS_PLUS] = ACTIONS(2608), [anon_sym_DASH_DASH] = ACTIONS(2608), + [anon_sym_DQUOTE] = ACTIONS(2608), + [anon_sym_SQUOTE] = ACTIONS(2608), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2608), [sym_number] = ACTIONS(2608), @@ -112053,6 +111970,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2610), [sym_html_comment] = ACTIONS(5), }, + [829] = { + [ts_builtin_sym_end] = ACTIONS(2572), + [sym_identifier] = ACTIONS(2574), + [anon_sym_export] = ACTIONS(2574), + [anon_sym_default] = ACTIONS(2574), + [anon_sym_type] = ACTIONS(2574), + [anon_sym_namespace] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_RBRACE] = ACTIONS(2572), + [anon_sym_typeof] = ACTIONS(2574), + [anon_sym_import] = ACTIONS(2574), + [anon_sym_with] = ACTIONS(2574), + [anon_sym_var] = ACTIONS(2574), + [anon_sym_let] = ACTIONS(2574), + [anon_sym_const] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2572), + [anon_sym_else] = ACTIONS(2574), + [anon_sym_if] = ACTIONS(2574), + [anon_sym_switch] = ACTIONS(2574), + [anon_sym_for] = ACTIONS(2574), + [anon_sym_LPAREN] = ACTIONS(2572), + [anon_sym_SEMI] = ACTIONS(2572), + [anon_sym_await] = ACTIONS(2574), + [anon_sym_while] = ACTIONS(2574), + [anon_sym_do] = ACTIONS(2574), + [anon_sym_try] = ACTIONS(2574), + [anon_sym_break] = ACTIONS(2574), + [anon_sym_continue] = ACTIONS(2574), + [anon_sym_debugger] = ACTIONS(2574), + [anon_sym_return] = ACTIONS(2574), + [anon_sym_throw] = ACTIONS(2574), + [anon_sym_case] = ACTIONS(2574), + [anon_sym_yield] = ACTIONS(2574), + [anon_sym_LBRACK] = ACTIONS(2572), + [sym_glimmer_opening_tag] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2574), + [anon_sym_async] = ACTIONS(2574), + [anon_sym_function] = ACTIONS(2574), + [anon_sym_new] = ACTIONS(2574), + [anon_sym_using] = ACTIONS(2574), + [anon_sym_PLUS] = ACTIONS(2574), + [anon_sym_DASH] = ACTIONS(2574), + [anon_sym_SLASH] = ACTIONS(2574), + [anon_sym_LT] = ACTIONS(2574), + [anon_sym_TILDE] = ACTIONS(2572), + [anon_sym_void] = ACTIONS(2574), + [anon_sym_delete] = ACTIONS(2574), + [anon_sym_PLUS_PLUS] = ACTIONS(2572), + [anon_sym_DASH_DASH] = ACTIONS(2572), + [anon_sym_DQUOTE] = ACTIONS(2572), + [anon_sym_SQUOTE] = ACTIONS(2572), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2572), + [sym_number] = ACTIONS(2572), + [sym_private_property_identifier] = ACTIONS(2572), + [sym_this] = ACTIONS(2574), + [sym_super] = ACTIONS(2574), + [sym_true] = ACTIONS(2574), + [sym_false] = ACTIONS(2574), + [sym_null] = ACTIONS(2574), + [sym_undefined] = ACTIONS(2574), + [anon_sym_AT] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2574), + [anon_sym_readonly] = ACTIONS(2574), + [anon_sym_get] = ACTIONS(2574), + [anon_sym_set] = ACTIONS(2574), + [anon_sym_declare] = ACTIONS(2574), + [anon_sym_public] = ACTIONS(2574), + [anon_sym_private] = ACTIONS(2574), + [anon_sym_protected] = ACTIONS(2574), + [anon_sym_override] = ACTIONS(2574), + [anon_sym_module] = ACTIONS(2574), + [anon_sym_any] = ACTIONS(2574), + [anon_sym_number] = ACTIONS(2574), + [anon_sym_boolean] = ACTIONS(2574), + [anon_sym_string] = ACTIONS(2574), + [anon_sym_symbol] = ACTIONS(2574), + [anon_sym_object] = ACTIONS(2574), + [anon_sym_abstract] = ACTIONS(2574), + [anon_sym_interface] = ACTIONS(2574), + [anon_sym_enum] = ACTIONS(2574), + [sym_html_comment] = ACTIONS(5), + }, [830] = { [ts_builtin_sym_end] = ACTIONS(2612), [sym_identifier] = ACTIONS(2614), @@ -112088,8 +112088,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2614), [anon_sym_LBRACK] = ACTIONS(2612), [sym_glimmer_opening_tag] = ACTIONS(2612), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2612), [anon_sym_class] = ACTIONS(2614), [anon_sym_async] = ACTIONS(2614), [anon_sym_function] = ACTIONS(2614), @@ -112104,6 +112102,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2614), [anon_sym_PLUS_PLUS] = ACTIONS(2612), [anon_sym_DASH_DASH] = ACTIONS(2612), + [anon_sym_DQUOTE] = ACTIONS(2612), + [anon_sym_SQUOTE] = ACTIONS(2612), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2612), [sym_number] = ACTIONS(2612), @@ -112171,8 +112171,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2618), [anon_sym_LBRACK] = ACTIONS(2616), [sym_glimmer_opening_tag] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), [anon_sym_class] = ACTIONS(2618), [anon_sym_async] = ACTIONS(2618), [anon_sym_function] = ACTIONS(2618), @@ -112187,6 +112185,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2618), [anon_sym_PLUS_PLUS] = ACTIONS(2616), [anon_sym_DASH_DASH] = ACTIONS(2616), + [anon_sym_DQUOTE] = ACTIONS(2616), + [anon_sym_SQUOTE] = ACTIONS(2616), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2616), [sym_number] = ACTIONS(2616), @@ -112254,8 +112254,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2622), [anon_sym_LBRACK] = ACTIONS(2620), [sym_glimmer_opening_tag] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_SQUOTE] = ACTIONS(2620), [anon_sym_class] = ACTIONS(2622), [anon_sym_async] = ACTIONS(2622), [anon_sym_function] = ACTIONS(2622), @@ -112270,6 +112268,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2622), [anon_sym_PLUS_PLUS] = ACTIONS(2620), [anon_sym_DASH_DASH] = ACTIONS(2620), + [anon_sym_DQUOTE] = ACTIONS(2620), + [anon_sym_SQUOTE] = ACTIONS(2620), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2620), [sym_number] = ACTIONS(2620), @@ -112337,8 +112337,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2626), [anon_sym_LBRACK] = ACTIONS(2624), [sym_glimmer_opening_tag] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), [anon_sym_class] = ACTIONS(2626), [anon_sym_async] = ACTIONS(2626), [anon_sym_function] = ACTIONS(2626), @@ -112353,6 +112351,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2626), [anon_sym_PLUS_PLUS] = ACTIONS(2624), [anon_sym_DASH_DASH] = ACTIONS(2624), + [anon_sym_DQUOTE] = ACTIONS(2624), + [anon_sym_SQUOTE] = ACTIONS(2624), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2624), [sym_number] = ACTIONS(2624), @@ -112386,86 +112386,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [834] = { - [ts_builtin_sym_end] = ACTIONS(2624), - [sym_identifier] = ACTIONS(2626), - [anon_sym_export] = ACTIONS(2626), - [anon_sym_default] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_namespace] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_RBRACE] = ACTIONS(2624), - [anon_sym_typeof] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_const] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2624), - [anon_sym_else] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_switch] = ACTIONS(2626), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_await] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_break] = ACTIONS(2626), - [anon_sym_continue] = ACTIONS(2626), - [anon_sym_debugger] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_throw] = ACTIONS(2626), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2624), - [sym_glimmer_opening_tag] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_async] = ACTIONS(2626), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_using] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_SLASH] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2624), - [anon_sym_void] = ACTIONS(2626), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2624), - [anon_sym_DASH_DASH] = ACTIONS(2624), + [ts_builtin_sym_end] = ACTIONS(2628), + [sym_identifier] = ACTIONS(2630), + [anon_sym_export] = ACTIONS(2630), + [anon_sym_default] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2630), + [anon_sym_namespace] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_RBRACE] = ACTIONS(2628), + [anon_sym_typeof] = ACTIONS(2630), + [anon_sym_import] = ACTIONS(2630), + [anon_sym_with] = ACTIONS(2630), + [anon_sym_var] = ACTIONS(2630), + [anon_sym_let] = ACTIONS(2630), + [anon_sym_const] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2628), + [anon_sym_else] = ACTIONS(2630), + [anon_sym_if] = ACTIONS(2630), + [anon_sym_switch] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2630), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2628), + [anon_sym_await] = ACTIONS(2630), + [anon_sym_while] = ACTIONS(2630), + [anon_sym_do] = ACTIONS(2630), + [anon_sym_try] = ACTIONS(2630), + [anon_sym_break] = ACTIONS(2630), + [anon_sym_continue] = ACTIONS(2630), + [anon_sym_debugger] = ACTIONS(2630), + [anon_sym_return] = ACTIONS(2630), + [anon_sym_throw] = ACTIONS(2630), + [anon_sym_case] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2630), + [anon_sym_LBRACK] = ACTIONS(2628), + [sym_glimmer_opening_tag] = ACTIONS(2628), + [anon_sym_class] = ACTIONS(2630), + [anon_sym_async] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(2630), + [anon_sym_new] = ACTIONS(2630), + [anon_sym_using] = ACTIONS(2630), + [anon_sym_PLUS] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2630), + [anon_sym_SLASH] = ACTIONS(2630), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_TILDE] = ACTIONS(2628), + [anon_sym_void] = ACTIONS(2630), + [anon_sym_delete] = ACTIONS(2630), + [anon_sym_PLUS_PLUS] = ACTIONS(2628), + [anon_sym_DASH_DASH] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_SQUOTE] = ACTIONS(2628), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2624), - [sym_number] = ACTIONS(2624), - [sym_private_property_identifier] = ACTIONS(2624), - [sym_this] = ACTIONS(2626), - [sym_super] = ACTIONS(2626), - [sym_true] = ACTIONS(2626), - [sym_false] = ACTIONS(2626), - [sym_null] = ACTIONS(2626), - [sym_undefined] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2624), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_readonly] = ACTIONS(2626), - [anon_sym_get] = ACTIONS(2626), - [anon_sym_set] = ACTIONS(2626), - [anon_sym_declare] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_protected] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_module] = ACTIONS(2626), - [anon_sym_any] = ACTIONS(2626), - [anon_sym_number] = ACTIONS(2626), - [anon_sym_boolean] = ACTIONS(2626), - [anon_sym_string] = ACTIONS(2626), - [anon_sym_symbol] = ACTIONS(2626), - [anon_sym_object] = ACTIONS(2626), - [anon_sym_abstract] = ACTIONS(2626), - [anon_sym_interface] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), + [anon_sym_BQUOTE] = ACTIONS(2628), + [sym_number] = ACTIONS(2628), + [sym_private_property_identifier] = ACTIONS(2628), + [sym_this] = ACTIONS(2630), + [sym_super] = ACTIONS(2630), + [sym_true] = ACTIONS(2630), + [sym_false] = ACTIONS(2630), + [sym_null] = ACTIONS(2630), + [sym_undefined] = ACTIONS(2630), + [anon_sym_AT] = ACTIONS(2628), + [anon_sym_static] = ACTIONS(2630), + [anon_sym_readonly] = ACTIONS(2630), + [anon_sym_get] = ACTIONS(2630), + [anon_sym_set] = ACTIONS(2630), + [anon_sym_declare] = ACTIONS(2630), + [anon_sym_public] = ACTIONS(2630), + [anon_sym_private] = ACTIONS(2630), + [anon_sym_protected] = ACTIONS(2630), + [anon_sym_override] = ACTIONS(2630), + [anon_sym_module] = ACTIONS(2630), + [anon_sym_any] = ACTIONS(2630), + [anon_sym_number] = ACTIONS(2630), + [anon_sym_boolean] = ACTIONS(2630), + [anon_sym_string] = ACTIONS(2630), + [anon_sym_symbol] = ACTIONS(2630), + [anon_sym_object] = ACTIONS(2630), + [anon_sym_abstract] = ACTIONS(2630), + [anon_sym_interface] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2630), [sym_html_comment] = ACTIONS(5), }, [835] = { @@ -112503,8 +112503,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2630), [anon_sym_LBRACK] = ACTIONS(2628), [sym_glimmer_opening_tag] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), [anon_sym_class] = ACTIONS(2630), [anon_sym_async] = ACTIONS(2630), [anon_sym_function] = ACTIONS(2630), @@ -112519,6 +112517,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2630), [anon_sym_PLUS_PLUS] = ACTIONS(2628), [anon_sym_DASH_DASH] = ACTIONS(2628), + [anon_sym_DQUOTE] = ACTIONS(2628), + [anon_sym_SQUOTE] = ACTIONS(2628), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2628), [sym_number] = ACTIONS(2628), @@ -112552,89 +112552,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [836] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1887), - [anon_sym_default] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_namespace] = ACTIONS(1887), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_typeof] = ACTIONS(1887), - [anon_sym_import] = ACTIONS(1887), - [anon_sym_with] = ACTIONS(1887), - [anon_sym_var] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_else] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_switch] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_do] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_debugger] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_throw] = ACTIONS(1887), - [anon_sym_case] = ACTIONS(1887), - [anon_sym_yield] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(1885), - [sym_glimmer_opening_tag] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1885), - [anon_sym_class] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_function] = ACTIONS(1887), - [anon_sym_new] = ACTIONS(1887), - [anon_sym_using] = ACTIONS(1887), - [anon_sym_PLUS] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1887), - [anon_sym_SLASH] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1887), - [anon_sym_TILDE] = ACTIONS(1885), - [anon_sym_void] = ACTIONS(1887), - [anon_sym_delete] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1885), - [anon_sym_DASH_DASH] = ACTIONS(1885), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1885), - [sym_number] = ACTIONS(1885), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(1887), - [sym_super] = ACTIONS(1887), - [sym_true] = ACTIONS(1887), - [sym_false] = ACTIONS(1887), - [sym_null] = ACTIONS(1887), - [sym_undefined] = ACTIONS(1887), - [anon_sym_AT] = ACTIONS(1885), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_readonly] = ACTIONS(1887), - [anon_sym_get] = ACTIONS(1887), - [anon_sym_set] = ACTIONS(1887), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1887), - [anon_sym_private] = ACTIONS(1887), - [anon_sym_protected] = ACTIONS(1887), - [anon_sym_override] = ACTIONS(1887), - [anon_sym_module] = ACTIONS(1887), - [anon_sym_any] = ACTIONS(1887), - [anon_sym_number] = ACTIONS(1887), - [anon_sym_boolean] = ACTIONS(1887), - [anon_sym_string] = ACTIONS(1887), - [anon_sym_symbol] = ACTIONS(1887), - [anon_sym_object] = ACTIONS(1887), - [anon_sym_abstract] = ACTIONS(1887), - [anon_sym_interface] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), - [sym_html_comment] = ACTIONS(5), - }, - [837] = { [ts_builtin_sym_end] = ACTIONS(2632), [sym_identifier] = ACTIONS(2634), [anon_sym_export] = ACTIONS(2634), @@ -112669,8 +112586,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2634), [anon_sym_LBRACK] = ACTIONS(2632), [sym_glimmer_opening_tag] = ACTIONS(2632), - [anon_sym_DQUOTE] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), [anon_sym_class] = ACTIONS(2634), [anon_sym_async] = ACTIONS(2634), [anon_sym_function] = ACTIONS(2634), @@ -112685,6 +112600,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2634), [anon_sym_PLUS_PLUS] = ACTIONS(2632), [anon_sym_DASH_DASH] = ACTIONS(2632), + [anon_sym_DQUOTE] = ACTIONS(2632), + [anon_sym_SQUOTE] = ACTIONS(2632), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2632), [sym_number] = ACTIONS(2632), @@ -112717,6 +112634,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2634), [sym_html_comment] = ACTIONS(5), }, + [837] = { + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_export] = ACTIONS(1881), + [anon_sym_default] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_namespace] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_typeof] = ACTIONS(1881), + [anon_sym_import] = ACTIONS(1881), + [anon_sym_with] = ACTIONS(1881), + [anon_sym_var] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_BANG] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_switch] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1879), + [anon_sym_await] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1881), + [anon_sym_do] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_debugger] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_throw] = ACTIONS(1881), + [anon_sym_case] = ACTIONS(1881), + [anon_sym_yield] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1879), + [sym_glimmer_opening_tag] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1881), + [anon_sym_async] = ACTIONS(1881), + [anon_sym_function] = ACTIONS(1881), + [anon_sym_new] = ACTIONS(1881), + [anon_sym_using] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_SLASH] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_void] = ACTIONS(1881), + [anon_sym_delete] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1879), + [anon_sym_SQUOTE] = ACTIONS(1879), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1879), + [sym_number] = ACTIONS(1879), + [sym_private_property_identifier] = ACTIONS(1879), + [sym_this] = ACTIONS(1881), + [sym_super] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_null] = ACTIONS(1881), + [sym_undefined] = ACTIONS(1881), + [anon_sym_AT] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1881), + [anon_sym_readonly] = ACTIONS(1881), + [anon_sym_get] = ACTIONS(1881), + [anon_sym_set] = ACTIONS(1881), + [anon_sym_declare] = ACTIONS(1881), + [anon_sym_public] = ACTIONS(1881), + [anon_sym_private] = ACTIONS(1881), + [anon_sym_protected] = ACTIONS(1881), + [anon_sym_override] = ACTIONS(1881), + [anon_sym_module] = ACTIONS(1881), + [anon_sym_any] = ACTIONS(1881), + [anon_sym_number] = ACTIONS(1881), + [anon_sym_boolean] = ACTIONS(1881), + [anon_sym_string] = ACTIONS(1881), + [anon_sym_symbol] = ACTIONS(1881), + [anon_sym_object] = ACTIONS(1881), + [anon_sym_abstract] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [sym_html_comment] = ACTIONS(5), + }, [838] = { [ts_builtin_sym_end] = ACTIONS(2636), [sym_identifier] = ACTIONS(2638), @@ -112752,8 +112752,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2638), [anon_sym_LBRACK] = ACTIONS(2636), [sym_glimmer_opening_tag] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2636), [anon_sym_class] = ACTIONS(2638), [anon_sym_async] = ACTIONS(2638), [anon_sym_function] = ACTIONS(2638), @@ -112768,6 +112766,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2638), [anon_sym_PLUS_PLUS] = ACTIONS(2636), [anon_sym_DASH_DASH] = ACTIONS(2636), + [anon_sym_DQUOTE] = ACTIONS(2636), + [anon_sym_SQUOTE] = ACTIONS(2636), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2636), [sym_number] = ACTIONS(2636), @@ -112835,8 +112835,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2642), [anon_sym_LBRACK] = ACTIONS(2640), [sym_glimmer_opening_tag] = ACTIONS(2640), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2640), [anon_sym_class] = ACTIONS(2642), [anon_sym_async] = ACTIONS(2642), [anon_sym_function] = ACTIONS(2642), @@ -112851,6 +112849,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2642), [anon_sym_PLUS_PLUS] = ACTIONS(2640), [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_DQUOTE] = ACTIONS(2640), + [anon_sym_SQUOTE] = ACTIONS(2640), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2640), [sym_number] = ACTIONS(2640), @@ -112884,55 +112884,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [840] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [ts_builtin_sym_end] = ACTIONS(2644), + [sym_identifier] = ACTIONS(2646), + [anon_sym_export] = ACTIONS(2646), + [anon_sym_default] = ACTIONS(2646), + [anon_sym_type] = ACTIONS(2646), + [anon_sym_namespace] = ACTIONS(2646), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_RBRACE] = ACTIONS(2644), + [anon_sym_typeof] = ACTIONS(2646), + [anon_sym_import] = ACTIONS(2646), + [anon_sym_with] = ACTIONS(2646), + [anon_sym_var] = ACTIONS(2646), + [anon_sym_let] = ACTIONS(2646), + [anon_sym_const] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2644), + [anon_sym_else] = ACTIONS(2646), + [anon_sym_if] = ACTIONS(2646), + [anon_sym_switch] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2646), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_await] = ACTIONS(2646), + [anon_sym_while] = ACTIONS(2646), + [anon_sym_do] = ACTIONS(2646), + [anon_sym_try] = ACTIONS(2646), + [anon_sym_break] = ACTIONS(2646), + [anon_sym_continue] = ACTIONS(2646), + [anon_sym_debugger] = ACTIONS(2646), + [anon_sym_return] = ACTIONS(2646), + [anon_sym_throw] = ACTIONS(2646), + [anon_sym_case] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2646), + [anon_sym_LBRACK] = ACTIONS(2644), + [sym_glimmer_opening_tag] = ACTIONS(2644), + [anon_sym_class] = ACTIONS(2646), + [anon_sym_async] = ACTIONS(2646), + [anon_sym_function] = ACTIONS(2646), + [anon_sym_new] = ACTIONS(2646), + [anon_sym_using] = ACTIONS(2646), + [anon_sym_PLUS] = ACTIONS(2646), + [anon_sym_DASH] = ACTIONS(2646), + [anon_sym_SLASH] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2646), + [anon_sym_TILDE] = ACTIONS(2644), + [anon_sym_void] = ACTIONS(2646), + [anon_sym_delete] = ACTIONS(2646), + [anon_sym_PLUS_PLUS] = ACTIONS(2644), + [anon_sym_DASH_DASH] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2644), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2644), + [sym_number] = ACTIONS(2644), + [sym_private_property_identifier] = ACTIONS(2644), + [sym_this] = ACTIONS(2646), + [sym_super] = ACTIONS(2646), + [sym_true] = ACTIONS(2646), + [sym_false] = ACTIONS(2646), + [sym_null] = ACTIONS(2646), + [sym_undefined] = ACTIONS(2646), + [anon_sym_AT] = ACTIONS(2644), + [anon_sym_static] = ACTIONS(2646), + [anon_sym_readonly] = ACTIONS(2646), + [anon_sym_get] = ACTIONS(2646), + [anon_sym_set] = ACTIONS(2646), + [anon_sym_declare] = ACTIONS(2646), + [anon_sym_public] = ACTIONS(2646), + [anon_sym_private] = ACTIONS(2646), + [anon_sym_protected] = ACTIONS(2646), + [anon_sym_override] = ACTIONS(2646), + [anon_sym_module] = ACTIONS(2646), + [anon_sym_any] = ACTIONS(2646), + [anon_sym_number] = ACTIONS(2646), + [anon_sym_boolean] = ACTIONS(2646), + [anon_sym_string] = ACTIONS(2646), + [anon_sym_symbol] = ACTIONS(2646), + [anon_sym_object] = ACTIONS(2646), + [anon_sym_abstract] = ACTIONS(2646), + [anon_sym_interface] = ACTIONS(2646), + [anon_sym_enum] = ACTIONS(2646), + [sym_html_comment] = ACTIONS(5), + }, + [841] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4527), - [sym_optional_tuple_parameter] = STATE(4527), - [sym_optional_type] = STATE(4527), - [sym_rest_type] = STATE(4527), - [sym__tuple_type_member] = STATE(4527), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_rest_pattern] = STATE(5271), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(4526), + [sym_optional_tuple_parameter] = STATE(4526), + [sym_optional_type] = STATE(4526), + [sym_rest_type] = STATE(4526), + [sym__tuple_type_member] = STATE(4526), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(2560), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_COMMA] = ACTIONS(2644), + [anon_sym_COMMA] = ACTIONS(2648), [anon_sym_typeof] = ACTIONS(1543), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(2646), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_RBRACK] = ACTIONS(2650), [anon_sym_new] = ACTIONS(1613), [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), [anon_sym_AMP] = ACTIONS(610), @@ -112941,6 +113022,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -112966,89 +113049,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [841] = { - [ts_builtin_sym_end] = ACTIONS(2648), - [sym_identifier] = ACTIONS(2650), - [anon_sym_export] = ACTIONS(2650), - [anon_sym_default] = ACTIONS(2650), - [anon_sym_type] = ACTIONS(2650), - [anon_sym_namespace] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_typeof] = ACTIONS(2650), - [anon_sym_import] = ACTIONS(2650), - [anon_sym_with] = ACTIONS(2650), - [anon_sym_var] = ACTIONS(2650), - [anon_sym_let] = ACTIONS(2650), - [anon_sym_const] = ACTIONS(2650), - [anon_sym_BANG] = ACTIONS(2648), - [anon_sym_else] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2650), - [anon_sym_switch] = ACTIONS(2650), - [anon_sym_for] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2648), - [anon_sym_SEMI] = ACTIONS(2648), - [anon_sym_await] = ACTIONS(2650), - [anon_sym_while] = ACTIONS(2650), - [anon_sym_do] = ACTIONS(2650), - [anon_sym_try] = ACTIONS(2650), - [anon_sym_break] = ACTIONS(2650), - [anon_sym_continue] = ACTIONS(2650), - [anon_sym_debugger] = ACTIONS(2650), - [anon_sym_return] = ACTIONS(2650), - [anon_sym_throw] = ACTIONS(2650), - [anon_sym_case] = ACTIONS(2650), - [anon_sym_yield] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2648), - [sym_glimmer_opening_tag] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2648), - [anon_sym_class] = ACTIONS(2650), - [anon_sym_async] = ACTIONS(2650), - [anon_sym_function] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(2650), - [anon_sym_using] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_SLASH] = ACTIONS(2650), - [anon_sym_LT] = ACTIONS(2650), - [anon_sym_TILDE] = ACTIONS(2648), - [anon_sym_void] = ACTIONS(2650), - [anon_sym_delete] = ACTIONS(2650), - [anon_sym_PLUS_PLUS] = ACTIONS(2648), - [anon_sym_DASH_DASH] = ACTIONS(2648), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2648), - [sym_number] = ACTIONS(2648), - [sym_private_property_identifier] = ACTIONS(2648), - [sym_this] = ACTIONS(2650), - [sym_super] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_null] = ACTIONS(2650), - [sym_undefined] = ACTIONS(2650), - [anon_sym_AT] = ACTIONS(2648), - [anon_sym_static] = ACTIONS(2650), - [anon_sym_readonly] = ACTIONS(2650), - [anon_sym_get] = ACTIONS(2650), - [anon_sym_set] = ACTIONS(2650), - [anon_sym_declare] = ACTIONS(2650), - [anon_sym_public] = ACTIONS(2650), - [anon_sym_private] = ACTIONS(2650), - [anon_sym_protected] = ACTIONS(2650), - [anon_sym_override] = ACTIONS(2650), - [anon_sym_module] = ACTIONS(2650), - [anon_sym_any] = ACTIONS(2650), - [anon_sym_number] = ACTIONS(2650), - [anon_sym_boolean] = ACTIONS(2650), - [anon_sym_string] = ACTIONS(2650), - [anon_sym_symbol] = ACTIONS(2650), - [anon_sym_object] = ACTIONS(2650), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_interface] = ACTIONS(2650), - [anon_sym_enum] = ACTIONS(2650), - [sym_html_comment] = ACTIONS(5), - }, [842] = { [ts_builtin_sym_end] = ACTIONS(2652), [sym_identifier] = ACTIONS(2654), @@ -113084,8 +113084,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2654), [anon_sym_LBRACK] = ACTIONS(2652), [sym_glimmer_opening_tag] = ACTIONS(2652), - [anon_sym_DQUOTE] = ACTIONS(2652), - [anon_sym_SQUOTE] = ACTIONS(2652), [anon_sym_class] = ACTIONS(2654), [anon_sym_async] = ACTIONS(2654), [anon_sym_function] = ACTIONS(2654), @@ -113100,6 +113098,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2654), [anon_sym_PLUS_PLUS] = ACTIONS(2652), [anon_sym_DASH_DASH] = ACTIONS(2652), + [anon_sym_DQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2652), [sym_number] = ACTIONS(2652), @@ -113167,8 +113167,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2658), [anon_sym_LBRACK] = ACTIONS(2656), [sym_glimmer_opening_tag] = ACTIONS(2656), - [anon_sym_DQUOTE] = ACTIONS(2656), - [anon_sym_SQUOTE] = ACTIONS(2656), [anon_sym_class] = ACTIONS(2658), [anon_sym_async] = ACTIONS(2658), [anon_sym_function] = ACTIONS(2658), @@ -113183,6 +113181,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2658), [anon_sym_PLUS_PLUS] = ACTIONS(2656), [anon_sym_DASH_DASH] = ACTIONS(2656), + [anon_sym_DQUOTE] = ACTIONS(2656), + [anon_sym_SQUOTE] = ACTIONS(2656), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2656), [sym_number] = ACTIONS(2656), @@ -113250,8 +113250,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2662), [anon_sym_LBRACK] = ACTIONS(2660), [sym_glimmer_opening_tag] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_SQUOTE] = ACTIONS(2660), [anon_sym_class] = ACTIONS(2662), [anon_sym_async] = ACTIONS(2662), [anon_sym_function] = ACTIONS(2662), @@ -113266,6 +113264,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2662), [anon_sym_PLUS_PLUS] = ACTIONS(2660), [anon_sym_DASH_DASH] = ACTIONS(2660), + [anon_sym_DQUOTE] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2660), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2660), [sym_number] = ACTIONS(2660), @@ -113333,8 +113333,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2666), [anon_sym_LBRACK] = ACTIONS(2664), [sym_glimmer_opening_tag] = ACTIONS(2664), - [anon_sym_DQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), [anon_sym_class] = ACTIONS(2666), [anon_sym_async] = ACTIONS(2666), [anon_sym_function] = ACTIONS(2666), @@ -113349,6 +113347,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2666), [anon_sym_PLUS_PLUS] = ACTIONS(2664), [anon_sym_DASH_DASH] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2664), [sym_number] = ACTIONS(2664), @@ -113416,8 +113416,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2670), [anon_sym_LBRACK] = ACTIONS(2668), [sym_glimmer_opening_tag] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2668), [anon_sym_class] = ACTIONS(2670), [anon_sym_async] = ACTIONS(2670), [anon_sym_function] = ACTIONS(2670), @@ -113432,6 +113430,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2670), [anon_sym_PLUS_PLUS] = ACTIONS(2668), [anon_sym_DASH_DASH] = ACTIONS(2668), + [anon_sym_DQUOTE] = ACTIONS(2668), + [anon_sym_SQUOTE] = ACTIONS(2668), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2668), [sym_number] = ACTIONS(2668), @@ -113499,8 +113499,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2674), [anon_sym_LBRACK] = ACTIONS(2672), [sym_glimmer_opening_tag] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_SQUOTE] = ACTIONS(2672), [anon_sym_class] = ACTIONS(2674), [anon_sym_async] = ACTIONS(2674), [anon_sym_function] = ACTIONS(2674), @@ -113515,6 +113513,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2674), [anon_sym_PLUS_PLUS] = ACTIONS(2672), [anon_sym_DASH_DASH] = ACTIONS(2672), + [anon_sym_DQUOTE] = ACTIONS(2672), + [anon_sym_SQUOTE] = ACTIONS(2672), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2672), [sym_number] = ACTIONS(2672), @@ -113582,8 +113582,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2678), [anon_sym_LBRACK] = ACTIONS(2676), [sym_glimmer_opening_tag] = ACTIONS(2676), - [anon_sym_DQUOTE] = ACTIONS(2676), - [anon_sym_SQUOTE] = ACTIONS(2676), [anon_sym_class] = ACTIONS(2678), [anon_sym_async] = ACTIONS(2678), [anon_sym_function] = ACTIONS(2678), @@ -113598,6 +113596,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2678), [anon_sym_PLUS_PLUS] = ACTIONS(2676), [anon_sym_DASH_DASH] = ACTIONS(2676), + [anon_sym_DQUOTE] = ACTIONS(2676), + [anon_sym_SQUOTE] = ACTIONS(2676), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2676), [sym_number] = ACTIONS(2676), @@ -113665,8 +113665,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2682), [anon_sym_LBRACK] = ACTIONS(2680), [sym_glimmer_opening_tag] = ACTIONS(2680), - [anon_sym_DQUOTE] = ACTIONS(2680), - [anon_sym_SQUOTE] = ACTIONS(2680), [anon_sym_class] = ACTIONS(2682), [anon_sym_async] = ACTIONS(2682), [anon_sym_function] = ACTIONS(2682), @@ -113681,6 +113679,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2682), [anon_sym_PLUS_PLUS] = ACTIONS(2680), [anon_sym_DASH_DASH] = ACTIONS(2680), + [anon_sym_DQUOTE] = ACTIONS(2680), + [anon_sym_SQUOTE] = ACTIONS(2680), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2680), [sym_number] = ACTIONS(2680), @@ -113748,8 +113748,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2686), [anon_sym_LBRACK] = ACTIONS(2684), [sym_glimmer_opening_tag] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), [anon_sym_class] = ACTIONS(2686), [anon_sym_async] = ACTIONS(2686), [anon_sym_function] = ACTIONS(2686), @@ -113764,6 +113762,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2686), [anon_sym_PLUS_PLUS] = ACTIONS(2684), [anon_sym_DASH_DASH] = ACTIONS(2684), + [anon_sym_DQUOTE] = ACTIONS(2684), + [anon_sym_SQUOTE] = ACTIONS(2684), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2684), [sym_number] = ACTIONS(2684), @@ -113831,8 +113831,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2690), [anon_sym_LBRACK] = ACTIONS(2688), [sym_glimmer_opening_tag] = ACTIONS(2688), - [anon_sym_DQUOTE] = ACTIONS(2688), - [anon_sym_SQUOTE] = ACTIONS(2688), [anon_sym_class] = ACTIONS(2690), [anon_sym_async] = ACTIONS(2690), [anon_sym_function] = ACTIONS(2690), @@ -113847,6 +113845,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2690), [anon_sym_PLUS_PLUS] = ACTIONS(2688), [anon_sym_DASH_DASH] = ACTIONS(2688), + [anon_sym_DQUOTE] = ACTIONS(2688), + [anon_sym_SQUOTE] = ACTIONS(2688), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2688), [sym_number] = ACTIONS(2688), @@ -113914,8 +113914,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2694), [anon_sym_LBRACK] = ACTIONS(2692), [sym_glimmer_opening_tag] = ACTIONS(2692), - [anon_sym_DQUOTE] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2692), [anon_sym_class] = ACTIONS(2694), [anon_sym_async] = ACTIONS(2694), [anon_sym_function] = ACTIONS(2694), @@ -113930,6 +113928,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2694), [anon_sym_PLUS_PLUS] = ACTIONS(2692), [anon_sym_DASH_DASH] = ACTIONS(2692), + [anon_sym_DQUOTE] = ACTIONS(2692), + [anon_sym_SQUOTE] = ACTIONS(2692), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2692), [sym_number] = ACTIONS(2692), @@ -113997,8 +113997,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2698), [anon_sym_LBRACK] = ACTIONS(2696), [sym_glimmer_opening_tag] = ACTIONS(2696), - [anon_sym_DQUOTE] = ACTIONS(2696), - [anon_sym_SQUOTE] = ACTIONS(2696), [anon_sym_class] = ACTIONS(2698), [anon_sym_async] = ACTIONS(2698), [anon_sym_function] = ACTIONS(2698), @@ -114013,6 +114011,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2698), [anon_sym_PLUS_PLUS] = ACTIONS(2696), [anon_sym_DASH_DASH] = ACTIONS(2696), + [anon_sym_DQUOTE] = ACTIONS(2696), + [anon_sym_SQUOTE] = ACTIONS(2696), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2696), [sym_number] = ACTIONS(2696), @@ -114080,8 +114080,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2702), [anon_sym_LBRACK] = ACTIONS(2700), [sym_glimmer_opening_tag] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2700), [anon_sym_class] = ACTIONS(2702), [anon_sym_async] = ACTIONS(2702), [anon_sym_function] = ACTIONS(2702), @@ -114096,6 +114094,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2702), [anon_sym_PLUS_PLUS] = ACTIONS(2700), [anon_sym_DASH_DASH] = ACTIONS(2700), + [anon_sym_DQUOTE] = ACTIONS(2700), + [anon_sym_SQUOTE] = ACTIONS(2700), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2700), [sym_number] = ACTIONS(2700), @@ -114163,8 +114163,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2706), [anon_sym_LBRACK] = ACTIONS(2704), [sym_glimmer_opening_tag] = ACTIONS(2704), - [anon_sym_DQUOTE] = ACTIONS(2704), - [anon_sym_SQUOTE] = ACTIONS(2704), [anon_sym_class] = ACTIONS(2706), [anon_sym_async] = ACTIONS(2706), [anon_sym_function] = ACTIONS(2706), @@ -114179,6 +114177,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2706), [anon_sym_PLUS_PLUS] = ACTIONS(2704), [anon_sym_DASH_DASH] = ACTIONS(2704), + [anon_sym_DQUOTE] = ACTIONS(2704), + [anon_sym_SQUOTE] = ACTIONS(2704), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2704), [sym_number] = ACTIONS(2704), @@ -114246,8 +114246,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2710), [anon_sym_LBRACK] = ACTIONS(2708), [sym_glimmer_opening_tag] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), [anon_sym_class] = ACTIONS(2710), [anon_sym_async] = ACTIONS(2710), [anon_sym_function] = ACTIONS(2710), @@ -114262,6 +114260,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2710), [anon_sym_PLUS_PLUS] = ACTIONS(2708), [anon_sym_DASH_DASH] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_SQUOTE] = ACTIONS(2708), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2708), [sym_number] = ACTIONS(2708), @@ -114329,8 +114329,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2714), [anon_sym_LBRACK] = ACTIONS(2712), [sym_glimmer_opening_tag] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(2712), - [anon_sym_SQUOTE] = ACTIONS(2712), [anon_sym_class] = ACTIONS(2714), [anon_sym_async] = ACTIONS(2714), [anon_sym_function] = ACTIONS(2714), @@ -114345,6 +114343,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2714), [anon_sym_PLUS_PLUS] = ACTIONS(2712), [anon_sym_DASH_DASH] = ACTIONS(2712), + [anon_sym_DQUOTE] = ACTIONS(2712), + [anon_sym_SQUOTE] = ACTIONS(2712), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2712), [sym_number] = ACTIONS(2712), @@ -114412,8 +114412,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2718), [anon_sym_LBRACK] = ACTIONS(2716), [sym_glimmer_opening_tag] = ACTIONS(2716), - [anon_sym_DQUOTE] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2716), [anon_sym_class] = ACTIONS(2718), [anon_sym_async] = ACTIONS(2718), [anon_sym_function] = ACTIONS(2718), @@ -114428,6 +114426,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2718), [anon_sym_PLUS_PLUS] = ACTIONS(2716), [anon_sym_DASH_DASH] = ACTIONS(2716), + [anon_sym_DQUOTE] = ACTIONS(2716), + [anon_sym_SQUOTE] = ACTIONS(2716), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2716), [sym_number] = ACTIONS(2716), @@ -114495,8 +114495,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2722), [anon_sym_LBRACK] = ACTIONS(2720), [sym_glimmer_opening_tag] = ACTIONS(2720), - [anon_sym_DQUOTE] = ACTIONS(2720), - [anon_sym_SQUOTE] = ACTIONS(2720), [anon_sym_class] = ACTIONS(2722), [anon_sym_async] = ACTIONS(2722), [anon_sym_function] = ACTIONS(2722), @@ -114511,6 +114509,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2722), [anon_sym_PLUS_PLUS] = ACTIONS(2720), [anon_sym_DASH_DASH] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(2720), + [anon_sym_SQUOTE] = ACTIONS(2720), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2720), [sym_number] = ACTIONS(2720), @@ -114578,8 +114578,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2726), [anon_sym_LBRACK] = ACTIONS(2724), [sym_glimmer_opening_tag] = ACTIONS(2724), - [anon_sym_DQUOTE] = ACTIONS(2724), - [anon_sym_SQUOTE] = ACTIONS(2724), [anon_sym_class] = ACTIONS(2726), [anon_sym_async] = ACTIONS(2726), [anon_sym_function] = ACTIONS(2726), @@ -114594,6 +114592,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2726), [anon_sym_PLUS_PLUS] = ACTIONS(2724), [anon_sym_DASH_DASH] = ACTIONS(2724), + [anon_sym_DQUOTE] = ACTIONS(2724), + [anon_sym_SQUOTE] = ACTIONS(2724), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2724), [sym_number] = ACTIONS(2724), @@ -114661,8 +114661,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2730), [anon_sym_LBRACK] = ACTIONS(2728), [sym_glimmer_opening_tag] = ACTIONS(2728), - [anon_sym_DQUOTE] = ACTIONS(2728), - [anon_sym_SQUOTE] = ACTIONS(2728), [anon_sym_class] = ACTIONS(2730), [anon_sym_async] = ACTIONS(2730), [anon_sym_function] = ACTIONS(2730), @@ -114677,6 +114675,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2730), [anon_sym_PLUS_PLUS] = ACTIONS(2728), [anon_sym_DASH_DASH] = ACTIONS(2728), + [anon_sym_DQUOTE] = ACTIONS(2728), + [anon_sym_SQUOTE] = ACTIONS(2728), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2728), [sym_number] = ACTIONS(2728), @@ -114744,8 +114744,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2734), [anon_sym_LBRACK] = ACTIONS(2732), [sym_glimmer_opening_tag] = ACTIONS(2732), - [anon_sym_DQUOTE] = ACTIONS(2732), - [anon_sym_SQUOTE] = ACTIONS(2732), [anon_sym_class] = ACTIONS(2734), [anon_sym_async] = ACTIONS(2734), [anon_sym_function] = ACTIONS(2734), @@ -114760,6 +114758,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2734), [anon_sym_PLUS_PLUS] = ACTIONS(2732), [anon_sym_DASH_DASH] = ACTIONS(2732), + [anon_sym_DQUOTE] = ACTIONS(2732), + [anon_sym_SQUOTE] = ACTIONS(2732), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2732), [sym_number] = ACTIONS(2732), @@ -114827,8 +114827,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2738), [anon_sym_LBRACK] = ACTIONS(2736), [sym_glimmer_opening_tag] = ACTIONS(2736), - [anon_sym_DQUOTE] = ACTIONS(2736), - [anon_sym_SQUOTE] = ACTIONS(2736), [anon_sym_class] = ACTIONS(2738), [anon_sym_async] = ACTIONS(2738), [anon_sym_function] = ACTIONS(2738), @@ -114843,6 +114841,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2738), [anon_sym_PLUS_PLUS] = ACTIONS(2736), [anon_sym_DASH_DASH] = ACTIONS(2736), + [anon_sym_DQUOTE] = ACTIONS(2736), + [anon_sym_SQUOTE] = ACTIONS(2736), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2736), [sym_number] = ACTIONS(2736), @@ -114910,8 +114910,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2742), [anon_sym_LBRACK] = ACTIONS(2740), [sym_glimmer_opening_tag] = ACTIONS(2740), - [anon_sym_DQUOTE] = ACTIONS(2740), - [anon_sym_SQUOTE] = ACTIONS(2740), [anon_sym_class] = ACTIONS(2742), [anon_sym_async] = ACTIONS(2742), [anon_sym_function] = ACTIONS(2742), @@ -114926,6 +114924,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2742), [anon_sym_PLUS_PLUS] = ACTIONS(2740), [anon_sym_DASH_DASH] = ACTIONS(2740), + [anon_sym_DQUOTE] = ACTIONS(2740), + [anon_sym_SQUOTE] = ACTIONS(2740), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2740), [sym_number] = ACTIONS(2740), @@ -114959,86 +114959,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [865] = { - [ts_builtin_sym_end] = ACTIONS(2704), - [sym_identifier] = ACTIONS(2706), - [anon_sym_export] = ACTIONS(2706), - [anon_sym_default] = ACTIONS(2706), - [anon_sym_type] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_typeof] = ACTIONS(2706), - [anon_sym_import] = ACTIONS(2706), - [anon_sym_with] = ACTIONS(2706), - [anon_sym_var] = ACTIONS(2706), - [anon_sym_let] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_else] = ACTIONS(2706), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_await] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_debugger] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_case] = ACTIONS(2706), - [anon_sym_yield] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2704), - [sym_glimmer_opening_tag] = ACTIONS(2704), - [anon_sym_DQUOTE] = ACTIONS(2704), - [anon_sym_SQUOTE] = ACTIONS(2704), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2706), - [anon_sym_function] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_using] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_void] = ACTIONS(2706), - [anon_sym_delete] = ACTIONS(2706), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), + [ts_builtin_sym_end] = ACTIONS(2708), + [sym_identifier] = ACTIONS(2710), + [anon_sym_export] = ACTIONS(2710), + [anon_sym_default] = ACTIONS(2710), + [anon_sym_type] = ACTIONS(2710), + [anon_sym_namespace] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_RBRACE] = ACTIONS(2708), + [anon_sym_typeof] = ACTIONS(2710), + [anon_sym_import] = ACTIONS(2710), + [anon_sym_with] = ACTIONS(2710), + [anon_sym_var] = ACTIONS(2710), + [anon_sym_let] = ACTIONS(2710), + [anon_sym_const] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2710), + [anon_sym_if] = ACTIONS(2710), + [anon_sym_switch] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_SEMI] = ACTIONS(2708), + [anon_sym_await] = ACTIONS(2710), + [anon_sym_while] = ACTIONS(2710), + [anon_sym_do] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2710), + [anon_sym_break] = ACTIONS(2710), + [anon_sym_continue] = ACTIONS(2710), + [anon_sym_debugger] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2710), + [anon_sym_throw] = ACTIONS(2710), + [anon_sym_case] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2708), + [sym_glimmer_opening_tag] = ACTIONS(2708), + [anon_sym_class] = ACTIONS(2710), + [anon_sym_async] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2710), + [anon_sym_using] = ACTIONS(2710), + [anon_sym_PLUS] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_SLASH] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_TILDE] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(2710), + [anon_sym_delete] = ACTIONS(2710), + [anon_sym_PLUS_PLUS] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_SQUOTE] = ACTIONS(2708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2704), - [sym_number] = ACTIONS(2704), - [sym_private_property_identifier] = ACTIONS(2704), - [sym_this] = ACTIONS(2706), - [sym_super] = ACTIONS(2706), - [sym_true] = ACTIONS(2706), - [sym_false] = ACTIONS(2706), - [sym_null] = ACTIONS(2706), - [sym_undefined] = ACTIONS(2706), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_readonly] = ACTIONS(2706), - [anon_sym_get] = ACTIONS(2706), - [anon_sym_set] = ACTIONS(2706), - [anon_sym_declare] = ACTIONS(2706), - [anon_sym_public] = ACTIONS(2706), - [anon_sym_private] = ACTIONS(2706), - [anon_sym_protected] = ACTIONS(2706), - [anon_sym_override] = ACTIONS(2706), - [anon_sym_module] = ACTIONS(2706), - [anon_sym_any] = ACTIONS(2706), - [anon_sym_number] = ACTIONS(2706), - [anon_sym_boolean] = ACTIONS(2706), - [anon_sym_string] = ACTIONS(2706), - [anon_sym_symbol] = ACTIONS(2706), - [anon_sym_object] = ACTIONS(2706), - [anon_sym_abstract] = ACTIONS(2706), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), + [anon_sym_BQUOTE] = ACTIONS(2708), + [sym_number] = ACTIONS(2708), + [sym_private_property_identifier] = ACTIONS(2708), + [sym_this] = ACTIONS(2710), + [sym_super] = ACTIONS(2710), + [sym_true] = ACTIONS(2710), + [sym_false] = ACTIONS(2710), + [sym_null] = ACTIONS(2710), + [sym_undefined] = ACTIONS(2710), + [anon_sym_AT] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2710), + [anon_sym_readonly] = ACTIONS(2710), + [anon_sym_get] = ACTIONS(2710), + [anon_sym_set] = ACTIONS(2710), + [anon_sym_declare] = ACTIONS(2710), + [anon_sym_public] = ACTIONS(2710), + [anon_sym_private] = ACTIONS(2710), + [anon_sym_protected] = ACTIONS(2710), + [anon_sym_override] = ACTIONS(2710), + [anon_sym_module] = ACTIONS(2710), + [anon_sym_any] = ACTIONS(2710), + [anon_sym_number] = ACTIONS(2710), + [anon_sym_boolean] = ACTIONS(2710), + [anon_sym_string] = ACTIONS(2710), + [anon_sym_symbol] = ACTIONS(2710), + [anon_sym_object] = ACTIONS(2710), + [anon_sym_abstract] = ACTIONS(2710), + [anon_sym_interface] = ACTIONS(2710), + [anon_sym_enum] = ACTIONS(2710), [sym_html_comment] = ACTIONS(5), }, [866] = { @@ -115076,8 +115076,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2746), [anon_sym_LBRACK] = ACTIONS(2744), [sym_glimmer_opening_tag] = ACTIONS(2744), - [anon_sym_DQUOTE] = ACTIONS(2744), - [anon_sym_SQUOTE] = ACTIONS(2744), [anon_sym_class] = ACTIONS(2746), [anon_sym_async] = ACTIONS(2746), [anon_sym_function] = ACTIONS(2746), @@ -115092,6 +115090,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2746), [anon_sym_PLUS_PLUS] = ACTIONS(2744), [anon_sym_DASH_DASH] = ACTIONS(2744), + [anon_sym_DQUOTE] = ACTIONS(2744), + [anon_sym_SQUOTE] = ACTIONS(2744), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2744), [sym_number] = ACTIONS(2744), @@ -115159,8 +115159,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2750), [anon_sym_LBRACK] = ACTIONS(2748), [sym_glimmer_opening_tag] = ACTIONS(2748), - [anon_sym_DQUOTE] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2748), [anon_sym_class] = ACTIONS(2750), [anon_sym_async] = ACTIONS(2750), [anon_sym_function] = ACTIONS(2750), @@ -115175,6 +115173,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2750), [anon_sym_PLUS_PLUS] = ACTIONS(2748), [anon_sym_DASH_DASH] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [anon_sym_SQUOTE] = ACTIONS(2748), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2748), [sym_number] = ACTIONS(2748), @@ -115242,8 +115242,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2754), [anon_sym_LBRACK] = ACTIONS(2752), [sym_glimmer_opening_tag] = ACTIONS(2752), - [anon_sym_DQUOTE] = ACTIONS(2752), - [anon_sym_SQUOTE] = ACTIONS(2752), [anon_sym_class] = ACTIONS(2754), [anon_sym_async] = ACTIONS(2754), [anon_sym_function] = ACTIONS(2754), @@ -115258,6 +115256,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2754), [anon_sym_PLUS_PLUS] = ACTIONS(2752), [anon_sym_DASH_DASH] = ACTIONS(2752), + [anon_sym_DQUOTE] = ACTIONS(2752), + [anon_sym_SQUOTE] = ACTIONS(2752), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2752), [sym_number] = ACTIONS(2752), @@ -115325,8 +115325,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2758), [anon_sym_LBRACK] = ACTIONS(2756), [sym_glimmer_opening_tag] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), [anon_sym_class] = ACTIONS(2758), [anon_sym_async] = ACTIONS(2758), [anon_sym_function] = ACTIONS(2758), @@ -115341,6 +115339,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2758), [anon_sym_PLUS_PLUS] = ACTIONS(2756), [anon_sym_DASH_DASH] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2756), + [anon_sym_SQUOTE] = ACTIONS(2756), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2756), [sym_number] = ACTIONS(2756), @@ -115408,8 +115408,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2762), [anon_sym_LBRACK] = ACTIONS(2760), [sym_glimmer_opening_tag] = ACTIONS(2760), - [anon_sym_DQUOTE] = ACTIONS(2760), - [anon_sym_SQUOTE] = ACTIONS(2760), [anon_sym_class] = ACTIONS(2762), [anon_sym_async] = ACTIONS(2762), [anon_sym_function] = ACTIONS(2762), @@ -115424,6 +115422,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2762), [anon_sym_PLUS_PLUS] = ACTIONS(2760), [anon_sym_DASH_DASH] = ACTIONS(2760), + [anon_sym_DQUOTE] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2760), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2760), [sym_number] = ACTIONS(2760), @@ -115457,6 +115457,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [871] = { + [ts_builtin_sym_end] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1797), + [anon_sym_export] = ACTIONS(1797), + [anon_sym_default] = ACTIONS(1797), + [anon_sym_type] = ACTIONS(1797), + [anon_sym_namespace] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_typeof] = ACTIONS(1797), + [anon_sym_import] = ACTIONS(1797), + [anon_sym_with] = ACTIONS(1797), + [anon_sym_var] = ACTIONS(1797), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_const] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1795), + [anon_sym_else] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_switch] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1795), + [anon_sym_await] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_do] = ACTIONS(1797), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_debugger] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_throw] = ACTIONS(1797), + [anon_sym_case] = ACTIONS(1797), + [anon_sym_yield] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1795), + [sym_glimmer_opening_tag] = ACTIONS(1795), + [anon_sym_class] = ACTIONS(1797), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1797), + [anon_sym_new] = ACTIONS(1797), + [anon_sym_using] = ACTIONS(1797), + [anon_sym_PLUS] = ACTIONS(1797), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_SLASH] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1795), + [anon_sym_void] = ACTIONS(1797), + [anon_sym_delete] = ACTIONS(1797), + [anon_sym_PLUS_PLUS] = ACTIONS(1795), + [anon_sym_DASH_DASH] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [anon_sym_SQUOTE] = ACTIONS(1795), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1795), + [sym_number] = ACTIONS(1795), + [sym_private_property_identifier] = ACTIONS(1795), + [sym_this] = ACTIONS(1797), + [sym_super] = ACTIONS(1797), + [sym_true] = ACTIONS(1797), + [sym_false] = ACTIONS(1797), + [sym_null] = ACTIONS(1797), + [sym_undefined] = ACTIONS(1797), + [anon_sym_AT] = ACTIONS(1795), + [anon_sym_static] = ACTIONS(1797), + [anon_sym_readonly] = ACTIONS(1797), + [anon_sym_get] = ACTIONS(1797), + [anon_sym_set] = ACTIONS(1797), + [anon_sym_declare] = ACTIONS(1797), + [anon_sym_public] = ACTIONS(1797), + [anon_sym_private] = ACTIONS(1797), + [anon_sym_protected] = ACTIONS(1797), + [anon_sym_override] = ACTIONS(1797), + [anon_sym_module] = ACTIONS(1797), + [anon_sym_any] = ACTIONS(1797), + [anon_sym_number] = ACTIONS(1797), + [anon_sym_boolean] = ACTIONS(1797), + [anon_sym_string] = ACTIONS(1797), + [anon_sym_symbol] = ACTIONS(1797), + [anon_sym_object] = ACTIONS(1797), + [anon_sym_abstract] = ACTIONS(1797), + [anon_sym_interface] = ACTIONS(1797), + [anon_sym_enum] = ACTIONS(1797), + [sym_html_comment] = ACTIONS(5), + }, + [872] = { [ts_builtin_sym_end] = ACTIONS(2764), [sym_identifier] = ACTIONS(2766), [anon_sym_export] = ACTIONS(2766), @@ -115491,8 +115574,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2766), [anon_sym_LBRACK] = ACTIONS(2764), [sym_glimmer_opening_tag] = ACTIONS(2764), - [anon_sym_DQUOTE] = ACTIONS(2764), - [anon_sym_SQUOTE] = ACTIONS(2764), [anon_sym_class] = ACTIONS(2766), [anon_sym_async] = ACTIONS(2766), [anon_sym_function] = ACTIONS(2766), @@ -115507,6 +115588,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2766), [anon_sym_PLUS_PLUS] = ACTIONS(2764), [anon_sym_DASH_DASH] = ACTIONS(2764), + [anon_sym_DQUOTE] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2764), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2764), [sym_number] = ACTIONS(2764), @@ -115539,7 +115622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2766), [sym_html_comment] = ACTIONS(5), }, - [872] = { + [873] = { [ts_builtin_sym_end] = ACTIONS(2768), [sym_identifier] = ACTIONS(2770), [anon_sym_export] = ACTIONS(2770), @@ -115574,8 +115657,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2770), [anon_sym_LBRACK] = ACTIONS(2768), [sym_glimmer_opening_tag] = ACTIONS(2768), - [anon_sym_DQUOTE] = ACTIONS(2768), - [anon_sym_SQUOTE] = ACTIONS(2768), [anon_sym_class] = ACTIONS(2770), [anon_sym_async] = ACTIONS(2770), [anon_sym_function] = ACTIONS(2770), @@ -115590,6 +115671,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2770), [anon_sym_PLUS_PLUS] = ACTIONS(2768), [anon_sym_DASH_DASH] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [anon_sym_SQUOTE] = ACTIONS(2768), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2768), [sym_number] = ACTIONS(2768), @@ -115622,7 +115705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2770), [sym_html_comment] = ACTIONS(5), }, - [873] = { + [874] = { [ts_builtin_sym_end] = ACTIONS(2772), [sym_identifier] = ACTIONS(2774), [anon_sym_export] = ACTIONS(2774), @@ -115657,8 +115740,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2774), [anon_sym_LBRACK] = ACTIONS(2772), [sym_glimmer_opening_tag] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(2772), - [anon_sym_SQUOTE] = ACTIONS(2772), [anon_sym_class] = ACTIONS(2774), [anon_sym_async] = ACTIONS(2774), [anon_sym_function] = ACTIONS(2774), @@ -115673,6 +115754,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2774), [anon_sym_PLUS_PLUS] = ACTIONS(2772), [anon_sym_DASH_DASH] = ACTIONS(2772), + [anon_sym_DQUOTE] = ACTIONS(2772), + [anon_sym_SQUOTE] = ACTIONS(2772), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2772), [sym_number] = ACTIONS(2772), @@ -115705,89 +115788,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2774), [sym_html_comment] = ACTIONS(5), }, - [874] = { - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_export] = ACTIONS(1809), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_namespace] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_typeof] = ACTIONS(1809), - [anon_sym_import] = ACTIONS(1809), - [anon_sym_with] = ACTIONS(1809), - [anon_sym_var] = ACTIONS(1809), - [anon_sym_let] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_else] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_switch] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_await] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_debugger] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_throw] = ACTIONS(1809), - [anon_sym_case] = ACTIONS(1809), - [anon_sym_yield] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1807), - [sym_glimmer_opening_tag] = ACTIONS(1807), - [anon_sym_DQUOTE] = ACTIONS(1807), - [anon_sym_SQUOTE] = ACTIONS(1807), - [anon_sym_class] = ACTIONS(1809), - [anon_sym_async] = ACTIONS(1809), - [anon_sym_function] = ACTIONS(1809), - [anon_sym_new] = ACTIONS(1809), - [anon_sym_using] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_SLASH] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_void] = ACTIONS(1809), - [anon_sym_delete] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1807), - [sym_number] = ACTIONS(1807), - [sym_private_property_identifier] = ACTIONS(1807), - [sym_this] = ACTIONS(1809), - [sym_super] = ACTIONS(1809), - [sym_true] = ACTIONS(1809), - [sym_false] = ACTIONS(1809), - [sym_null] = ACTIONS(1809), - [sym_undefined] = ACTIONS(1809), - [anon_sym_AT] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_readonly] = ACTIONS(1809), - [anon_sym_get] = ACTIONS(1809), - [anon_sym_set] = ACTIONS(1809), - [anon_sym_declare] = ACTIONS(1809), - [anon_sym_public] = ACTIONS(1809), - [anon_sym_private] = ACTIONS(1809), - [anon_sym_protected] = ACTIONS(1809), - [anon_sym_override] = ACTIONS(1809), - [anon_sym_module] = ACTIONS(1809), - [anon_sym_any] = ACTIONS(1809), - [anon_sym_number] = ACTIONS(1809), - [anon_sym_boolean] = ACTIONS(1809), - [anon_sym_string] = ACTIONS(1809), - [anon_sym_symbol] = ACTIONS(1809), - [anon_sym_object] = ACTIONS(1809), - [anon_sym_abstract] = ACTIONS(1809), - [anon_sym_interface] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [sym_html_comment] = ACTIONS(5), - }, [875] = { [ts_builtin_sym_end] = ACTIONS(2776), [sym_identifier] = ACTIONS(2778), @@ -115823,8 +115823,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2778), [anon_sym_LBRACK] = ACTIONS(2776), [sym_glimmer_opening_tag] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), [anon_sym_class] = ACTIONS(2778), [anon_sym_async] = ACTIONS(2778), [anon_sym_function] = ACTIONS(2778), @@ -115839,6 +115837,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2778), [anon_sym_PLUS_PLUS] = ACTIONS(2776), [anon_sym_DASH_DASH] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2776), [sym_number] = ACTIONS(2776), @@ -115906,8 +115906,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2782), [anon_sym_LBRACK] = ACTIONS(2780), [sym_glimmer_opening_tag] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), [anon_sym_class] = ACTIONS(2782), [anon_sym_async] = ACTIONS(2782), [anon_sym_function] = ACTIONS(2782), @@ -115922,6 +115920,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2782), [anon_sym_PLUS_PLUS] = ACTIONS(2780), [anon_sym_DASH_DASH] = ACTIONS(2780), + [anon_sym_DQUOTE] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(2780), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2780), [sym_number] = ACTIONS(2780), @@ -115955,89 +115955,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [877] = { - [ts_builtin_sym_end] = ACTIONS(1847), - [sym_identifier] = ACTIONS(1849), - [anon_sym_export] = ACTIONS(1849), - [anon_sym_default] = ACTIONS(1849), - [anon_sym_type] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1849), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_RBRACE] = ACTIONS(1847), - [anon_sym_typeof] = ACTIONS(1849), - [anon_sym_import] = ACTIONS(1849), - [anon_sym_with] = ACTIONS(1849), - [anon_sym_var] = ACTIONS(1849), - [anon_sym_let] = ACTIONS(1849), - [anon_sym_const] = ACTIONS(1849), - [anon_sym_BANG] = ACTIONS(1847), - [anon_sym_else] = ACTIONS(1849), - [anon_sym_if] = ACTIONS(1849), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_for] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1847), - [anon_sym_await] = ACTIONS(1849), - [anon_sym_while] = ACTIONS(1849), - [anon_sym_do] = ACTIONS(1849), - [anon_sym_try] = ACTIONS(1849), - [anon_sym_break] = ACTIONS(1849), - [anon_sym_continue] = ACTIONS(1849), - [anon_sym_debugger] = ACTIONS(1849), - [anon_sym_return] = ACTIONS(1849), - [anon_sym_throw] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1849), - [anon_sym_yield] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1847), - [sym_glimmer_opening_tag] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1847), - [anon_sym_SQUOTE] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1849), - [anon_sym_async] = ACTIONS(1849), - [anon_sym_function] = ACTIONS(1849), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1849), - [anon_sym_PLUS] = ACTIONS(1849), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_SLASH] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_TILDE] = ACTIONS(1847), - [anon_sym_void] = ACTIONS(1849), - [anon_sym_delete] = ACTIONS(1849), - [anon_sym_PLUS_PLUS] = ACTIONS(1847), - [anon_sym_DASH_DASH] = ACTIONS(1847), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1847), - [sym_number] = ACTIONS(1847), - [sym_private_property_identifier] = ACTIONS(1847), - [sym_this] = ACTIONS(1849), - [sym_super] = ACTIONS(1849), - [sym_true] = ACTIONS(1849), - [sym_false] = ACTIONS(1849), - [sym_null] = ACTIONS(1849), - [sym_undefined] = ACTIONS(1849), - [anon_sym_AT] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1849), - [anon_sym_readonly] = ACTIONS(1849), - [anon_sym_get] = ACTIONS(1849), - [anon_sym_set] = ACTIONS(1849), - [anon_sym_declare] = ACTIONS(1849), - [anon_sym_public] = ACTIONS(1849), - [anon_sym_private] = ACTIONS(1849), - [anon_sym_protected] = ACTIONS(1849), - [anon_sym_override] = ACTIONS(1849), - [anon_sym_module] = ACTIONS(1849), - [anon_sym_any] = ACTIONS(1849), - [anon_sym_number] = ACTIONS(1849), - [anon_sym_boolean] = ACTIONS(1849), - [anon_sym_string] = ACTIONS(1849), - [anon_sym_symbol] = ACTIONS(1849), - [anon_sym_object] = ACTIONS(1849), - [anon_sym_abstract] = ACTIONS(1849), - [anon_sym_interface] = ACTIONS(1849), - [anon_sym_enum] = ACTIONS(1849), - [sym_html_comment] = ACTIONS(5), - }, - [878] = { [ts_builtin_sym_end] = ACTIONS(2784), [sym_identifier] = ACTIONS(2786), [anon_sym_export] = ACTIONS(2786), @@ -116072,8 +115989,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2786), [anon_sym_LBRACK] = ACTIONS(2784), [sym_glimmer_opening_tag] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2784), [anon_sym_class] = ACTIONS(2786), [anon_sym_async] = ACTIONS(2786), [anon_sym_function] = ACTIONS(2786), @@ -116088,6 +116003,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2786), [anon_sym_PLUS_PLUS] = ACTIONS(2784), [anon_sym_DASH_DASH] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(2784), + [anon_sym_SQUOTE] = ACTIONS(2784), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2784), [sym_number] = ACTIONS(2784), @@ -116120,44 +116037,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2786), [sym_html_comment] = ACTIONS(5), }, + [878] = { + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1837), + [anon_sym_default] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_namespace] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_typeof] = ACTIONS(1837), + [anon_sym_import] = ACTIONS(1837), + [anon_sym_with] = ACTIONS(1837), + [anon_sym_var] = ACTIONS(1837), + [anon_sym_let] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_else] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_switch] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_while] = ACTIONS(1837), + [anon_sym_do] = ACTIONS(1837), + [anon_sym_try] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_debugger] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_throw] = ACTIONS(1837), + [anon_sym_case] = ACTIONS(1837), + [anon_sym_yield] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1835), + [sym_glimmer_opening_tag] = ACTIONS(1835), + [anon_sym_class] = ACTIONS(1837), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(1837), + [anon_sym_new] = ACTIONS(1837), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1837), + [anon_sym_SLASH] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_TILDE] = ACTIONS(1835), + [anon_sym_void] = ACTIONS(1837), + [anon_sym_delete] = ACTIONS(1837), + [anon_sym_PLUS_PLUS] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [anon_sym_SQUOTE] = ACTIONS(1835), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1835), + [sym_number] = ACTIONS(1835), + [sym_private_property_identifier] = ACTIONS(1835), + [sym_this] = ACTIONS(1837), + [sym_super] = ACTIONS(1837), + [sym_true] = ACTIONS(1837), + [sym_false] = ACTIONS(1837), + [sym_null] = ACTIONS(1837), + [sym_undefined] = ACTIONS(1837), + [anon_sym_AT] = ACTIONS(1835), + [anon_sym_static] = ACTIONS(1837), + [anon_sym_readonly] = ACTIONS(1837), + [anon_sym_get] = ACTIONS(1837), + [anon_sym_set] = ACTIONS(1837), + [anon_sym_declare] = ACTIONS(1837), + [anon_sym_public] = ACTIONS(1837), + [anon_sym_private] = ACTIONS(1837), + [anon_sym_protected] = ACTIONS(1837), + [anon_sym_override] = ACTIONS(1837), + [anon_sym_module] = ACTIONS(1837), + [anon_sym_any] = ACTIONS(1837), + [anon_sym_number] = ACTIONS(1837), + [anon_sym_boolean] = ACTIONS(1837), + [anon_sym_string] = ACTIONS(1837), + [anon_sym_symbol] = ACTIONS(1837), + [anon_sym_object] = ACTIONS(1837), + [anon_sym_abstract] = ACTIONS(1837), + [anon_sym_interface] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [sym_html_comment] = ACTIONS(5), + }, [879] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4969), - [sym_optional_tuple_parameter] = STATE(4969), - [sym_optional_type] = STATE(4969), - [sym_rest_type] = STATE(4969), - [sym__tuple_type_member] = STATE(4969), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_rest_pattern] = STATE(5271), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(4976), + [sym_optional_tuple_parameter] = STATE(4976), + [sym_optional_type] = STATE(4976), + [sym_rest_type] = STATE(4976), + [sym__tuple_type_member] = STATE(4976), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(2560), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -116168,8 +116168,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(2790), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), [anon_sym_AMP] = ACTIONS(610), @@ -116178,6 +116176,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -116204,86 +116204,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [880] = { - [ts_builtin_sym_end] = ACTIONS(2704), - [sym_identifier] = ACTIONS(2706), - [anon_sym_export] = ACTIONS(2706), - [anon_sym_default] = ACTIONS(2706), - [anon_sym_type] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_typeof] = ACTIONS(2706), - [anon_sym_import] = ACTIONS(2706), - [anon_sym_with] = ACTIONS(2706), - [anon_sym_var] = ACTIONS(2706), - [anon_sym_let] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_else] = ACTIONS(2706), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_await] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_debugger] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_case] = ACTIONS(2706), - [anon_sym_yield] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2704), - [sym_glimmer_opening_tag] = ACTIONS(2704), - [anon_sym_DQUOTE] = ACTIONS(2704), - [anon_sym_SQUOTE] = ACTIONS(2704), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2706), - [anon_sym_function] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_using] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_void] = ACTIONS(2706), - [anon_sym_delete] = ACTIONS(2706), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), + [ts_builtin_sym_end] = ACTIONS(2708), + [sym_identifier] = ACTIONS(2710), + [anon_sym_export] = ACTIONS(2710), + [anon_sym_default] = ACTIONS(2710), + [anon_sym_type] = ACTIONS(2710), + [anon_sym_namespace] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_RBRACE] = ACTIONS(2708), + [anon_sym_typeof] = ACTIONS(2710), + [anon_sym_import] = ACTIONS(2710), + [anon_sym_with] = ACTIONS(2710), + [anon_sym_var] = ACTIONS(2710), + [anon_sym_let] = ACTIONS(2710), + [anon_sym_const] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_else] = ACTIONS(2710), + [anon_sym_if] = ACTIONS(2710), + [anon_sym_switch] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_SEMI] = ACTIONS(2708), + [anon_sym_await] = ACTIONS(2710), + [anon_sym_while] = ACTIONS(2710), + [anon_sym_do] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2710), + [anon_sym_break] = ACTIONS(2710), + [anon_sym_continue] = ACTIONS(2710), + [anon_sym_debugger] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2710), + [anon_sym_throw] = ACTIONS(2710), + [anon_sym_case] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2708), + [sym_glimmer_opening_tag] = ACTIONS(2708), + [anon_sym_class] = ACTIONS(2710), + [anon_sym_async] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(2710), + [anon_sym_new] = ACTIONS(2710), + [anon_sym_using] = ACTIONS(2710), + [anon_sym_PLUS] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_SLASH] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_TILDE] = ACTIONS(2708), + [anon_sym_void] = ACTIONS(2710), + [anon_sym_delete] = ACTIONS(2710), + [anon_sym_PLUS_PLUS] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2708), + [anon_sym_DQUOTE] = ACTIONS(2708), + [anon_sym_SQUOTE] = ACTIONS(2708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2704), - [sym_number] = ACTIONS(2704), - [sym_private_property_identifier] = ACTIONS(2704), - [sym_this] = ACTIONS(2706), - [sym_super] = ACTIONS(2706), - [sym_true] = ACTIONS(2706), - [sym_false] = ACTIONS(2706), - [sym_null] = ACTIONS(2706), - [sym_undefined] = ACTIONS(2706), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_readonly] = ACTIONS(2706), - [anon_sym_get] = ACTIONS(2706), - [anon_sym_set] = ACTIONS(2706), - [anon_sym_declare] = ACTIONS(2706), - [anon_sym_public] = ACTIONS(2706), - [anon_sym_private] = ACTIONS(2706), - [anon_sym_protected] = ACTIONS(2706), - [anon_sym_override] = ACTIONS(2706), - [anon_sym_module] = ACTIONS(2706), - [anon_sym_any] = ACTIONS(2706), - [anon_sym_number] = ACTIONS(2706), - [anon_sym_boolean] = ACTIONS(2706), - [anon_sym_string] = ACTIONS(2706), - [anon_sym_symbol] = ACTIONS(2706), - [anon_sym_object] = ACTIONS(2706), - [anon_sym_abstract] = ACTIONS(2706), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), + [anon_sym_BQUOTE] = ACTIONS(2708), + [sym_number] = ACTIONS(2708), + [sym_private_property_identifier] = ACTIONS(2708), + [sym_this] = ACTIONS(2710), + [sym_super] = ACTIONS(2710), + [sym_true] = ACTIONS(2710), + [sym_false] = ACTIONS(2710), + [sym_null] = ACTIONS(2710), + [sym_undefined] = ACTIONS(2710), + [anon_sym_AT] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2710), + [anon_sym_readonly] = ACTIONS(2710), + [anon_sym_get] = ACTIONS(2710), + [anon_sym_set] = ACTIONS(2710), + [anon_sym_declare] = ACTIONS(2710), + [anon_sym_public] = ACTIONS(2710), + [anon_sym_private] = ACTIONS(2710), + [anon_sym_protected] = ACTIONS(2710), + [anon_sym_override] = ACTIONS(2710), + [anon_sym_module] = ACTIONS(2710), + [anon_sym_any] = ACTIONS(2710), + [anon_sym_number] = ACTIONS(2710), + [anon_sym_boolean] = ACTIONS(2710), + [anon_sym_string] = ACTIONS(2710), + [anon_sym_symbol] = ACTIONS(2710), + [anon_sym_object] = ACTIONS(2710), + [anon_sym_abstract] = ACTIONS(2710), + [anon_sym_interface] = ACTIONS(2710), + [anon_sym_enum] = ACTIONS(2710), [sym_html_comment] = ACTIONS(5), }, [881] = { @@ -116321,8 +116321,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2794), [anon_sym_LBRACK] = ACTIONS(2792), [sym_glimmer_opening_tag] = ACTIONS(2792), - [anon_sym_DQUOTE] = ACTIONS(2792), - [anon_sym_SQUOTE] = ACTIONS(2792), [anon_sym_class] = ACTIONS(2794), [anon_sym_async] = ACTIONS(2794), [anon_sym_function] = ACTIONS(2794), @@ -116337,6 +116335,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2794), [anon_sym_PLUS_PLUS] = ACTIONS(2792), [anon_sym_DASH_DASH] = ACTIONS(2792), + [anon_sym_DQUOTE] = ACTIONS(2792), + [anon_sym_SQUOTE] = ACTIONS(2792), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2792), [sym_number] = ACTIONS(2792), @@ -116404,8 +116404,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2798), [anon_sym_LBRACK] = ACTIONS(2796), [sym_glimmer_opening_tag] = ACTIONS(2796), - [anon_sym_DQUOTE] = ACTIONS(2796), - [anon_sym_SQUOTE] = ACTIONS(2796), [anon_sym_class] = ACTIONS(2798), [anon_sym_async] = ACTIONS(2798), [anon_sym_function] = ACTIONS(2798), @@ -116420,6 +116418,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2798), [anon_sym_PLUS_PLUS] = ACTIONS(2796), [anon_sym_DASH_DASH] = ACTIONS(2796), + [anon_sym_DQUOTE] = ACTIONS(2796), + [anon_sym_SQUOTE] = ACTIONS(2796), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2796), [sym_number] = ACTIONS(2796), @@ -116487,8 +116487,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2802), [anon_sym_LBRACK] = ACTIONS(2800), [sym_glimmer_opening_tag] = ACTIONS(2800), - [anon_sym_DQUOTE] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), [anon_sym_class] = ACTIONS(2802), [anon_sym_async] = ACTIONS(2802), [anon_sym_function] = ACTIONS(2802), @@ -116503,6 +116501,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2802), [anon_sym_PLUS_PLUS] = ACTIONS(2800), [anon_sym_DASH_DASH] = ACTIONS(2800), + [anon_sym_DQUOTE] = ACTIONS(2800), + [anon_sym_SQUOTE] = ACTIONS(2800), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2800), [sym_number] = ACTIONS(2800), @@ -116570,8 +116570,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2806), [anon_sym_LBRACK] = ACTIONS(2804), [sym_glimmer_opening_tag] = ACTIONS(2804), - [anon_sym_DQUOTE] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), [anon_sym_class] = ACTIONS(2806), [anon_sym_async] = ACTIONS(2806), [anon_sym_function] = ACTIONS(2806), @@ -116586,6 +116584,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2806), [anon_sym_PLUS_PLUS] = ACTIONS(2804), [anon_sym_DASH_DASH] = ACTIONS(2804), + [anon_sym_DQUOTE] = ACTIONS(2804), + [anon_sym_SQUOTE] = ACTIONS(2804), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2804), [sym_number] = ACTIONS(2804), @@ -116619,89 +116619,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [885] = { - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_default] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_namespace] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_typeof] = ACTIONS(1765), - [anon_sym_import] = ACTIONS(1765), - [anon_sym_with] = ACTIONS(1765), - [anon_sym_var] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_await] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_debugger] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_throw] = ACTIONS(1765), - [anon_sym_case] = ACTIONS(1765), - [anon_sym_yield] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1763), - [sym_glimmer_opening_tag] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_SQUOTE] = ACTIONS(1763), - [anon_sym_class] = ACTIONS(1765), - [anon_sym_async] = ACTIONS(1765), - [anon_sym_function] = ACTIONS(1765), - [anon_sym_new] = ACTIONS(1765), - [anon_sym_using] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_SLASH] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1763), - [anon_sym_void] = ACTIONS(1765), - [anon_sym_delete] = ACTIONS(1765), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1763), - [sym_number] = ACTIONS(1763), - [sym_private_property_identifier] = ACTIONS(1763), - [sym_this] = ACTIONS(1765), - [sym_super] = ACTIONS(1765), - [sym_true] = ACTIONS(1765), - [sym_false] = ACTIONS(1765), - [sym_null] = ACTIONS(1765), - [sym_undefined] = ACTIONS(1765), - [anon_sym_AT] = ACTIONS(1763), - [anon_sym_static] = ACTIONS(1765), - [anon_sym_readonly] = ACTIONS(1765), - [anon_sym_get] = ACTIONS(1765), - [anon_sym_set] = ACTIONS(1765), - [anon_sym_declare] = ACTIONS(1765), - [anon_sym_public] = ACTIONS(1765), - [anon_sym_private] = ACTIONS(1765), - [anon_sym_protected] = ACTIONS(1765), - [anon_sym_override] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_any] = ACTIONS(1765), - [anon_sym_number] = ACTIONS(1765), - [anon_sym_boolean] = ACTIONS(1765), - [anon_sym_string] = ACTIONS(1765), - [anon_sym_symbol] = ACTIONS(1765), - [anon_sym_object] = ACTIONS(1765), - [anon_sym_abstract] = ACTIONS(1765), - [anon_sym_interface] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [sym_html_comment] = ACTIONS(5), - }, - [886] = { [ts_builtin_sym_end] = ACTIONS(2808), [sym_identifier] = ACTIONS(2810), [anon_sym_export] = ACTIONS(2810), @@ -116736,8 +116653,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2810), [anon_sym_LBRACK] = ACTIONS(2808), [sym_glimmer_opening_tag] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), [anon_sym_class] = ACTIONS(2810), [anon_sym_async] = ACTIONS(2810), [anon_sym_function] = ACTIONS(2810), @@ -116752,6 +116667,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2810), [anon_sym_PLUS_PLUS] = ACTIONS(2808), [anon_sym_DASH_DASH] = ACTIONS(2808), + [anon_sym_DQUOTE] = ACTIONS(2808), + [anon_sym_SQUOTE] = ACTIONS(2808), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2808), [sym_number] = ACTIONS(2808), @@ -116784,6 +116701,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2810), [sym_html_comment] = ACTIONS(5), }, + [886] = { + [ts_builtin_sym_end] = ACTIONS(1751), + [sym_identifier] = ACTIONS(1753), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_default] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1753), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_typeof] = ACTIONS(1753), + [anon_sym_import] = ACTIONS(1753), + [anon_sym_with] = ACTIONS(1753), + [anon_sym_var] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_const] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1751), + [anon_sym_else] = ACTIONS(1753), + [anon_sym_if] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1753), + [anon_sym_for] = ACTIONS(1753), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_await] = ACTIONS(1753), + [anon_sym_while] = ACTIONS(1753), + [anon_sym_do] = ACTIONS(1753), + [anon_sym_try] = ACTIONS(1753), + [anon_sym_break] = ACTIONS(1753), + [anon_sym_continue] = ACTIONS(1753), + [anon_sym_debugger] = ACTIONS(1753), + [anon_sym_return] = ACTIONS(1753), + [anon_sym_throw] = ACTIONS(1753), + [anon_sym_case] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1751), + [sym_glimmer_opening_tag] = ACTIONS(1751), + [anon_sym_class] = ACTIONS(1753), + [anon_sym_async] = ACTIONS(1753), + [anon_sym_function] = ACTIONS(1753), + [anon_sym_new] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1753), + [anon_sym_PLUS] = ACTIONS(1753), + [anon_sym_DASH] = ACTIONS(1753), + [anon_sym_SLASH] = ACTIONS(1753), + [anon_sym_LT] = ACTIONS(1753), + [anon_sym_TILDE] = ACTIONS(1751), + [anon_sym_void] = ACTIONS(1753), + [anon_sym_delete] = ACTIONS(1753), + [anon_sym_PLUS_PLUS] = ACTIONS(1751), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [anon_sym_SQUOTE] = ACTIONS(1751), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1751), + [sym_number] = ACTIONS(1751), + [sym_private_property_identifier] = ACTIONS(1751), + [sym_this] = ACTIONS(1753), + [sym_super] = ACTIONS(1753), + [sym_true] = ACTIONS(1753), + [sym_false] = ACTIONS(1753), + [sym_null] = ACTIONS(1753), + [sym_undefined] = ACTIONS(1753), + [anon_sym_AT] = ACTIONS(1751), + [anon_sym_static] = ACTIONS(1753), + [anon_sym_readonly] = ACTIONS(1753), + [anon_sym_get] = ACTIONS(1753), + [anon_sym_set] = ACTIONS(1753), + [anon_sym_declare] = ACTIONS(1753), + [anon_sym_public] = ACTIONS(1753), + [anon_sym_private] = ACTIONS(1753), + [anon_sym_protected] = ACTIONS(1753), + [anon_sym_override] = ACTIONS(1753), + [anon_sym_module] = ACTIONS(1753), + [anon_sym_any] = ACTIONS(1753), + [anon_sym_number] = ACTIONS(1753), + [anon_sym_boolean] = ACTIONS(1753), + [anon_sym_string] = ACTIONS(1753), + [anon_sym_symbol] = ACTIONS(1753), + [anon_sym_object] = ACTIONS(1753), + [anon_sym_abstract] = ACTIONS(1753), + [anon_sym_interface] = ACTIONS(1753), + [anon_sym_enum] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, [887] = { [ts_builtin_sym_end] = ACTIONS(2812), [sym_identifier] = ACTIONS(2814), @@ -116819,8 +116819,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2814), [anon_sym_LBRACK] = ACTIONS(2812), [sym_glimmer_opening_tag] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), [anon_sym_class] = ACTIONS(2814), [anon_sym_async] = ACTIONS(2814), [anon_sym_function] = ACTIONS(2814), @@ -116835,6 +116833,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2814), [anon_sym_PLUS_PLUS] = ACTIONS(2812), [anon_sym_DASH_DASH] = ACTIONS(2812), + [anon_sym_DQUOTE] = ACTIONS(2812), + [anon_sym_SQUOTE] = ACTIONS(2812), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2812), [sym_number] = ACTIONS(2812), @@ -116902,8 +116902,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2818), [anon_sym_LBRACK] = ACTIONS(2816), [sym_glimmer_opening_tag] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), [anon_sym_class] = ACTIONS(2818), [anon_sym_async] = ACTIONS(2818), [anon_sym_function] = ACTIONS(2818), @@ -116918,6 +116916,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2818), [anon_sym_PLUS_PLUS] = ACTIONS(2816), [anon_sym_DASH_DASH] = ACTIONS(2816), + [anon_sym_DQUOTE] = ACTIONS(2816), + [anon_sym_SQUOTE] = ACTIONS(2816), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2816), [sym_number] = ACTIONS(2816), @@ -116985,8 +116985,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2822), [anon_sym_LBRACK] = ACTIONS(2820), [sym_glimmer_opening_tag] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), [anon_sym_class] = ACTIONS(2822), [anon_sym_async] = ACTIONS(2822), [anon_sym_function] = ACTIONS(2822), @@ -117001,6 +116999,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2822), [anon_sym_PLUS_PLUS] = ACTIONS(2820), [anon_sym_DASH_DASH] = ACTIONS(2820), + [anon_sym_DQUOTE] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2820), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2820), [sym_number] = ACTIONS(2820), @@ -117068,8 +117068,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2826), [anon_sym_LBRACK] = ACTIONS(2824), [sym_glimmer_opening_tag] = ACTIONS(2824), - [anon_sym_DQUOTE] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), [anon_sym_class] = ACTIONS(2826), [anon_sym_async] = ACTIONS(2826), [anon_sym_function] = ACTIONS(2826), @@ -117084,6 +117082,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2826), [anon_sym_PLUS_PLUS] = ACTIONS(2824), [anon_sym_DASH_DASH] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2824), + [anon_sym_SQUOTE] = ACTIONS(2824), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2824), [sym_number] = ACTIONS(2824), @@ -117151,8 +117151,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2830), [anon_sym_LBRACK] = ACTIONS(2828), [sym_glimmer_opening_tag] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), [anon_sym_class] = ACTIONS(2830), [anon_sym_async] = ACTIONS(2830), [anon_sym_function] = ACTIONS(2830), @@ -117167,6 +117165,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2830), [anon_sym_PLUS_PLUS] = ACTIONS(2828), [anon_sym_DASH_DASH] = ACTIONS(2828), + [anon_sym_DQUOTE] = ACTIONS(2828), + [anon_sym_SQUOTE] = ACTIONS(2828), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2828), [sym_number] = ACTIONS(2828), @@ -117200,89 +117200,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [892] = { - [ts_builtin_sym_end] = ACTIONS(2820), - [sym_identifier] = ACTIONS(2822), - [anon_sym_export] = ACTIONS(2822), - [anon_sym_default] = ACTIONS(2822), - [anon_sym_type] = ACTIONS(2822), - [anon_sym_namespace] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_typeof] = ACTIONS(2822), - [anon_sym_import] = ACTIONS(2822), - [anon_sym_with] = ACTIONS(2822), - [anon_sym_var] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_const] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_else] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_switch] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_await] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_debugger] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_throw] = ACTIONS(2822), - [anon_sym_case] = ACTIONS(2822), - [anon_sym_yield] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2820), - [sym_glimmer_opening_tag] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_class] = ACTIONS(2822), - [anon_sym_async] = ACTIONS(2822), - [anon_sym_function] = ACTIONS(2822), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_using] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_SLASH] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2822), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_void] = ACTIONS(2822), - [anon_sym_delete] = ACTIONS(2822), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2820), - [sym_number] = ACTIONS(2820), - [sym_private_property_identifier] = ACTIONS(2820), - [sym_this] = ACTIONS(2822), - [sym_super] = ACTIONS(2822), - [sym_true] = ACTIONS(2822), - [sym_false] = ACTIONS(2822), - [sym_null] = ACTIONS(2822), - [sym_undefined] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2822), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_get] = ACTIONS(2822), - [anon_sym_set] = ACTIONS(2822), - [anon_sym_declare] = ACTIONS(2822), - [anon_sym_public] = ACTIONS(2822), - [anon_sym_private] = ACTIONS(2822), - [anon_sym_protected] = ACTIONS(2822), - [anon_sym_override] = ACTIONS(2822), - [anon_sym_module] = ACTIONS(2822), - [anon_sym_any] = ACTIONS(2822), - [anon_sym_number] = ACTIONS(2822), - [anon_sym_boolean] = ACTIONS(2822), - [anon_sym_string] = ACTIONS(2822), - [anon_sym_symbol] = ACTIONS(2822), - [anon_sym_object] = ACTIONS(2822), - [anon_sym_abstract] = ACTIONS(2822), - [anon_sym_interface] = ACTIONS(2822), - [anon_sym_enum] = ACTIONS(2822), - [sym_html_comment] = ACTIONS(5), - }, - [893] = { [ts_builtin_sym_end] = ACTIONS(2832), [sym_identifier] = ACTIONS(2834), [anon_sym_export] = ACTIONS(2834), @@ -117317,8 +117234,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2834), [anon_sym_LBRACK] = ACTIONS(2832), [sym_glimmer_opening_tag] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), [anon_sym_class] = ACTIONS(2834), [anon_sym_async] = ACTIONS(2834), [anon_sym_function] = ACTIONS(2834), @@ -117333,6 +117248,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2834), [anon_sym_PLUS_PLUS] = ACTIONS(2832), [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_DQUOTE] = ACTIONS(2832), + [anon_sym_SQUOTE] = ACTIONS(2832), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2832), [sym_number] = ACTIONS(2832), @@ -117365,6 +117282,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2834), [sym_html_comment] = ACTIONS(5), }, + [893] = { + [ts_builtin_sym_end] = ACTIONS(2824), + [sym_identifier] = ACTIONS(2826), + [anon_sym_export] = ACTIONS(2826), + [anon_sym_default] = ACTIONS(2826), + [anon_sym_type] = ACTIONS(2826), + [anon_sym_namespace] = ACTIONS(2826), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_RBRACE] = ACTIONS(2824), + [anon_sym_typeof] = ACTIONS(2826), + [anon_sym_import] = ACTIONS(2826), + [anon_sym_with] = ACTIONS(2826), + [anon_sym_var] = ACTIONS(2826), + [anon_sym_let] = ACTIONS(2826), + [anon_sym_const] = ACTIONS(2826), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_else] = ACTIONS(2826), + [anon_sym_if] = ACTIONS(2826), + [anon_sym_switch] = ACTIONS(2826), + [anon_sym_for] = ACTIONS(2826), + [anon_sym_LPAREN] = ACTIONS(2824), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_await] = ACTIONS(2826), + [anon_sym_while] = ACTIONS(2826), + [anon_sym_do] = ACTIONS(2826), + [anon_sym_try] = ACTIONS(2826), + [anon_sym_break] = ACTIONS(2826), + [anon_sym_continue] = ACTIONS(2826), + [anon_sym_debugger] = ACTIONS(2826), + [anon_sym_return] = ACTIONS(2826), + [anon_sym_throw] = ACTIONS(2826), + [anon_sym_case] = ACTIONS(2826), + [anon_sym_yield] = ACTIONS(2826), + [anon_sym_LBRACK] = ACTIONS(2824), + [sym_glimmer_opening_tag] = ACTIONS(2824), + [anon_sym_class] = ACTIONS(2826), + [anon_sym_async] = ACTIONS(2826), + [anon_sym_function] = ACTIONS(2826), + [anon_sym_new] = ACTIONS(2826), + [anon_sym_using] = ACTIONS(2826), + [anon_sym_PLUS] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2826), + [anon_sym_SLASH] = ACTIONS(2826), + [anon_sym_LT] = ACTIONS(2826), + [anon_sym_TILDE] = ACTIONS(2824), + [anon_sym_void] = ACTIONS(2826), + [anon_sym_delete] = ACTIONS(2826), + [anon_sym_PLUS_PLUS] = ACTIONS(2824), + [anon_sym_DASH_DASH] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(2824), + [anon_sym_SQUOTE] = ACTIONS(2824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2824), + [sym_number] = ACTIONS(2824), + [sym_private_property_identifier] = ACTIONS(2824), + [sym_this] = ACTIONS(2826), + [sym_super] = ACTIONS(2826), + [sym_true] = ACTIONS(2826), + [sym_false] = ACTIONS(2826), + [sym_null] = ACTIONS(2826), + [sym_undefined] = ACTIONS(2826), + [anon_sym_AT] = ACTIONS(2824), + [anon_sym_static] = ACTIONS(2826), + [anon_sym_readonly] = ACTIONS(2826), + [anon_sym_get] = ACTIONS(2826), + [anon_sym_set] = ACTIONS(2826), + [anon_sym_declare] = ACTIONS(2826), + [anon_sym_public] = ACTIONS(2826), + [anon_sym_private] = ACTIONS(2826), + [anon_sym_protected] = ACTIONS(2826), + [anon_sym_override] = ACTIONS(2826), + [anon_sym_module] = ACTIONS(2826), + [anon_sym_any] = ACTIONS(2826), + [anon_sym_number] = ACTIONS(2826), + [anon_sym_boolean] = ACTIONS(2826), + [anon_sym_string] = ACTIONS(2826), + [anon_sym_symbol] = ACTIONS(2826), + [anon_sym_object] = ACTIONS(2826), + [anon_sym_abstract] = ACTIONS(2826), + [anon_sym_interface] = ACTIONS(2826), + [anon_sym_enum] = ACTIONS(2826), + [sym_html_comment] = ACTIONS(5), + }, [894] = { [ts_builtin_sym_end] = ACTIONS(2836), [sym_identifier] = ACTIONS(2838), @@ -117400,8 +117400,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2838), [anon_sym_LBRACK] = ACTIONS(2836), [sym_glimmer_opening_tag] = ACTIONS(2836), - [anon_sym_DQUOTE] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), [anon_sym_class] = ACTIONS(2838), [anon_sym_async] = ACTIONS(2838), [anon_sym_function] = ACTIONS(2838), @@ -117416,6 +117414,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2838), [anon_sym_PLUS_PLUS] = ACTIONS(2836), [anon_sym_DASH_DASH] = ACTIONS(2836), + [anon_sym_DQUOTE] = ACTIONS(2836), + [anon_sym_SQUOTE] = ACTIONS(2836), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2836), [sym_number] = ACTIONS(2836), @@ -117483,8 +117483,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2842), [anon_sym_LBRACK] = ACTIONS(2840), [sym_glimmer_opening_tag] = ACTIONS(2840), - [anon_sym_DQUOTE] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), [anon_sym_class] = ACTIONS(2842), [anon_sym_async] = ACTIONS(2842), [anon_sym_function] = ACTIONS(2842), @@ -117499,6 +117497,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2842), [anon_sym_PLUS_PLUS] = ACTIONS(2840), [anon_sym_DASH_DASH] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2840), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2840), [sym_number] = ACTIONS(2840), @@ -117566,8 +117566,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2846), [anon_sym_LBRACK] = ACTIONS(2844), [sym_glimmer_opening_tag] = ACTIONS(2844), - [anon_sym_DQUOTE] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), [anon_sym_class] = ACTIONS(2846), [anon_sym_async] = ACTIONS(2846), [anon_sym_function] = ACTIONS(2846), @@ -117582,6 +117580,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2846), [anon_sym_PLUS_PLUS] = ACTIONS(2844), [anon_sym_DASH_DASH] = ACTIONS(2844), + [anon_sym_DQUOTE] = ACTIONS(2844), + [anon_sym_SQUOTE] = ACTIONS(2844), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2844), [sym_number] = ACTIONS(2844), @@ -117649,8 +117649,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2850), [anon_sym_LBRACK] = ACTIONS(2848), [sym_glimmer_opening_tag] = ACTIONS(2848), - [anon_sym_DQUOTE] = ACTIONS(2848), - [anon_sym_SQUOTE] = ACTIONS(2848), [anon_sym_class] = ACTIONS(2850), [anon_sym_async] = ACTIONS(2850), [anon_sym_function] = ACTIONS(2850), @@ -117665,6 +117663,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2850), [anon_sym_PLUS_PLUS] = ACTIONS(2848), [anon_sym_DASH_DASH] = ACTIONS(2848), + [anon_sym_DQUOTE] = ACTIONS(2848), + [anon_sym_SQUOTE] = ACTIONS(2848), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2848), [sym_number] = ACTIONS(2848), @@ -117698,89 +117698,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [898] = { - [ts_builtin_sym_end] = ACTIONS(1861), - [sym_identifier] = ACTIONS(1863), - [anon_sym_export] = ACTIONS(1863), - [anon_sym_default] = ACTIONS(1863), - [anon_sym_type] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_typeof] = ACTIONS(1863), - [anon_sym_import] = ACTIONS(1863), - [anon_sym_with] = ACTIONS(1863), - [anon_sym_var] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_switch] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_await] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_debugger] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_throw] = ACTIONS(1863), - [anon_sym_case] = ACTIONS(1863), - [anon_sym_yield] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1861), - [sym_glimmer_opening_tag] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1861), - [anon_sym_class] = ACTIONS(1863), - [anon_sym_async] = ACTIONS(1863), - [anon_sym_function] = ACTIONS(1863), - [anon_sym_new] = ACTIONS(1863), - [anon_sym_using] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_SLASH] = ACTIONS(1863), - [anon_sym_LT] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1861), - [anon_sym_void] = ACTIONS(1863), - [anon_sym_delete] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1861), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1861), - [sym_number] = ACTIONS(1861), - [sym_private_property_identifier] = ACTIONS(1861), - [sym_this] = ACTIONS(1863), - [sym_super] = ACTIONS(1863), - [sym_true] = ACTIONS(1863), - [sym_false] = ACTIONS(1863), - [sym_null] = ACTIONS(1863), - [sym_undefined] = ACTIONS(1863), - [anon_sym_AT] = ACTIONS(1861), - [anon_sym_static] = ACTIONS(1863), - [anon_sym_readonly] = ACTIONS(1863), - [anon_sym_get] = ACTIONS(1863), - [anon_sym_set] = ACTIONS(1863), - [anon_sym_declare] = ACTIONS(1863), - [anon_sym_public] = ACTIONS(1863), - [anon_sym_private] = ACTIONS(1863), - [anon_sym_protected] = ACTIONS(1863), - [anon_sym_override] = ACTIONS(1863), - [anon_sym_module] = ACTIONS(1863), - [anon_sym_any] = ACTIONS(1863), - [anon_sym_number] = ACTIONS(1863), - [anon_sym_boolean] = ACTIONS(1863), - [anon_sym_string] = ACTIONS(1863), - [anon_sym_symbol] = ACTIONS(1863), - [anon_sym_object] = ACTIONS(1863), - [anon_sym_abstract] = ACTIONS(1863), - [anon_sym_interface] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1863), - [sym_html_comment] = ACTIONS(5), - }, - [899] = { [ts_builtin_sym_end] = ACTIONS(2852), [sym_identifier] = ACTIONS(2854), [anon_sym_export] = ACTIONS(2854), @@ -117815,8 +117732,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2854), [anon_sym_LBRACK] = ACTIONS(2852), [sym_glimmer_opening_tag] = ACTIONS(2852), - [anon_sym_DQUOTE] = ACTIONS(2852), - [anon_sym_SQUOTE] = ACTIONS(2852), [anon_sym_class] = ACTIONS(2854), [anon_sym_async] = ACTIONS(2854), [anon_sym_function] = ACTIONS(2854), @@ -117831,6 +117746,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2854), [anon_sym_PLUS_PLUS] = ACTIONS(2852), [anon_sym_DASH_DASH] = ACTIONS(2852), + [anon_sym_DQUOTE] = ACTIONS(2852), + [anon_sym_SQUOTE] = ACTIONS(2852), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2852), [sym_number] = ACTIONS(2852), @@ -117863,6 +117780,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2854), [sym_html_comment] = ACTIONS(5), }, + [899] = { + [ts_builtin_sym_end] = ACTIONS(1925), + [sym_identifier] = ACTIONS(1927), + [anon_sym_export] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_namespace] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1925), + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_typeof] = ACTIONS(1927), + [anon_sym_import] = ACTIONS(1927), + [anon_sym_with] = ACTIONS(1927), + [anon_sym_var] = ACTIONS(1927), + [anon_sym_let] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_else] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_switch] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_await] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_do] = ACTIONS(1927), + [anon_sym_try] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_debugger] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_throw] = ACTIONS(1927), + [anon_sym_case] = ACTIONS(1927), + [anon_sym_yield] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1925), + [sym_glimmer_opening_tag] = ACTIONS(1925), + [anon_sym_class] = ACTIONS(1927), + [anon_sym_async] = ACTIONS(1927), + [anon_sym_function] = ACTIONS(1927), + [anon_sym_new] = ACTIONS(1927), + [anon_sym_using] = ACTIONS(1927), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_SLASH] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_void] = ACTIONS(1927), + [anon_sym_delete] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1925), + [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [anon_sym_SQUOTE] = ACTIONS(1925), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1925), + [sym_number] = ACTIONS(1925), + [sym_private_property_identifier] = ACTIONS(1925), + [sym_this] = ACTIONS(1927), + [sym_super] = ACTIONS(1927), + [sym_true] = ACTIONS(1927), + [sym_false] = ACTIONS(1927), + [sym_null] = ACTIONS(1927), + [sym_undefined] = ACTIONS(1927), + [anon_sym_AT] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1927), + [anon_sym_readonly] = ACTIONS(1927), + [anon_sym_get] = ACTIONS(1927), + [anon_sym_set] = ACTIONS(1927), + [anon_sym_declare] = ACTIONS(1927), + [anon_sym_public] = ACTIONS(1927), + [anon_sym_private] = ACTIONS(1927), + [anon_sym_protected] = ACTIONS(1927), + [anon_sym_override] = ACTIONS(1927), + [anon_sym_module] = ACTIONS(1927), + [anon_sym_any] = ACTIONS(1927), + [anon_sym_number] = ACTIONS(1927), + [anon_sym_boolean] = ACTIONS(1927), + [anon_sym_string] = ACTIONS(1927), + [anon_sym_symbol] = ACTIONS(1927), + [anon_sym_object] = ACTIONS(1927), + [anon_sym_abstract] = ACTIONS(1927), + [anon_sym_interface] = ACTIONS(1927), + [anon_sym_enum] = ACTIONS(1927), + [sym_html_comment] = ACTIONS(5), + }, [900] = { [ts_builtin_sym_end] = ACTIONS(2856), [sym_identifier] = ACTIONS(2858), @@ -117898,8 +117898,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2858), [anon_sym_LBRACK] = ACTIONS(2856), [sym_glimmer_opening_tag] = ACTIONS(2856), - [anon_sym_DQUOTE] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), [anon_sym_class] = ACTIONS(2858), [anon_sym_async] = ACTIONS(2858), [anon_sym_function] = ACTIONS(2858), @@ -117914,6 +117912,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2858), [anon_sym_PLUS_PLUS] = ACTIONS(2856), [anon_sym_DASH_DASH] = ACTIONS(2856), + [anon_sym_DQUOTE] = ACTIONS(2856), + [anon_sym_SQUOTE] = ACTIONS(2856), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2856), [sym_number] = ACTIONS(2856), @@ -117947,169 +117947,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [901] = { - [ts_builtin_sym_end] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2858), - [anon_sym_export] = ACTIONS(2858), - [anon_sym_default] = ACTIONS(2858), - [anon_sym_type] = ACTIONS(2858), - [anon_sym_namespace] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_RBRACE] = ACTIONS(2856), - [anon_sym_typeof] = ACTIONS(2858), - [anon_sym_import] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_var] = ACTIONS(2858), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_const] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_else] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_switch] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2856), - [anon_sym_await] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_break] = ACTIONS(2858), - [anon_sym_continue] = ACTIONS(2858), - [anon_sym_debugger] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_throw] = ACTIONS(2858), - [anon_sym_case] = ACTIONS(2858), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2856), - [sym_glimmer_opening_tag] = ACTIONS(2856), - [anon_sym_DQUOTE] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_class] = ACTIONS(2858), - [anon_sym_async] = ACTIONS(2858), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_using] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_void] = ACTIONS(2858), - [anon_sym_delete] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), + [ts_builtin_sym_end] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2862), + [anon_sym_export] = ACTIONS(2862), + [anon_sym_default] = ACTIONS(2862), + [anon_sym_type] = ACTIONS(2862), + [anon_sym_namespace] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_RBRACE] = ACTIONS(2860), + [anon_sym_typeof] = ACTIONS(2862), + [anon_sym_import] = ACTIONS(2862), + [anon_sym_with] = ACTIONS(2862), + [anon_sym_var] = ACTIONS(2862), + [anon_sym_let] = ACTIONS(2862), + [anon_sym_const] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2862), + [anon_sym_if] = ACTIONS(2862), + [anon_sym_switch] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2860), + [anon_sym_await] = ACTIONS(2862), + [anon_sym_while] = ACTIONS(2862), + [anon_sym_do] = ACTIONS(2862), + [anon_sym_try] = ACTIONS(2862), + [anon_sym_break] = ACTIONS(2862), + [anon_sym_continue] = ACTIONS(2862), + [anon_sym_debugger] = ACTIONS(2862), + [anon_sym_return] = ACTIONS(2862), + [anon_sym_throw] = ACTIONS(2862), + [anon_sym_case] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2862), + [anon_sym_LBRACK] = ACTIONS(2860), + [sym_glimmer_opening_tag] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2862), + [anon_sym_async] = ACTIONS(2862), + [anon_sym_function] = ACTIONS(2862), + [anon_sym_new] = ACTIONS(2862), + [anon_sym_using] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_SLASH] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2860), + [anon_sym_void] = ACTIONS(2862), + [anon_sym_delete] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2860), + [anon_sym_SQUOTE] = ACTIONS(2860), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2856), - [sym_number] = ACTIONS(2856), - [sym_private_property_identifier] = ACTIONS(2856), - [sym_this] = ACTIONS(2858), - [sym_super] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), - [sym_null] = ACTIONS(2858), - [sym_undefined] = ACTIONS(2858), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_static] = ACTIONS(2858), - [anon_sym_readonly] = ACTIONS(2858), - [anon_sym_get] = ACTIONS(2858), - [anon_sym_set] = ACTIONS(2858), - [anon_sym_declare] = ACTIONS(2858), - [anon_sym_public] = ACTIONS(2858), - [anon_sym_private] = ACTIONS(2858), - [anon_sym_protected] = ACTIONS(2858), - [anon_sym_override] = ACTIONS(2858), - [anon_sym_module] = ACTIONS(2858), - [anon_sym_any] = ACTIONS(2858), - [anon_sym_number] = ACTIONS(2858), - [anon_sym_boolean] = ACTIONS(2858), - [anon_sym_string] = ACTIONS(2858), - [anon_sym_symbol] = ACTIONS(2858), - [anon_sym_object] = ACTIONS(2858), - [anon_sym_abstract] = ACTIONS(2858), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_enum] = ACTIONS(2858), + [anon_sym_BQUOTE] = ACTIONS(2860), + [sym_number] = ACTIONS(2860), + [sym_private_property_identifier] = ACTIONS(2860), + [sym_this] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_true] = ACTIONS(2862), + [sym_false] = ACTIONS(2862), + [sym_null] = ACTIONS(2862), + [sym_undefined] = ACTIONS(2862), + [anon_sym_AT] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2862), + [anon_sym_readonly] = ACTIONS(2862), + [anon_sym_get] = ACTIONS(2862), + [anon_sym_set] = ACTIONS(2862), + [anon_sym_declare] = ACTIONS(2862), + [anon_sym_public] = ACTIONS(2862), + [anon_sym_private] = ACTIONS(2862), + [anon_sym_protected] = ACTIONS(2862), + [anon_sym_override] = ACTIONS(2862), + [anon_sym_module] = ACTIONS(2862), + [anon_sym_any] = ACTIONS(2862), + [anon_sym_number] = ACTIONS(2862), + [anon_sym_boolean] = ACTIONS(2862), + [anon_sym_string] = ACTIONS(2862), + [anon_sym_symbol] = ACTIONS(2862), + [anon_sym_object] = ACTIONS(2862), + [anon_sym_abstract] = ACTIONS(2862), + [anon_sym_interface] = ACTIONS(2862), + [anon_sym_enum] = ACTIONS(2862), [sym_html_comment] = ACTIONS(5), }, [902] = { - [ts_builtin_sym_end] = ACTIONS(2856), - [sym_identifier] = ACTIONS(2858), - [anon_sym_export] = ACTIONS(2858), - [anon_sym_default] = ACTIONS(2858), - [anon_sym_type] = ACTIONS(2858), - [anon_sym_namespace] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_RBRACE] = ACTIONS(2856), - [anon_sym_typeof] = ACTIONS(2858), - [anon_sym_import] = ACTIONS(2858), - [anon_sym_with] = ACTIONS(2858), - [anon_sym_var] = ACTIONS(2858), - [anon_sym_let] = ACTIONS(2858), - [anon_sym_const] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_else] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2858), - [anon_sym_switch] = ACTIONS(2858), - [anon_sym_for] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2856), - [anon_sym_await] = ACTIONS(2858), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2858), - [anon_sym_try] = ACTIONS(2858), - [anon_sym_break] = ACTIONS(2858), - [anon_sym_continue] = ACTIONS(2858), - [anon_sym_debugger] = ACTIONS(2858), - [anon_sym_return] = ACTIONS(2858), - [anon_sym_throw] = ACTIONS(2858), - [anon_sym_case] = ACTIONS(2858), - [anon_sym_yield] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2856), - [sym_glimmer_opening_tag] = ACTIONS(2856), - [anon_sym_DQUOTE] = ACTIONS(2856), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_class] = ACTIONS(2858), - [anon_sym_async] = ACTIONS(2858), - [anon_sym_function] = ACTIONS(2858), - [anon_sym_new] = ACTIONS(2858), - [anon_sym_using] = ACTIONS(2858), - [anon_sym_PLUS] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2858), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_void] = ACTIONS(2858), - [anon_sym_delete] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), + [ts_builtin_sym_end] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2862), + [anon_sym_export] = ACTIONS(2862), + [anon_sym_default] = ACTIONS(2862), + [anon_sym_type] = ACTIONS(2862), + [anon_sym_namespace] = ACTIONS(2862), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_RBRACE] = ACTIONS(2860), + [anon_sym_typeof] = ACTIONS(2862), + [anon_sym_import] = ACTIONS(2862), + [anon_sym_with] = ACTIONS(2862), + [anon_sym_var] = ACTIONS(2862), + [anon_sym_let] = ACTIONS(2862), + [anon_sym_const] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2860), + [anon_sym_else] = ACTIONS(2862), + [anon_sym_if] = ACTIONS(2862), + [anon_sym_switch] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2862), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2860), + [anon_sym_await] = ACTIONS(2862), + [anon_sym_while] = ACTIONS(2862), + [anon_sym_do] = ACTIONS(2862), + [anon_sym_try] = ACTIONS(2862), + [anon_sym_break] = ACTIONS(2862), + [anon_sym_continue] = ACTIONS(2862), + [anon_sym_debugger] = ACTIONS(2862), + [anon_sym_return] = ACTIONS(2862), + [anon_sym_throw] = ACTIONS(2862), + [anon_sym_case] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2862), + [anon_sym_LBRACK] = ACTIONS(2860), + [sym_glimmer_opening_tag] = ACTIONS(2860), + [anon_sym_class] = ACTIONS(2862), + [anon_sym_async] = ACTIONS(2862), + [anon_sym_function] = ACTIONS(2862), + [anon_sym_new] = ACTIONS(2862), + [anon_sym_using] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2862), + [anon_sym_SLASH] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2860), + [anon_sym_void] = ACTIONS(2862), + [anon_sym_delete] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2860), + [anon_sym_SQUOTE] = ACTIONS(2860), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2856), - [sym_number] = ACTIONS(2856), - [sym_private_property_identifier] = ACTIONS(2856), - [sym_this] = ACTIONS(2858), - [sym_super] = ACTIONS(2858), - [sym_true] = ACTIONS(2858), - [sym_false] = ACTIONS(2858), - [sym_null] = ACTIONS(2858), - [sym_undefined] = ACTIONS(2858), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_static] = ACTIONS(2858), - [anon_sym_readonly] = ACTIONS(2858), - [anon_sym_get] = ACTIONS(2858), - [anon_sym_set] = ACTIONS(2858), - [anon_sym_declare] = ACTIONS(2858), - [anon_sym_public] = ACTIONS(2858), - [anon_sym_private] = ACTIONS(2858), - [anon_sym_protected] = ACTIONS(2858), - [anon_sym_override] = ACTIONS(2858), - [anon_sym_module] = ACTIONS(2858), - [anon_sym_any] = ACTIONS(2858), - [anon_sym_number] = ACTIONS(2858), - [anon_sym_boolean] = ACTIONS(2858), - [anon_sym_string] = ACTIONS(2858), - [anon_sym_symbol] = ACTIONS(2858), - [anon_sym_object] = ACTIONS(2858), - [anon_sym_abstract] = ACTIONS(2858), - [anon_sym_interface] = ACTIONS(2858), - [anon_sym_enum] = ACTIONS(2858), + [anon_sym_BQUOTE] = ACTIONS(2860), + [sym_number] = ACTIONS(2860), + [sym_private_property_identifier] = ACTIONS(2860), + [sym_this] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_true] = ACTIONS(2862), + [sym_false] = ACTIONS(2862), + [sym_null] = ACTIONS(2862), + [sym_undefined] = ACTIONS(2862), + [anon_sym_AT] = ACTIONS(2860), + [anon_sym_static] = ACTIONS(2862), + [anon_sym_readonly] = ACTIONS(2862), + [anon_sym_get] = ACTIONS(2862), + [anon_sym_set] = ACTIONS(2862), + [anon_sym_declare] = ACTIONS(2862), + [anon_sym_public] = ACTIONS(2862), + [anon_sym_private] = ACTIONS(2862), + [anon_sym_protected] = ACTIONS(2862), + [anon_sym_override] = ACTIONS(2862), + [anon_sym_module] = ACTIONS(2862), + [anon_sym_any] = ACTIONS(2862), + [anon_sym_number] = ACTIONS(2862), + [anon_sym_boolean] = ACTIONS(2862), + [anon_sym_string] = ACTIONS(2862), + [anon_sym_symbol] = ACTIONS(2862), + [anon_sym_object] = ACTIONS(2862), + [anon_sym_abstract] = ACTIONS(2862), + [anon_sym_interface] = ACTIONS(2862), + [anon_sym_enum] = ACTIONS(2862), [sym_html_comment] = ACTIONS(5), }, [903] = { @@ -118147,8 +118147,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2862), [anon_sym_LBRACK] = ACTIONS(2860), [sym_glimmer_opening_tag] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(2860), - [anon_sym_SQUOTE] = ACTIONS(2860), [anon_sym_class] = ACTIONS(2862), [anon_sym_async] = ACTIONS(2862), [anon_sym_function] = ACTIONS(2862), @@ -118163,6 +118161,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2862), [anon_sym_PLUS_PLUS] = ACTIONS(2860), [anon_sym_DASH_DASH] = ACTIONS(2860), + [anon_sym_DQUOTE] = ACTIONS(2860), + [anon_sym_SQUOTE] = ACTIONS(2860), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2860), [sym_number] = ACTIONS(2860), @@ -118230,8 +118230,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2866), [anon_sym_LBRACK] = ACTIONS(2864), [sym_glimmer_opening_tag] = ACTIONS(2864), - [anon_sym_DQUOTE] = ACTIONS(2864), - [anon_sym_SQUOTE] = ACTIONS(2864), [anon_sym_class] = ACTIONS(2866), [anon_sym_async] = ACTIONS(2866), [anon_sym_function] = ACTIONS(2866), @@ -118246,6 +118244,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2866), [anon_sym_PLUS_PLUS] = ACTIONS(2864), [anon_sym_DASH_DASH] = ACTIONS(2864), + [anon_sym_DQUOTE] = ACTIONS(2864), + [anon_sym_SQUOTE] = ACTIONS(2864), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2864), [sym_number] = ACTIONS(2864), @@ -118313,8 +118313,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2870), [anon_sym_LBRACK] = ACTIONS(2868), [sym_glimmer_opening_tag] = ACTIONS(2868), - [anon_sym_DQUOTE] = ACTIONS(2868), - [anon_sym_SQUOTE] = ACTIONS(2868), [anon_sym_class] = ACTIONS(2870), [anon_sym_async] = ACTIONS(2870), [anon_sym_function] = ACTIONS(2870), @@ -118329,6 +118327,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2870), [anon_sym_PLUS_PLUS] = ACTIONS(2868), [anon_sym_DASH_DASH] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_SQUOTE] = ACTIONS(2868), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2868), [sym_number] = ACTIONS(2868), @@ -118396,8 +118396,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2874), [anon_sym_LBRACK] = ACTIONS(2872), [sym_glimmer_opening_tag] = ACTIONS(2872), - [anon_sym_DQUOTE] = ACTIONS(2872), - [anon_sym_SQUOTE] = ACTIONS(2872), [anon_sym_class] = ACTIONS(2874), [anon_sym_async] = ACTIONS(2874), [anon_sym_function] = ACTIONS(2874), @@ -118412,6 +118410,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2874), [anon_sym_PLUS_PLUS] = ACTIONS(2872), [anon_sym_DASH_DASH] = ACTIONS(2872), + [anon_sym_DQUOTE] = ACTIONS(2872), + [anon_sym_SQUOTE] = ACTIONS(2872), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2872), [sym_number] = ACTIONS(2872), @@ -118479,8 +118479,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2878), [anon_sym_LBRACK] = ACTIONS(2876), [sym_glimmer_opening_tag] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), [anon_sym_class] = ACTIONS(2878), [anon_sym_async] = ACTIONS(2878), [anon_sym_function] = ACTIONS(2878), @@ -118495,6 +118493,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2878), [anon_sym_PLUS_PLUS] = ACTIONS(2876), [anon_sym_DASH_DASH] = ACTIONS(2876), + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_SQUOTE] = ACTIONS(2876), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2876), [sym_number] = ACTIONS(2876), @@ -118528,6 +118528,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [908] = { + [ts_builtin_sym_end] = ACTIONS(2880), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2882), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_RBRACE] = ACTIONS(2880), + [anon_sym_typeof] = ACTIONS(2882), + [anon_sym_import] = ACTIONS(2882), + [anon_sym_with] = ACTIONS(2882), + [anon_sym_var] = ACTIONS(2882), + [anon_sym_let] = ACTIONS(2882), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_BANG] = ACTIONS(2880), + [anon_sym_else] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_switch] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2882), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_SEMI] = ACTIONS(2880), + [anon_sym_await] = ACTIONS(2882), + [anon_sym_while] = ACTIONS(2882), + [anon_sym_do] = ACTIONS(2882), + [anon_sym_try] = ACTIONS(2882), + [anon_sym_break] = ACTIONS(2882), + [anon_sym_continue] = ACTIONS(2882), + [anon_sym_debugger] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_throw] = ACTIONS(2882), + [anon_sym_case] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2882), + [anon_sym_LBRACK] = ACTIONS(2880), + [sym_glimmer_opening_tag] = ACTIONS(2880), + [anon_sym_class] = ACTIONS(2882), + [anon_sym_async] = ACTIONS(2882), + [anon_sym_function] = ACTIONS(2882), + [anon_sym_new] = ACTIONS(2882), + [anon_sym_using] = ACTIONS(2882), + [anon_sym_PLUS] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2882), + [anon_sym_SLASH] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2882), + [anon_sym_TILDE] = ACTIONS(2880), + [anon_sym_void] = ACTIONS(2882), + [anon_sym_delete] = ACTIONS(2882), + [anon_sym_PLUS_PLUS] = ACTIONS(2880), + [anon_sym_DASH_DASH] = ACTIONS(2880), + [anon_sym_DQUOTE] = ACTIONS(2880), + [anon_sym_SQUOTE] = ACTIONS(2880), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2880), + [sym_number] = ACTIONS(2880), + [sym_private_property_identifier] = ACTIONS(2880), + [sym_this] = ACTIONS(2882), + [sym_super] = ACTIONS(2882), + [sym_true] = ACTIONS(2882), + [sym_false] = ACTIONS(2882), + [sym_null] = ACTIONS(2882), + [sym_undefined] = ACTIONS(2882), + [anon_sym_AT] = ACTIONS(2880), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_get] = ACTIONS(2882), + [anon_sym_set] = ACTIONS(2882), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_override] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [anon_sym_object] = ACTIONS(2882), + [anon_sym_abstract] = ACTIONS(2882), + [anon_sym_interface] = ACTIONS(2882), + [anon_sym_enum] = ACTIONS(2882), + [sym_html_comment] = ACTIONS(5), + }, + [909] = { [ts_builtin_sym_end] = ACTIONS(2776), [sym_identifier] = ACTIONS(2778), [anon_sym_export] = ACTIONS(2778), @@ -118562,8 +118645,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2778), [anon_sym_LBRACK] = ACTIONS(2776), [sym_glimmer_opening_tag] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), [anon_sym_class] = ACTIONS(2778), [anon_sym_async] = ACTIONS(2778), [anon_sym_function] = ACTIONS(2778), @@ -118578,6 +118659,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2778), [anon_sym_PLUS_PLUS] = ACTIONS(2776), [anon_sym_DASH_DASH] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2776), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2776), [sym_number] = ACTIONS(2776), @@ -118610,89 +118693,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2778), [sym_html_comment] = ACTIONS(5), }, - [909] = { - [ts_builtin_sym_end] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2878), - [anon_sym_export] = ACTIONS(2878), - [anon_sym_default] = ACTIONS(2878), - [anon_sym_type] = ACTIONS(2878), - [anon_sym_namespace] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2876), - [anon_sym_RBRACE] = ACTIONS(2876), - [anon_sym_typeof] = ACTIONS(2878), - [anon_sym_import] = ACTIONS(2878), - [anon_sym_with] = ACTIONS(2878), - [anon_sym_var] = ACTIONS(2878), - [anon_sym_let] = ACTIONS(2878), - [anon_sym_const] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_else] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2878), - [anon_sym_switch] = ACTIONS(2878), - [anon_sym_for] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2876), - [anon_sym_await] = ACTIONS(2878), - [anon_sym_while] = ACTIONS(2878), - [anon_sym_do] = ACTIONS(2878), - [anon_sym_try] = ACTIONS(2878), - [anon_sym_break] = ACTIONS(2878), - [anon_sym_continue] = ACTIONS(2878), - [anon_sym_debugger] = ACTIONS(2878), - [anon_sym_return] = ACTIONS(2878), - [anon_sym_throw] = ACTIONS(2878), - [anon_sym_case] = ACTIONS(2878), - [anon_sym_yield] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2876), - [sym_glimmer_opening_tag] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2876), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_class] = ACTIONS(2878), - [anon_sym_async] = ACTIONS(2878), - [anon_sym_function] = ACTIONS(2878), - [anon_sym_new] = ACTIONS(2878), - [anon_sym_using] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2876), - [anon_sym_void] = ACTIONS(2878), - [anon_sym_delete] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2876), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2876), - [sym_number] = ACTIONS(2876), - [sym_private_property_identifier] = ACTIONS(2876), - [sym_this] = ACTIONS(2878), - [sym_super] = ACTIONS(2878), - [sym_true] = ACTIONS(2878), - [sym_false] = ACTIONS(2878), - [sym_null] = ACTIONS(2878), - [sym_undefined] = ACTIONS(2878), - [anon_sym_AT] = ACTIONS(2876), - [anon_sym_static] = ACTIONS(2878), - [anon_sym_readonly] = ACTIONS(2878), - [anon_sym_get] = ACTIONS(2878), - [anon_sym_set] = ACTIONS(2878), - [anon_sym_declare] = ACTIONS(2878), - [anon_sym_public] = ACTIONS(2878), - [anon_sym_private] = ACTIONS(2878), - [anon_sym_protected] = ACTIONS(2878), - [anon_sym_override] = ACTIONS(2878), - [anon_sym_module] = ACTIONS(2878), - [anon_sym_any] = ACTIONS(2878), - [anon_sym_number] = ACTIONS(2878), - [anon_sym_boolean] = ACTIONS(2878), - [anon_sym_string] = ACTIONS(2878), - [anon_sym_symbol] = ACTIONS(2878), - [anon_sym_object] = ACTIONS(2878), - [anon_sym_abstract] = ACTIONS(2878), - [anon_sym_interface] = ACTIONS(2878), - [anon_sym_enum] = ACTIONS(2878), - [sym_html_comment] = ACTIONS(5), - }, [910] = { [ts_builtin_sym_end] = ACTIONS(2880), [sym_identifier] = ACTIONS(2882), @@ -118728,8 +118728,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2882), [anon_sym_LBRACK] = ACTIONS(2880), [sym_glimmer_opening_tag] = ACTIONS(2880), - [anon_sym_DQUOTE] = ACTIONS(2880), - [anon_sym_SQUOTE] = ACTIONS(2880), [anon_sym_class] = ACTIONS(2882), [anon_sym_async] = ACTIONS(2882), [anon_sym_function] = ACTIONS(2882), @@ -118744,6 +118742,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2882), [anon_sym_PLUS_PLUS] = ACTIONS(2880), [anon_sym_DASH_DASH] = ACTIONS(2880), + [anon_sym_DQUOTE] = ACTIONS(2880), + [anon_sym_SQUOTE] = ACTIONS(2880), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2880), [sym_number] = ACTIONS(2880), @@ -118811,8 +118811,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2886), [anon_sym_LBRACK] = ACTIONS(2884), [sym_glimmer_opening_tag] = ACTIONS(2884), - [anon_sym_DQUOTE] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), [anon_sym_class] = ACTIONS(2886), [anon_sym_async] = ACTIONS(2886), [anon_sym_function] = ACTIONS(2886), @@ -118827,6 +118825,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2886), [anon_sym_PLUS_PLUS] = ACTIONS(2884), [anon_sym_DASH_DASH] = ACTIONS(2884), + [anon_sym_DQUOTE] = ACTIONS(2884), + [anon_sym_SQUOTE] = ACTIONS(2884), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2884), [sym_number] = ACTIONS(2884), @@ -118894,8 +118894,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2890), [anon_sym_LBRACK] = ACTIONS(2888), [sym_glimmer_opening_tag] = ACTIONS(2888), - [anon_sym_DQUOTE] = ACTIONS(2888), - [anon_sym_SQUOTE] = ACTIONS(2888), [anon_sym_class] = ACTIONS(2890), [anon_sym_async] = ACTIONS(2890), [anon_sym_function] = ACTIONS(2890), @@ -118910,6 +118908,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2890), [anon_sym_PLUS_PLUS] = ACTIONS(2888), [anon_sym_DASH_DASH] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(2888), + [anon_sym_SQUOTE] = ACTIONS(2888), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2888), [sym_number] = ACTIONS(2888), @@ -118977,8 +118977,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2894), [anon_sym_LBRACK] = ACTIONS(2892), [sym_glimmer_opening_tag] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), [anon_sym_class] = ACTIONS(2894), [anon_sym_async] = ACTIONS(2894), [anon_sym_function] = ACTIONS(2894), @@ -118993,6 +118991,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2894), [anon_sym_PLUS_PLUS] = ACTIONS(2892), [anon_sym_DASH_DASH] = ACTIONS(2892), + [anon_sym_DQUOTE] = ACTIONS(2892), + [anon_sym_SQUOTE] = ACTIONS(2892), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2892), [sym_number] = ACTIONS(2892), @@ -119060,8 +119060,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2898), [anon_sym_LBRACK] = ACTIONS(2896), [sym_glimmer_opening_tag] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), [anon_sym_class] = ACTIONS(2898), [anon_sym_async] = ACTIONS(2898), [anon_sym_function] = ACTIONS(2898), @@ -119076,6 +119074,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2898), [anon_sym_PLUS_PLUS] = ACTIONS(2896), [anon_sym_DASH_DASH] = ACTIONS(2896), + [anon_sym_DQUOTE] = ACTIONS(2896), + [anon_sym_SQUOTE] = ACTIONS(2896), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2896), [sym_number] = ACTIONS(2896), @@ -119143,8 +119143,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2902), [anon_sym_LBRACK] = ACTIONS(2900), [sym_glimmer_opening_tag] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), [anon_sym_class] = ACTIONS(2902), [anon_sym_async] = ACTIONS(2902), [anon_sym_function] = ACTIONS(2902), @@ -119159,6 +119157,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2902), [anon_sym_PLUS_PLUS] = ACTIONS(2900), [anon_sym_DASH_DASH] = ACTIONS(2900), + [anon_sym_DQUOTE] = ACTIONS(2900), + [anon_sym_SQUOTE] = ACTIONS(2900), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2900), [sym_number] = ACTIONS(2900), @@ -119226,8 +119226,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2906), [anon_sym_LBRACK] = ACTIONS(2904), [sym_glimmer_opening_tag] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [anon_sym_SQUOTE] = ACTIONS(2904), [anon_sym_class] = ACTIONS(2906), [anon_sym_async] = ACTIONS(2906), [anon_sym_function] = ACTIONS(2906), @@ -119242,6 +119240,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2906), [anon_sym_PLUS_PLUS] = ACTIONS(2904), [anon_sym_DASH_DASH] = ACTIONS(2904), + [anon_sym_DQUOTE] = ACTIONS(2904), + [anon_sym_SQUOTE] = ACTIONS(2904), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2904), [sym_number] = ACTIONS(2904), @@ -119275,89 +119275,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [917] = { - [ts_builtin_sym_end] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2902), - [anon_sym_export] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2902), - [anon_sym_type] = ACTIONS(2902), - [anon_sym_namespace] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2900), - [anon_sym_typeof] = ACTIONS(2902), - [anon_sym_import] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2902), - [anon_sym_var] = ACTIONS(2902), - [anon_sym_let] = ACTIONS(2902), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2900), - [anon_sym_else] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_switch] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2900), - [anon_sym_await] = ACTIONS(2902), - [anon_sym_while] = ACTIONS(2902), - [anon_sym_do] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2902), - [anon_sym_break] = ACTIONS(2902), - [anon_sym_continue] = ACTIONS(2902), - [anon_sym_debugger] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2902), - [anon_sym_throw] = ACTIONS(2902), - [anon_sym_case] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2900), - [sym_glimmer_opening_tag] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [anon_sym_class] = ACTIONS(2902), - [anon_sym_async] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2902), - [anon_sym_new] = ACTIONS(2902), - [anon_sym_using] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_void] = ACTIONS(2902), - [anon_sym_delete] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2900), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2900), - [sym_number] = ACTIONS(2900), - [sym_private_property_identifier] = ACTIONS(2900), - [sym_this] = ACTIONS(2902), - [sym_super] = ACTIONS(2902), - [sym_true] = ACTIONS(2902), - [sym_false] = ACTIONS(2902), - [sym_null] = ACTIONS(2902), - [sym_undefined] = ACTIONS(2902), - [anon_sym_AT] = ACTIONS(2900), - [anon_sym_static] = ACTIONS(2902), - [anon_sym_readonly] = ACTIONS(2902), - [anon_sym_get] = ACTIONS(2902), - [anon_sym_set] = ACTIONS(2902), - [anon_sym_declare] = ACTIONS(2902), - [anon_sym_public] = ACTIONS(2902), - [anon_sym_private] = ACTIONS(2902), - [anon_sym_protected] = ACTIONS(2902), - [anon_sym_override] = ACTIONS(2902), - [anon_sym_module] = ACTIONS(2902), - [anon_sym_any] = ACTIONS(2902), - [anon_sym_number] = ACTIONS(2902), - [anon_sym_boolean] = ACTIONS(2902), - [anon_sym_string] = ACTIONS(2902), - [anon_sym_symbol] = ACTIONS(2902), - [anon_sym_object] = ACTIONS(2902), - [anon_sym_abstract] = ACTIONS(2902), - [anon_sym_interface] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(2902), - [sym_html_comment] = ACTIONS(5), - }, - [918] = { [ts_builtin_sym_end] = ACTIONS(2908), [sym_identifier] = ACTIONS(2910), [anon_sym_export] = ACTIONS(2910), @@ -119392,8 +119309,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2910), [anon_sym_LBRACK] = ACTIONS(2908), [sym_glimmer_opening_tag] = ACTIONS(2908), - [anon_sym_DQUOTE] = ACTIONS(2908), - [anon_sym_SQUOTE] = ACTIONS(2908), [anon_sym_class] = ACTIONS(2910), [anon_sym_async] = ACTIONS(2910), [anon_sym_function] = ACTIONS(2910), @@ -119408,6 +119323,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2910), [anon_sym_PLUS_PLUS] = ACTIONS(2908), [anon_sym_DASH_DASH] = ACTIONS(2908), + [anon_sym_DQUOTE] = ACTIONS(2908), + [anon_sym_SQUOTE] = ACTIONS(2908), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2908), [sym_number] = ACTIONS(2908), @@ -119440,6 +119357,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2910), [sym_html_comment] = ACTIONS(5), }, + [918] = { + [ts_builtin_sym_end] = ACTIONS(2904), + [sym_identifier] = ACTIONS(2906), + [anon_sym_export] = ACTIONS(2906), + [anon_sym_default] = ACTIONS(2906), + [anon_sym_type] = ACTIONS(2906), + [anon_sym_namespace] = ACTIONS(2906), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_RBRACE] = ACTIONS(2904), + [anon_sym_typeof] = ACTIONS(2906), + [anon_sym_import] = ACTIONS(2906), + [anon_sym_with] = ACTIONS(2906), + [anon_sym_var] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_else] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_switch] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_SEMI] = ACTIONS(2904), + [anon_sym_await] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_do] = ACTIONS(2906), + [anon_sym_try] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_debugger] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_throw] = ACTIONS(2906), + [anon_sym_case] = ACTIONS(2906), + [anon_sym_yield] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2904), + [sym_glimmer_opening_tag] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2906), + [anon_sym_async] = ACTIONS(2906), + [anon_sym_function] = ACTIONS(2906), + [anon_sym_new] = ACTIONS(2906), + [anon_sym_using] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [anon_sym_SLASH] = ACTIONS(2906), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2904), + [anon_sym_void] = ACTIONS(2906), + [anon_sym_delete] = ACTIONS(2906), + [anon_sym_PLUS_PLUS] = ACTIONS(2904), + [anon_sym_DASH_DASH] = ACTIONS(2904), + [anon_sym_DQUOTE] = ACTIONS(2904), + [anon_sym_SQUOTE] = ACTIONS(2904), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2904), + [sym_number] = ACTIONS(2904), + [sym_private_property_identifier] = ACTIONS(2904), + [sym_this] = ACTIONS(2906), + [sym_super] = ACTIONS(2906), + [sym_true] = ACTIONS(2906), + [sym_false] = ACTIONS(2906), + [sym_null] = ACTIONS(2906), + [sym_undefined] = ACTIONS(2906), + [anon_sym_AT] = ACTIONS(2904), + [anon_sym_static] = ACTIONS(2906), + [anon_sym_readonly] = ACTIONS(2906), + [anon_sym_get] = ACTIONS(2906), + [anon_sym_set] = ACTIONS(2906), + [anon_sym_declare] = ACTIONS(2906), + [anon_sym_public] = ACTIONS(2906), + [anon_sym_private] = ACTIONS(2906), + [anon_sym_protected] = ACTIONS(2906), + [anon_sym_override] = ACTIONS(2906), + [anon_sym_module] = ACTIONS(2906), + [anon_sym_any] = ACTIONS(2906), + [anon_sym_number] = ACTIONS(2906), + [anon_sym_boolean] = ACTIONS(2906), + [anon_sym_string] = ACTIONS(2906), + [anon_sym_symbol] = ACTIONS(2906), + [anon_sym_object] = ACTIONS(2906), + [anon_sym_abstract] = ACTIONS(2906), + [anon_sym_interface] = ACTIONS(2906), + [anon_sym_enum] = ACTIONS(2906), + [sym_html_comment] = ACTIONS(5), + }, [919] = { [ts_builtin_sym_end] = ACTIONS(2912), [sym_identifier] = ACTIONS(2914), @@ -119475,8 +119475,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2914), [anon_sym_LBRACK] = ACTIONS(2912), [sym_glimmer_opening_tag] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2912), - [anon_sym_SQUOTE] = ACTIONS(2912), [anon_sym_class] = ACTIONS(2914), [anon_sym_async] = ACTIONS(2914), [anon_sym_function] = ACTIONS(2914), @@ -119491,6 +119489,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2914), [anon_sym_PLUS_PLUS] = ACTIONS(2912), [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_DQUOTE] = ACTIONS(2912), + [anon_sym_SQUOTE] = ACTIONS(2912), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2912), [sym_number] = ACTIONS(2912), @@ -119558,8 +119558,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2918), [anon_sym_LBRACK] = ACTIONS(2916), [sym_glimmer_opening_tag] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [anon_sym_SQUOTE] = ACTIONS(2916), [anon_sym_class] = ACTIONS(2918), [anon_sym_async] = ACTIONS(2918), [anon_sym_function] = ACTIONS(2918), @@ -119574,6 +119572,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2918), [anon_sym_PLUS_PLUS] = ACTIONS(2916), [anon_sym_DASH_DASH] = ACTIONS(2916), + [anon_sym_DQUOTE] = ACTIONS(2916), + [anon_sym_SQUOTE] = ACTIONS(2916), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2916), [sym_number] = ACTIONS(2916), @@ -119641,8 +119641,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2922), [anon_sym_LBRACK] = ACTIONS(2920), [sym_glimmer_opening_tag] = ACTIONS(2920), - [anon_sym_DQUOTE] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), [anon_sym_class] = ACTIONS(2922), [anon_sym_async] = ACTIONS(2922), [anon_sym_function] = ACTIONS(2922), @@ -119657,6 +119655,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2922), [anon_sym_PLUS_PLUS] = ACTIONS(2920), [anon_sym_DASH_DASH] = ACTIONS(2920), + [anon_sym_DQUOTE] = ACTIONS(2920), + [anon_sym_SQUOTE] = ACTIONS(2920), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2920), [sym_number] = ACTIONS(2920), @@ -119690,43 +119690,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [922] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_rest_pattern] = STATE(5271), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(4907), + [sym_optional_tuple_parameter] = STATE(4907), + [sym_optional_type] = STATE(4907), + [sym_rest_type] = STATE(4907), + [sym__tuple_type_member] = STATE(4907), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(2560), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -119737,8 +119737,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), [anon_sym_AMP] = ACTIONS(610), @@ -119747,6 +119745,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -119807,8 +119807,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2930), [anon_sym_LBRACK] = ACTIONS(2928), [sym_glimmer_opening_tag] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), [anon_sym_class] = ACTIONS(2930), [anon_sym_async] = ACTIONS(2930), [anon_sym_function] = ACTIONS(2930), @@ -119823,6 +119821,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2930), [anon_sym_PLUS_PLUS] = ACTIONS(2928), [anon_sym_DASH_DASH] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(2928), + [anon_sym_SQUOTE] = ACTIONS(2928), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2928), [sym_number] = ACTIONS(2928), @@ -119890,8 +119890,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2934), [anon_sym_LBRACK] = ACTIONS(2932), [sym_glimmer_opening_tag] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2932), - [anon_sym_SQUOTE] = ACTIONS(2932), [anon_sym_class] = ACTIONS(2934), [anon_sym_async] = ACTIONS(2934), [anon_sym_function] = ACTIONS(2934), @@ -119906,6 +119904,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2934), [anon_sym_PLUS_PLUS] = ACTIONS(2932), [anon_sym_DASH_DASH] = ACTIONS(2932), + [anon_sym_DQUOTE] = ACTIONS(2932), + [anon_sym_SQUOTE] = ACTIONS(2932), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2932), [sym_number] = ACTIONS(2932), @@ -119939,43 +119939,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [925] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(4542), - [sym_optional_tuple_parameter] = STATE(4542), - [sym_optional_type] = STATE(4542), - [sym_rest_type] = STATE(4542), - [sym__tuple_type_member] = STATE(4542), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_rest_pattern] = STATE(5271), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(4538), + [sym_optional_tuple_parameter] = STATE(4538), + [sym_optional_type] = STATE(4538), + [sym_rest_type] = STATE(4538), + [sym__tuple_type_member] = STATE(4538), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(2560), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -119986,8 +119986,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(2938), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), [anon_sym_AMP] = ACTIONS(610), @@ -119996,6 +119994,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -120056,8 +120056,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2942), [anon_sym_LBRACK] = ACTIONS(2940), [sym_glimmer_opening_tag] = ACTIONS(2940), - [anon_sym_DQUOTE] = ACTIONS(2940), - [anon_sym_SQUOTE] = ACTIONS(2940), [anon_sym_class] = ACTIONS(2942), [anon_sym_async] = ACTIONS(2942), [anon_sym_function] = ACTIONS(2942), @@ -120072,6 +120070,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2942), [anon_sym_PLUS_PLUS] = ACTIONS(2940), [anon_sym_DASH_DASH] = ACTIONS(2940), + [anon_sym_DQUOTE] = ACTIONS(2940), + [anon_sym_SQUOTE] = ACTIONS(2940), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2940), [sym_number] = ACTIONS(2940), @@ -120139,8 +120139,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2946), [anon_sym_LBRACK] = ACTIONS(2944), [sym_glimmer_opening_tag] = ACTIONS(2944), - [anon_sym_DQUOTE] = ACTIONS(2944), - [anon_sym_SQUOTE] = ACTIONS(2944), [anon_sym_class] = ACTIONS(2946), [anon_sym_async] = ACTIONS(2946), [anon_sym_function] = ACTIONS(2946), @@ -120155,6 +120153,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2946), [anon_sym_PLUS_PLUS] = ACTIONS(2944), [anon_sym_DASH_DASH] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_SQUOTE] = ACTIONS(2944), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2944), [sym_number] = ACTIONS(2944), @@ -120222,8 +120222,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2546), [anon_sym_LBRACK] = ACTIONS(2544), [sym_glimmer_opening_tag] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), [anon_sym_class] = ACTIONS(2546), [anon_sym_async] = ACTIONS(2546), [anon_sym_function] = ACTIONS(2546), @@ -120238,6 +120236,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2546), [anon_sym_PLUS_PLUS] = ACTIONS(2544), [anon_sym_DASH_DASH] = ACTIONS(2544), + [anon_sym_DQUOTE] = ACTIONS(2544), + [anon_sym_SQUOTE] = ACTIONS(2544), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2544), [sym_number] = ACTIONS(2544), @@ -120305,8 +120305,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2950), [anon_sym_LBRACK] = ACTIONS(2948), [sym_glimmer_opening_tag] = ACTIONS(2948), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), [anon_sym_class] = ACTIONS(2950), [anon_sym_async] = ACTIONS(2950), [anon_sym_function] = ACTIONS(2950), @@ -120321,6 +120319,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2950), [anon_sym_PLUS_PLUS] = ACTIONS(2948), [anon_sym_DASH_DASH] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_SQUOTE] = ACTIONS(2948), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2948), [sym_number] = ACTIONS(2948), @@ -120388,8 +120388,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2954), [anon_sym_LBRACK] = ACTIONS(2952), [sym_glimmer_opening_tag] = ACTIONS(2952), - [anon_sym_DQUOTE] = ACTIONS(2952), - [anon_sym_SQUOTE] = ACTIONS(2952), [anon_sym_class] = ACTIONS(2954), [anon_sym_async] = ACTIONS(2954), [anon_sym_function] = ACTIONS(2954), @@ -120404,6 +120402,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2954), [anon_sym_PLUS_PLUS] = ACTIONS(2952), [anon_sym_DASH_DASH] = ACTIONS(2952), + [anon_sym_DQUOTE] = ACTIONS(2952), + [anon_sym_SQUOTE] = ACTIONS(2952), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2952), [sym_number] = ACTIONS(2952), @@ -120471,8 +120471,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2958), [anon_sym_LBRACK] = ACTIONS(2956), [sym_glimmer_opening_tag] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_SQUOTE] = ACTIONS(2956), [anon_sym_class] = ACTIONS(2958), [anon_sym_async] = ACTIONS(2958), [anon_sym_function] = ACTIONS(2958), @@ -120487,6 +120485,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2958), [anon_sym_PLUS_PLUS] = ACTIONS(2956), [anon_sym_DASH_DASH] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(2956), + [anon_sym_SQUOTE] = ACTIONS(2956), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2956), [sym_number] = ACTIONS(2956), @@ -120554,8 +120554,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2962), [anon_sym_LBRACK] = ACTIONS(2960), [sym_glimmer_opening_tag] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(2960), [anon_sym_class] = ACTIONS(2962), [anon_sym_async] = ACTIONS(2962), [anon_sym_function] = ACTIONS(2962), @@ -120570,6 +120568,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2962), [anon_sym_PLUS_PLUS] = ACTIONS(2960), [anon_sym_DASH_DASH] = ACTIONS(2960), + [anon_sym_DQUOTE] = ACTIONS(2960), + [anon_sym_SQUOTE] = ACTIONS(2960), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2960), [sym_number] = ACTIONS(2960), @@ -120637,8 +120637,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2966), [anon_sym_LBRACK] = ACTIONS(2964), [sym_glimmer_opening_tag] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_SQUOTE] = ACTIONS(2964), [anon_sym_class] = ACTIONS(2966), [anon_sym_async] = ACTIONS(2966), [anon_sym_function] = ACTIONS(2966), @@ -120653,6 +120651,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2966), [anon_sym_PLUS_PLUS] = ACTIONS(2964), [anon_sym_DASH_DASH] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2964), [sym_number] = ACTIONS(2964), @@ -120720,8 +120720,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2970), [anon_sym_LBRACK] = ACTIONS(2968), [sym_glimmer_opening_tag] = ACTIONS(2968), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_SQUOTE] = ACTIONS(2968), [anon_sym_class] = ACTIONS(2970), [anon_sym_async] = ACTIONS(2970), [anon_sym_function] = ACTIONS(2970), @@ -120736,6 +120734,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2970), [anon_sym_PLUS_PLUS] = ACTIONS(2968), [anon_sym_DASH_DASH] = ACTIONS(2968), + [anon_sym_DQUOTE] = ACTIONS(2968), + [anon_sym_SQUOTE] = ACTIONS(2968), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2968), [sym_number] = ACTIONS(2968), @@ -120769,43 +120769,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [935] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_rest_pattern] = STATE(5271), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(2560), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -120815,8 +120815,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), [anon_sym_AMP] = ACTIONS(610), @@ -120825,6 +120823,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -120851,43 +120851,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [936] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_rest_pattern] = STATE(5271), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(2560), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -120897,8 +120897,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(2974), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), [anon_sym_AMP] = ACTIONS(610), @@ -120907,6 +120905,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -120933,43 +120933,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [937] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_rest_pattern] = STATE(5271), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(2560), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -120979,8 +120979,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(2976), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), [anon_sym_AMP] = ACTIONS(610), @@ -120989,6 +120987,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -121015,43 +121015,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [938] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_rest_pattern] = STATE(5271), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(2560), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -121061,8 +121061,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(2978), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), [anon_sym_AMP] = ACTIONS(610), @@ -121071,6 +121069,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -121097,43 +121097,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [939] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_rest_pattern] = STATE(5271), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(2560), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -121143,8 +121143,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), [anon_sym_AMP] = ACTIONS(610), @@ -121153,6 +121151,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -121179,43 +121179,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [940] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_rest_pattern] = STATE(5271), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(2560), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -121225,8 +121225,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(2982), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), [anon_sym_AMP] = ACTIONS(610), @@ -121235,6 +121233,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -121261,43 +121261,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [941] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_rest_pattern] = STATE(5271), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(2560), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -121307,8 +121307,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), [anon_sym_AMP] = ACTIONS(610), @@ -121317,6 +121315,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -121343,43 +121343,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [942] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_rest_pattern] = STATE(5271), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(2560), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -121389,8 +121389,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), [anon_sym_AMP] = ACTIONS(610), @@ -121399,6 +121397,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -121425,43 +121425,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [943] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_rest_pattern] = STATE(5271), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(2560), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -121471,8 +121471,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), [anon_sym_AMP] = ACTIONS(610), @@ -121481,6 +121479,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -121507,43 +121507,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [944] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_rest_pattern] = STATE(5271), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(2560), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -121553,8 +121553,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), [anon_sym_AMP] = ACTIONS(610), @@ -121563,6 +121561,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -121589,43 +121589,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [945] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_rest_pattern] = STATE(5268), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3832), - [sym_tuple_parameter] = STATE(5293), - [sym_optional_tuple_parameter] = STATE(5293), - [sym_optional_type] = STATE(5293), - [sym_rest_type] = STATE(5293), - [sym__tuple_type_member] = STATE(5293), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_rest_pattern] = STATE(5271), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3830), + [sym_tuple_parameter] = STATE(5296), + [sym_optional_tuple_parameter] = STATE(5296), + [sym_optional_type] = STATE(5296), + [sym_rest_type] = STATE(5296), + [sym__tuple_type_member] = STATE(5296), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(2560), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -121634,8 +121634,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_DOT_DOT_DOT] = ACTIONS(2566), [anon_sym_AMP] = ACTIONS(610), @@ -121644,6 +121642,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -121670,81 +121670,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [946] = { - [sym_identifier] = ACTIONS(2520), - [anon_sym_export] = ACTIONS(2520), - [anon_sym_type] = ACTIONS(2520), - [anon_sym_namespace] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2518), - [anon_sym_typeof] = ACTIONS(2520), - [anon_sym_import] = ACTIONS(2520), - [anon_sym_with] = ACTIONS(2520), - [anon_sym_var] = ACTIONS(2520), - [anon_sym_let] = ACTIONS(2520), - [anon_sym_const] = ACTIONS(2520), - [anon_sym_BANG] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2520), - [anon_sym_switch] = ACTIONS(2520), - [anon_sym_for] = ACTIONS(2520), - [anon_sym_LPAREN] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_await] = ACTIONS(2520), - [anon_sym_while] = ACTIONS(2520), - [anon_sym_do] = ACTIONS(2520), - [anon_sym_try] = ACTIONS(2520), - [anon_sym_break] = ACTIONS(2520), - [anon_sym_continue] = ACTIONS(2520), - [anon_sym_debugger] = ACTIONS(2520), - [anon_sym_return] = ACTIONS(2520), - [anon_sym_throw] = ACTIONS(2520), - [anon_sym_yield] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2518), - [sym_glimmer_opening_tag] = ACTIONS(2518), - [anon_sym_DQUOTE] = ACTIONS(2518), - [anon_sym_SQUOTE] = ACTIONS(2518), - [anon_sym_class] = ACTIONS(2520), - [anon_sym_async] = ACTIONS(2520), - [anon_sym_function] = ACTIONS(2520), - [anon_sym_new] = ACTIONS(2520), - [anon_sym_using] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2520), - [anon_sym_SLASH] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_void] = ACTIONS(2520), - [anon_sym_delete] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2518), - [anon_sym_DASH_DASH] = ACTIONS(2518), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2518), - [sym_number] = ACTIONS(2518), - [sym_private_property_identifier] = ACTIONS(2518), - [sym_this] = ACTIONS(2520), - [sym_super] = ACTIONS(2520), - [sym_true] = ACTIONS(2520), - [sym_false] = ACTIONS(2520), - [sym_null] = ACTIONS(2520), - [sym_undefined] = ACTIONS(2520), - [anon_sym_AT] = ACTIONS(2518), - [anon_sym_static] = ACTIONS(2520), - [anon_sym_readonly] = ACTIONS(2520), - [anon_sym_get] = ACTIONS(2520), - [anon_sym_set] = ACTIONS(2520), - [anon_sym_declare] = ACTIONS(2520), - [anon_sym_public] = ACTIONS(2520), - [anon_sym_private] = ACTIONS(2520), - [anon_sym_protected] = ACTIONS(2520), - [anon_sym_override] = ACTIONS(2520), - [anon_sym_module] = ACTIONS(2520), - [anon_sym_any] = ACTIONS(2520), - [anon_sym_number] = ACTIONS(2520), - [anon_sym_boolean] = ACTIONS(2520), - [anon_sym_string] = ACTIONS(2520), - [anon_sym_symbol] = ACTIONS(2520), - [anon_sym_object] = ACTIONS(2520), - [anon_sym_abstract] = ACTIONS(2520), - [anon_sym_interface] = ACTIONS(2520), - [anon_sym_enum] = ACTIONS(2520), + [sym_identifier] = ACTIONS(2522), + [anon_sym_export] = ACTIONS(2522), + [anon_sym_type] = ACTIONS(2522), + [anon_sym_namespace] = ACTIONS(2522), + [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_typeof] = ACTIONS(2522), + [anon_sym_import] = ACTIONS(2522), + [anon_sym_with] = ACTIONS(2522), + [anon_sym_var] = ACTIONS(2522), + [anon_sym_let] = ACTIONS(2522), + [anon_sym_const] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_switch] = ACTIONS(2522), + [anon_sym_for] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_await] = ACTIONS(2522), + [anon_sym_while] = ACTIONS(2522), + [anon_sym_do] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2522), + [anon_sym_break] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2522), + [anon_sym_debugger] = ACTIONS(2522), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_throw] = ACTIONS(2522), + [anon_sym_yield] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(2520), + [sym_glimmer_opening_tag] = ACTIONS(2520), + [anon_sym_class] = ACTIONS(2522), + [anon_sym_async] = ACTIONS(2522), + [anon_sym_function] = ACTIONS(2522), + [anon_sym_new] = ACTIONS(2522), + [anon_sym_using] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2522), + [anon_sym_SLASH] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2520), + [anon_sym_void] = ACTIONS(2522), + [anon_sym_delete] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2520), + [anon_sym_SQUOTE] = ACTIONS(2520), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2520), + [sym_private_property_identifier] = ACTIONS(2520), + [sym_this] = ACTIONS(2522), + [sym_super] = ACTIONS(2522), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_AT] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2522), + [anon_sym_get] = ACTIONS(2522), + [anon_sym_set] = ACTIONS(2522), + [anon_sym_declare] = ACTIONS(2522), + [anon_sym_public] = ACTIONS(2522), + [anon_sym_private] = ACTIONS(2522), + [anon_sym_protected] = ACTIONS(2522), + [anon_sym_override] = ACTIONS(2522), + [anon_sym_module] = ACTIONS(2522), + [anon_sym_any] = ACTIONS(2522), + [anon_sym_number] = ACTIONS(2522), + [anon_sym_boolean] = ACTIONS(2522), + [anon_sym_string] = ACTIONS(2522), + [anon_sym_symbol] = ACTIONS(2522), + [anon_sym_object] = ACTIONS(2522), + [anon_sym_abstract] = ACTIONS(2522), + [anon_sym_interface] = ACTIONS(2522), + [anon_sym_enum] = ACTIONS(2522), [sym_html_comment] = ACTIONS(5), }, [947] = { @@ -121777,8 +121777,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2502), [anon_sym_LBRACK] = ACTIONS(2500), [sym_glimmer_opening_tag] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_SQUOTE] = ACTIONS(2500), [anon_sym_class] = ACTIONS(2502), [anon_sym_async] = ACTIONS(2502), [anon_sym_function] = ACTIONS(2502), @@ -121793,6 +121791,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2502), [anon_sym_PLUS_PLUS] = ACTIONS(2500), [anon_sym_DASH_DASH] = ACTIONS(2500), + [anon_sym_DQUOTE] = ACTIONS(2500), + [anon_sym_SQUOTE] = ACTIONS(2500), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2500), [sym_number] = ACTIONS(2500), @@ -121855,8 +121855,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2992), [anon_sym_LBRACK] = ACTIONS(2994), [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), [anon_sym_class] = ACTIONS(2992), [anon_sym_async] = ACTIONS(2992), [anon_sym_function] = ACTIONS(2992), @@ -121871,162 +121869,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2992), [anon_sym_PLUS_PLUS] = ACTIONS(2994), [anon_sym_DASH_DASH] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), - [sym_html_comment] = ACTIONS(5), - }, - [949] = { - [sym_identifier] = ACTIONS(2996), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_type] = ACTIONS(2996), - [anon_sym_namespace] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(2998), - [anon_sym_typeof] = ACTIONS(2996), - [anon_sym_import] = ACTIONS(2996), - [anon_sym_with] = ACTIONS(2996), - [anon_sym_var] = ACTIONS(2996), - [anon_sym_let] = ACTIONS(2996), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_BANG] = ACTIONS(2998), - [anon_sym_if] = ACTIONS(2996), - [anon_sym_switch] = ACTIONS(2996), - [anon_sym_for] = ACTIONS(2996), - [anon_sym_LPAREN] = ACTIONS(2998), - [anon_sym_SEMI] = ACTIONS(2998), - [anon_sym_await] = ACTIONS(2996), - [anon_sym_while] = ACTIONS(2996), - [anon_sym_do] = ACTIONS(2996), - [anon_sym_try] = ACTIONS(2996), - [anon_sym_break] = ACTIONS(2996), - [anon_sym_continue] = ACTIONS(2996), - [anon_sym_debugger] = ACTIONS(2996), - [anon_sym_return] = ACTIONS(2996), - [anon_sym_throw] = ACTIONS(2996), - [anon_sym_yield] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2998), - [sym_glimmer_opening_tag] = ACTIONS(2998), - [anon_sym_DQUOTE] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(2998), - [anon_sym_class] = ACTIONS(2996), - [anon_sym_async] = ACTIONS(2996), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_new] = ACTIONS(2996), - [anon_sym_using] = ACTIONS(2996), - [anon_sym_PLUS] = ACTIONS(2996), - [anon_sym_DASH] = ACTIONS(2996), - [anon_sym_SLASH] = ACTIONS(2996), - [anon_sym_LT] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2998), - [anon_sym_void] = ACTIONS(2996), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_PLUS_PLUS] = ACTIONS(2998), - [anon_sym_DASH_DASH] = ACTIONS(2998), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2998), - [sym_number] = ACTIONS(2998), - [sym_private_property_identifier] = ACTIONS(2998), - [sym_this] = ACTIONS(2996), - [sym_super] = ACTIONS(2996), - [sym_true] = ACTIONS(2996), - [sym_false] = ACTIONS(2996), - [sym_null] = ACTIONS(2996), - [sym_undefined] = ACTIONS(2996), - [anon_sym_AT] = ACTIONS(2998), - [anon_sym_static] = ACTIONS(2996), - [anon_sym_readonly] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(2996), - [anon_sym_set] = ACTIONS(2996), - [anon_sym_declare] = ACTIONS(2996), - [anon_sym_public] = ACTIONS(2996), - [anon_sym_private] = ACTIONS(2996), - [anon_sym_protected] = ACTIONS(2996), - [anon_sym_override] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_any] = ACTIONS(2996), - [anon_sym_number] = ACTIONS(2996), - [anon_sym_boolean] = ACTIONS(2996), - [anon_sym_string] = ACTIONS(2996), - [anon_sym_symbol] = ACTIONS(2996), - [anon_sym_object] = ACTIONS(2996), - [anon_sym_abstract] = ACTIONS(2996), - [anon_sym_interface] = ACTIONS(2996), - [anon_sym_enum] = ACTIONS(2996), - [sym_html_comment] = ACTIONS(5), - }, - [950] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), [anon_sym_DQUOTE] = ACTIONS(2994), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2994), [sym_number] = ACTIONS(2994), @@ -122059,85 +121903,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2992), [sym_html_comment] = ACTIONS(5), }, - [951] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), + [949] = { + [sym_identifier] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(2996), + [anon_sym_type] = ACTIONS(2996), + [anon_sym_namespace] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_typeof] = ACTIONS(2996), + [anon_sym_import] = ACTIONS(2996), + [anon_sym_with] = ACTIONS(2996), + [anon_sym_var] = ACTIONS(2996), + [anon_sym_let] = ACTIONS(2996), + [anon_sym_const] = ACTIONS(2996), + [anon_sym_BANG] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2996), + [anon_sym_switch] = ACTIONS(2996), + [anon_sym_for] = ACTIONS(2996), + [anon_sym_LPAREN] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [anon_sym_await] = ACTIONS(2996), + [anon_sym_while] = ACTIONS(2996), + [anon_sym_do] = ACTIONS(2996), + [anon_sym_try] = ACTIONS(2996), + [anon_sym_break] = ACTIONS(2996), + [anon_sym_continue] = ACTIONS(2996), + [anon_sym_debugger] = ACTIONS(2996), + [anon_sym_return] = ACTIONS(2996), + [anon_sym_throw] = ACTIONS(2996), + [anon_sym_yield] = ACTIONS(2996), + [anon_sym_LBRACK] = ACTIONS(2998), + [sym_glimmer_opening_tag] = ACTIONS(2998), + [anon_sym_class] = ACTIONS(2996), + [anon_sym_async] = ACTIONS(2996), + [anon_sym_function] = ACTIONS(2996), + [anon_sym_new] = ACTIONS(2996), + [anon_sym_using] = ACTIONS(2996), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_SLASH] = ACTIONS(2996), + [anon_sym_LT] = ACTIONS(2996), + [anon_sym_TILDE] = ACTIONS(2998), + [anon_sym_void] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2996), + [anon_sym_PLUS_PLUS] = ACTIONS(2998), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [anon_sym_SQUOTE] = ACTIONS(2998), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), + [anon_sym_BQUOTE] = ACTIONS(2998), + [sym_number] = ACTIONS(2998), + [sym_private_property_identifier] = ACTIONS(2998), + [sym_this] = ACTIONS(2996), + [sym_super] = ACTIONS(2996), + [sym_true] = ACTIONS(2996), + [sym_false] = ACTIONS(2996), + [sym_null] = ACTIONS(2996), + [sym_undefined] = ACTIONS(2996), + [anon_sym_AT] = ACTIONS(2998), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_readonly] = ACTIONS(2996), + [anon_sym_get] = ACTIONS(2996), + [anon_sym_set] = ACTIONS(2996), + [anon_sym_declare] = ACTIONS(2996), + [anon_sym_public] = ACTIONS(2996), + [anon_sym_private] = ACTIONS(2996), + [anon_sym_protected] = ACTIONS(2996), + [anon_sym_override] = ACTIONS(2996), + [anon_sym_module] = ACTIONS(2996), + [anon_sym_any] = ACTIONS(2996), + [anon_sym_number] = ACTIONS(2996), + [anon_sym_boolean] = ACTIONS(2996), + [anon_sym_string] = ACTIONS(2996), + [anon_sym_symbol] = ACTIONS(2996), + [anon_sym_object] = ACTIONS(2996), + [anon_sym_abstract] = ACTIONS(2996), + [anon_sym_interface] = ACTIONS(2996), + [anon_sym_enum] = ACTIONS(2996), [sym_html_comment] = ACTIONS(5), }, - [952] = { + [950] = { [sym_identifier] = ACTIONS(3000), [anon_sym_export] = ACTIONS(3000), [anon_sym_type] = ACTIONS(3000), @@ -122167,8 +122011,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3000), [anon_sym_LBRACK] = ACTIONS(3002), [sym_glimmer_opening_tag] = ACTIONS(3002), - [anon_sym_DQUOTE] = ACTIONS(3002), - [anon_sym_SQUOTE] = ACTIONS(3002), [anon_sym_class] = ACTIONS(3000), [anon_sym_async] = ACTIONS(3000), [anon_sym_function] = ACTIONS(3000), @@ -122183,6 +122025,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(3000), [anon_sym_PLUS_PLUS] = ACTIONS(3002), [anon_sym_DASH_DASH] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3002), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(3002), [sym_number] = ACTIONS(3002), @@ -122215,85 +122059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3000), [sym_html_comment] = ACTIONS(5), }, - [953] = { - [sym_identifier] = ACTIONS(2992), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(2994), - [anon_sym_typeof] = ACTIONS(2992), - [anon_sym_import] = ACTIONS(2992), - [anon_sym_with] = ACTIONS(2992), - [anon_sym_var] = ACTIONS(2992), - [anon_sym_let] = ACTIONS(2992), - [anon_sym_const] = ACTIONS(2992), - [anon_sym_BANG] = ACTIONS(2994), - [anon_sym_if] = ACTIONS(2992), - [anon_sym_switch] = ACTIONS(2992), - [anon_sym_for] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [anon_sym_SEMI] = ACTIONS(2994), - [anon_sym_await] = ACTIONS(2992), - [anon_sym_while] = ACTIONS(2992), - [anon_sym_do] = ACTIONS(2992), - [anon_sym_try] = ACTIONS(2992), - [anon_sym_break] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2992), - [anon_sym_debugger] = ACTIONS(2992), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_throw] = ACTIONS(2992), - [anon_sym_yield] = ACTIONS(2992), - [anon_sym_LBRACK] = ACTIONS(2994), - [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2992), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2992), - [anon_sym_new] = ACTIONS(2992), - [anon_sym_using] = ACTIONS(2992), - [anon_sym_PLUS] = ACTIONS(2992), - [anon_sym_DASH] = ACTIONS(2992), - [anon_sym_SLASH] = ACTIONS(2992), - [anon_sym_LT] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2994), - [anon_sym_void] = ACTIONS(2992), - [anon_sym_delete] = ACTIONS(2992), - [anon_sym_PLUS_PLUS] = ACTIONS(2994), - [anon_sym_DASH_DASH] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(2994), - [sym_number] = ACTIONS(2994), - [sym_private_property_identifier] = ACTIONS(2994), - [sym_this] = ACTIONS(2992), - [sym_super] = ACTIONS(2992), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_undefined] = ACTIONS(2992), - [anon_sym_AT] = ACTIONS(2994), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), - [anon_sym_abstract] = ACTIONS(2992), - [anon_sym_interface] = ACTIONS(2992), - [anon_sym_enum] = ACTIONS(2992), - [sym_html_comment] = ACTIONS(5), - }, - [954] = { + [951] = { [sym_identifier] = ACTIONS(3004), [anon_sym_export] = ACTIONS(3004), [anon_sym_type] = ACTIONS(3004), @@ -122323,8 +122089,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3004), [anon_sym_LBRACK] = ACTIONS(3006), [sym_glimmer_opening_tag] = ACTIONS(3006), - [anon_sym_DQUOTE] = ACTIONS(3006), - [anon_sym_SQUOTE] = ACTIONS(3006), [anon_sym_class] = ACTIONS(3004), [anon_sym_async] = ACTIONS(3004), [anon_sym_function] = ACTIONS(3004), @@ -122339,6 +122103,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(3004), [anon_sym_PLUS_PLUS] = ACTIONS(3006), [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(3006), [sym_number] = ACTIONS(3006), @@ -122371,7 +122137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3004), [sym_html_comment] = ACTIONS(5), }, - [955] = { + [952] = { [sym_identifier] = ACTIONS(3008), [anon_sym_export] = ACTIONS(3008), [anon_sym_type] = ACTIONS(3008), @@ -122401,8 +122167,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3008), [anon_sym_LBRACK] = ACTIONS(3010), [sym_glimmer_opening_tag] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3010), - [anon_sym_SQUOTE] = ACTIONS(3010), [anon_sym_class] = ACTIONS(3008), [anon_sym_async] = ACTIONS(3008), [anon_sym_function] = ACTIONS(3008), @@ -122417,6 +122181,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(3008), [anon_sym_PLUS_PLUS] = ACTIONS(3010), [anon_sym_DASH_DASH] = ACTIONS(3010), + [anon_sym_DQUOTE] = ACTIONS(3010), + [anon_sym_SQUOTE] = ACTIONS(3010), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(3010), [sym_number] = ACTIONS(3010), @@ -122449,7 +122215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3008), [sym_html_comment] = ACTIONS(5), }, - [956] = { + [953] = { [sym_identifier] = ACTIONS(2992), [anon_sym_export] = ACTIONS(2992), [anon_sym_type] = ACTIONS(2992), @@ -122479,8 +122245,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2992), [anon_sym_LBRACK] = ACTIONS(2994), [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), [anon_sym_class] = ACTIONS(2992), [anon_sym_async] = ACTIONS(2992), [anon_sym_function] = ACTIONS(2992), @@ -122495,6 +122259,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2992), [anon_sym_PLUS_PLUS] = ACTIONS(2994), [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_DQUOTE] = ACTIONS(2994), + [anon_sym_SQUOTE] = ACTIONS(2994), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2994), [sym_number] = ACTIONS(2994), @@ -122527,7 +122293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2992), [sym_html_comment] = ACTIONS(5), }, - [957] = { + [954] = { [sym_identifier] = ACTIONS(2992), [anon_sym_export] = ACTIONS(2992), [anon_sym_type] = ACTIONS(2992), @@ -122557,8 +122323,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2992), [anon_sym_LBRACK] = ACTIONS(2994), [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), [anon_sym_class] = ACTIONS(2992), [anon_sym_async] = ACTIONS(2992), [anon_sym_function] = ACTIONS(2992), @@ -122573,6 +122337,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2992), [anon_sym_PLUS_PLUS] = ACTIONS(2994), [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_DQUOTE] = ACTIONS(2994), + [anon_sym_SQUOTE] = ACTIONS(2994), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2994), [sym_number] = ACTIONS(2994), @@ -122605,7 +122371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2992), [sym_html_comment] = ACTIONS(5), }, - [958] = { + [955] = { [sym_identifier] = ACTIONS(2992), [anon_sym_export] = ACTIONS(2992), [anon_sym_type] = ACTIONS(2992), @@ -122635,8 +122401,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2992), [anon_sym_LBRACK] = ACTIONS(2994), [sym_glimmer_opening_tag] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(2994), [anon_sym_class] = ACTIONS(2992), [anon_sym_async] = ACTIONS(2992), [anon_sym_function] = ACTIONS(2992), @@ -122651,6 +122415,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2992), [anon_sym_PLUS_PLUS] = ACTIONS(2994), [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_DQUOTE] = ACTIONS(2994), + [anon_sym_SQUOTE] = ACTIONS(2994), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2994), [sym_number] = ACTIONS(2994), @@ -122683,7 +122449,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2992), [sym_html_comment] = ACTIONS(5), }, - [959] = { + [956] = { + [sym_identifier] = ACTIONS(2992), + [anon_sym_export] = ACTIONS(2992), + [anon_sym_type] = ACTIONS(2992), + [anon_sym_namespace] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2994), + [anon_sym_typeof] = ACTIONS(2992), + [anon_sym_import] = ACTIONS(2992), + [anon_sym_with] = ACTIONS(2992), + [anon_sym_var] = ACTIONS(2992), + [anon_sym_let] = ACTIONS(2992), + [anon_sym_const] = ACTIONS(2992), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_switch] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2992), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_SEMI] = ACTIONS(2994), + [anon_sym_await] = ACTIONS(2992), + [anon_sym_while] = ACTIONS(2992), + [anon_sym_do] = ACTIONS(2992), + [anon_sym_try] = ACTIONS(2992), + [anon_sym_break] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2992), + [anon_sym_debugger] = ACTIONS(2992), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_throw] = ACTIONS(2992), + [anon_sym_yield] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [sym_glimmer_opening_tag] = ACTIONS(2994), + [anon_sym_class] = ACTIONS(2992), + [anon_sym_async] = ACTIONS(2992), + [anon_sym_function] = ACTIONS(2992), + [anon_sym_new] = ACTIONS(2992), + [anon_sym_using] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2992), + [anon_sym_DASH] = ACTIONS(2992), + [anon_sym_SLASH] = ACTIONS(2992), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_TILDE] = ACTIONS(2994), + [anon_sym_void] = ACTIONS(2992), + [anon_sym_delete] = ACTIONS(2992), + [anon_sym_PLUS_PLUS] = ACTIONS(2994), + [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_DQUOTE] = ACTIONS(2994), + [anon_sym_SQUOTE] = ACTIONS(2994), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2994), + [sym_number] = ACTIONS(2994), + [sym_private_property_identifier] = ACTIONS(2994), + [sym_this] = ACTIONS(2992), + [sym_super] = ACTIONS(2992), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [sym_null] = ACTIONS(2992), + [sym_undefined] = ACTIONS(2992), + [anon_sym_AT] = ACTIONS(2994), + [anon_sym_static] = ACTIONS(2992), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_get] = ACTIONS(2992), + [anon_sym_set] = ACTIONS(2992), + [anon_sym_declare] = ACTIONS(2992), + [anon_sym_public] = ACTIONS(2992), + [anon_sym_private] = ACTIONS(2992), + [anon_sym_protected] = ACTIONS(2992), + [anon_sym_override] = ACTIONS(2992), + [anon_sym_module] = ACTIONS(2992), + [anon_sym_any] = ACTIONS(2992), + [anon_sym_number] = ACTIONS(2992), + [anon_sym_boolean] = ACTIONS(2992), + [anon_sym_string] = ACTIONS(2992), + [anon_sym_symbol] = ACTIONS(2992), + [anon_sym_object] = ACTIONS(2992), + [anon_sym_abstract] = ACTIONS(2992), + [anon_sym_interface] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2992), + [sym_html_comment] = ACTIONS(5), + }, + [957] = { + [sym_identifier] = ACTIONS(2992), + [anon_sym_export] = ACTIONS(2992), + [anon_sym_type] = ACTIONS(2992), + [anon_sym_namespace] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2994), + [anon_sym_typeof] = ACTIONS(2992), + [anon_sym_import] = ACTIONS(2992), + [anon_sym_with] = ACTIONS(2992), + [anon_sym_var] = ACTIONS(2992), + [anon_sym_let] = ACTIONS(2992), + [anon_sym_const] = ACTIONS(2992), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_switch] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2992), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_SEMI] = ACTIONS(2994), + [anon_sym_await] = ACTIONS(2992), + [anon_sym_while] = ACTIONS(2992), + [anon_sym_do] = ACTIONS(2992), + [anon_sym_try] = ACTIONS(2992), + [anon_sym_break] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2992), + [anon_sym_debugger] = ACTIONS(2992), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_throw] = ACTIONS(2992), + [anon_sym_yield] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [sym_glimmer_opening_tag] = ACTIONS(2994), + [anon_sym_class] = ACTIONS(2992), + [anon_sym_async] = ACTIONS(2992), + [anon_sym_function] = ACTIONS(2992), + [anon_sym_new] = ACTIONS(2992), + [anon_sym_using] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2992), + [anon_sym_DASH] = ACTIONS(2992), + [anon_sym_SLASH] = ACTIONS(2992), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_TILDE] = ACTIONS(2994), + [anon_sym_void] = ACTIONS(2992), + [anon_sym_delete] = ACTIONS(2992), + [anon_sym_PLUS_PLUS] = ACTIONS(2994), + [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_DQUOTE] = ACTIONS(2994), + [anon_sym_SQUOTE] = ACTIONS(2994), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2994), + [sym_number] = ACTIONS(2994), + [sym_private_property_identifier] = ACTIONS(2994), + [sym_this] = ACTIONS(2992), + [sym_super] = ACTIONS(2992), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [sym_null] = ACTIONS(2992), + [sym_undefined] = ACTIONS(2992), + [anon_sym_AT] = ACTIONS(2994), + [anon_sym_static] = ACTIONS(2992), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_get] = ACTIONS(2992), + [anon_sym_set] = ACTIONS(2992), + [anon_sym_declare] = ACTIONS(2992), + [anon_sym_public] = ACTIONS(2992), + [anon_sym_private] = ACTIONS(2992), + [anon_sym_protected] = ACTIONS(2992), + [anon_sym_override] = ACTIONS(2992), + [anon_sym_module] = ACTIONS(2992), + [anon_sym_any] = ACTIONS(2992), + [anon_sym_number] = ACTIONS(2992), + [anon_sym_boolean] = ACTIONS(2992), + [anon_sym_string] = ACTIONS(2992), + [anon_sym_symbol] = ACTIONS(2992), + [anon_sym_object] = ACTIONS(2992), + [anon_sym_abstract] = ACTIONS(2992), + [anon_sym_interface] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2992), + [sym_html_comment] = ACTIONS(5), + }, + [958] = { [sym_identifier] = ACTIONS(2992), [anon_sym_export] = ACTIONS(2992), [anon_sym_type] = ACTIONS(2992), @@ -122713,8 +122635,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2992), [anon_sym_LBRACK] = ACTIONS(2994), [sym_glimmer_opening_tag] = ACTIONS(2994), + [anon_sym_class] = ACTIONS(2992), + [anon_sym_async] = ACTIONS(2992), + [anon_sym_function] = ACTIONS(2992), + [anon_sym_new] = ACTIONS(2992), + [anon_sym_using] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2992), + [anon_sym_DASH] = ACTIONS(2992), + [anon_sym_SLASH] = ACTIONS(2992), + [anon_sym_LT] = ACTIONS(2992), + [anon_sym_TILDE] = ACTIONS(2994), + [anon_sym_void] = ACTIONS(2992), + [anon_sym_delete] = ACTIONS(2992), + [anon_sym_PLUS_PLUS] = ACTIONS(2994), + [anon_sym_DASH_DASH] = ACTIONS(2994), [anon_sym_DQUOTE] = ACTIONS(2994), [anon_sym_SQUOTE] = ACTIONS(2994), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(2994), + [sym_number] = ACTIONS(2994), + [sym_private_property_identifier] = ACTIONS(2994), + [sym_this] = ACTIONS(2992), + [sym_super] = ACTIONS(2992), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [sym_null] = ACTIONS(2992), + [sym_undefined] = ACTIONS(2992), + [anon_sym_AT] = ACTIONS(2994), + [anon_sym_static] = ACTIONS(2992), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_get] = ACTIONS(2992), + [anon_sym_set] = ACTIONS(2992), + [anon_sym_declare] = ACTIONS(2992), + [anon_sym_public] = ACTIONS(2992), + [anon_sym_private] = ACTIONS(2992), + [anon_sym_protected] = ACTIONS(2992), + [anon_sym_override] = ACTIONS(2992), + [anon_sym_module] = ACTIONS(2992), + [anon_sym_any] = ACTIONS(2992), + [anon_sym_number] = ACTIONS(2992), + [anon_sym_boolean] = ACTIONS(2992), + [anon_sym_string] = ACTIONS(2992), + [anon_sym_symbol] = ACTIONS(2992), + [anon_sym_object] = ACTIONS(2992), + [anon_sym_abstract] = ACTIONS(2992), + [anon_sym_interface] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2992), + [sym_html_comment] = ACTIONS(5), + }, + [959] = { + [sym_identifier] = ACTIONS(2992), + [anon_sym_export] = ACTIONS(2992), + [anon_sym_type] = ACTIONS(2992), + [anon_sym_namespace] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2994), + [anon_sym_typeof] = ACTIONS(2992), + [anon_sym_import] = ACTIONS(2992), + [anon_sym_with] = ACTIONS(2992), + [anon_sym_var] = ACTIONS(2992), + [anon_sym_let] = ACTIONS(2992), + [anon_sym_const] = ACTIONS(2992), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_switch] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2992), + [anon_sym_LPAREN] = ACTIONS(2994), + [anon_sym_SEMI] = ACTIONS(2994), + [anon_sym_await] = ACTIONS(2992), + [anon_sym_while] = ACTIONS(2992), + [anon_sym_do] = ACTIONS(2992), + [anon_sym_try] = ACTIONS(2992), + [anon_sym_break] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2992), + [anon_sym_debugger] = ACTIONS(2992), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_throw] = ACTIONS(2992), + [anon_sym_yield] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [sym_glimmer_opening_tag] = ACTIONS(2994), [anon_sym_class] = ACTIONS(2992), [anon_sym_async] = ACTIONS(2992), [anon_sym_function] = ACTIONS(2992), @@ -122729,6 +122727,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(2992), [anon_sym_PLUS_PLUS] = ACTIONS(2994), [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_DQUOTE] = ACTIONS(2994), + [anon_sym_SQUOTE] = ACTIONS(2994), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(2994), [sym_number] = ACTIONS(2994), @@ -122762,40 +122762,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [960] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_asserts] = STATE(3025), - [sym_type] = STATE(3645), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_predicate] = STATE(3025), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3496), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4581), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5869), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(3187), + [sym__type_query_call_expression_in_type_annotation] = STATE(3319), + [sym_asserts] = STATE(4058), + [sym_type] = STATE(3496), + [sym_constructor_type] = STATE(3422), + [sym_primary_type] = STATE(3426), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_predicate] = STATE(4060), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3313), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5263), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(3422), + [sym_identifier] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), + [sym_this] = ACTIONS(3044), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_asserts] = ACTIONS(3054), + [anon_sym_infer] = ACTIONS(3056), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_html_comment] = ACTIONS(5), + }, + [961] = { + [sym_import] = STATE(4581), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5869), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(3187), + [sym__type_query_call_expression_in_type_annotation] = STATE(3319), + [sym_asserts] = STATE(3381), + [sym_type] = STATE(3385), + [sym_constructor_type] = STATE(3422), + [sym_primary_type] = STATE(3426), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_predicate] = STATE(3381), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3313), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5263), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(3422), [sym_identifier] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), + [sym_this] = ACTIONS(3044), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_asserts] = ACTIONS(3054), + [anon_sym_infer] = ACTIONS(3056), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_html_comment] = ACTIONS(5), + }, + [962] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_asserts] = STATE(2954), + [sym_type] = STATE(3150), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_predicate] = STATE(2954), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(3069), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [sym_identifier] = ACTIONS(3064), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), [anon_sym_typeof] = ACTIONS(1543), @@ -122803,307 +122957,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3014), + [sym_this] = ACTIONS(3066), [sym_true] = ACTIONS(1567), [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_readonly] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(783), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_asserts] = ACTIONS(3016), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), + [anon_sym_abstract] = ACTIONS(209), + [anon_sym_asserts] = ACTIONS(3068), + [anon_sym_infer] = ACTIONS(211), + [anon_sym_keyof] = ACTIONS(213), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [961] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_asserts] = STATE(3852), - [sym_type] = STATE(3312), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_predicate] = STATE(3853), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3184), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(3022), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_asserts] = ACTIONS(3024), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), - [sym_html_comment] = ACTIONS(5), - }, - [962] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_asserts] = STATE(3434), - [sym_type] = STATE(3442), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_predicate] = STATE(3434), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3318), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3058), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_asserts] = ACTIONS(3068), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [sym_html_comment] = ACTIONS(5), - }, [963] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_asserts] = STATE(3025), - [sym_type] = STATE(3782), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_predicate] = STATE(3025), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3643), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3078), + [sym_import] = STATE(4801), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5705), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(3462), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_asserts] = STATE(3027), + [sym_type] = STATE(3811), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_predicate] = STATE(3027), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(3646), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5376), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [sym_identifier] = ACTIONS(3070), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3090), + [sym_this] = ACTIONS(3082), [sym_true] = ACTIONS(1567), [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_asserts] = ACTIONS(3098), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_asserts] = ACTIONS(3090), + [anon_sym_infer] = ACTIONS(3092), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, [964] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_asserts] = STATE(3025), - [sym_type] = STATE(3121), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_predicate] = STATE(3025), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3062), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3106), + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), + [sym_nested_type_identifier] = STATE(1823), + [sym__type_query_member_expression_in_type_annotation] = STATE(1867), + [sym__type_query_call_expression_in_type_annotation] = STATE(1905), + [sym_asserts] = STATE(2037), + [sym_type] = STATE(2039), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_predicate] = STATE(2037), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1815), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), + [sym_identifier] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), + [sym_this] = ACTIONS(3126), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_asserts] = ACTIONS(3136), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_html_comment] = ACTIONS(5), + }, + [965] = { + [sym_import] = STATE(4581), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5869), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(3187), + [sym__type_query_call_expression_in_type_annotation] = STATE(3319), + [sym_asserts] = STATE(3408), + [sym_type] = STATE(3409), + [sym_constructor_type] = STATE(3422), + [sym_primary_type] = STATE(3426), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_predicate] = STATE(3408), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3313), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5263), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(3422), + [sym_identifier] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), + [sym_this] = ACTIONS(3044), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_asserts] = ACTIONS(3054), + [anon_sym_infer] = ACTIONS(3056), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), + [sym_html_comment] = ACTIONS(5), + }, + [966] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_asserts] = STATE(3027), + [sym_type] = STATE(3088), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_predicate] = STATE(3027), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(3069), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [sym_identifier] = ACTIONS(3064), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), [anon_sym_typeof] = ACTIONS(1543), @@ -123111,19 +123265,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3108), + [sym_this] = ACTIONS(3066), [sym_true] = ACTIONS(1567), [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), @@ -123137,7 +123291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), [anon_sym_abstract] = ACTIONS(209), - [anon_sym_asserts] = ACTIONS(3110), + [anon_sym_asserts] = ACTIONS(3068), [anon_sym_infer] = ACTIONS(211), [anon_sym_keyof] = ACTIONS(213), [anon_sym_unique] = ACTIONS(215), @@ -123146,349 +123300,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [965] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), + [967] = { + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), [sym_nested_type_identifier] = STATE(1823), [sym__type_query_member_expression_in_type_annotation] = STATE(1867), [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_asserts] = STATE(2037), - [sym_type] = STATE(2039), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_predicate] = STATE(2037), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_asserts] = STATE(1992), + [sym_type] = STATE(1993), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_predicate] = STATE(1992), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), [sym_predefined_type] = STATE(1815), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), + [sym_identifier] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3140), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_asserts] = ACTIONS(3150), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), + [sym_this] = ACTIONS(3126), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_asserts] = ACTIONS(3136), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [966] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_asserts] = STATE(3447), - [sym_type] = STATE(3449), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_predicate] = STATE(3447), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3318), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), + [968] = { + [sym_import] = STATE(4535), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), + [sym_asserts] = STATE(1556), + [sym_type] = STATE(1557), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_predicate] = STATE(1556), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1517), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), + [sym_identifier] = ACTIONS(3146), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3058), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_asserts] = ACTIONS(3068), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), + [sym_this] = ACTIONS(3174), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_asserts] = ACTIONS(3184), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [967] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_asserts] = STATE(3005), - [sym_type] = STATE(3810), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_predicate] = STATE(3005), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3643), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3078), + [969] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5631), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_asserts] = STATE(2954), + [sym_type] = STATE(3648), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_predicate] = STATE(2954), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(3486), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [sym_identifier] = ACTIONS(3194), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_typeof] = ACTIONS(1543), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3090), + [sym_this] = ACTIONS(3196), [sym_true] = ACTIONS(1567), [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_asserts] = ACTIONS(3098), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(636), + [anon_sym_asserts] = ACTIONS(3198), + [anon_sym_infer] = ACTIONS(638), + [anon_sym_keyof] = ACTIONS(640), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), - [sym_html_comment] = ACTIONS(5), - }, - [968] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_asserts] = STATE(1598), - [sym_type] = STATE(1601), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_predicate] = STATE(1598), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1514), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3188), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_asserts] = ACTIONS(3198), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [969] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_asserts] = STATE(3005), - [sym_type] = STATE(3149), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_predicate] = STATE(3005), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3062), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3106), + [970] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5631), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_asserts] = STATE(3027), + [sym_type] = STATE(3653), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_predicate] = STATE(3027), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(3486), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [sym_identifier] = ACTIONS(3194), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), [anon_sym_typeof] = ACTIONS(1543), @@ -123496,230 +123573,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_new] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3108), + [sym_this] = ACTIONS(3196), [sym_true] = ACTIONS(1567), [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), + [anon_sym_readonly] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_asserts] = ACTIONS(3110), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), + [anon_sym_abstract] = ACTIONS(636), + [anon_sym_asserts] = ACTIONS(3198), + [anon_sym_infer] = ACTIONS(638), + [anon_sym_keyof] = ACTIONS(640), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [970] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_asserts] = STATE(3285), - [sym_type] = STATE(3289), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_predicate] = STATE(3285), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3184), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(3022), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_asserts] = ACTIONS(3024), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), - [sym_html_comment] = ACTIONS(5), - }, [971] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_asserts] = STATE(4058), - [sym_type] = STATE(3501), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_predicate] = STATE(4060), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3318), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), + [sym_import] = STATE(4535), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), + [sym_asserts] = STATE(1590), + [sym_type] = STATE(1593), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_predicate] = STATE(1590), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1517), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), + [sym_identifier] = ACTIONS(3146), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3058), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_asserts] = ACTIONS(3068), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), + [sym_this] = ACTIONS(3174), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_asserts] = ACTIONS(3184), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, [972] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_asserts] = STATE(3283), - [sym_type] = STATE(3286), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_predicate] = STATE(3283), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3184), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(3018), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_asserts] = STATE(3852), + [sym_type] = STATE(3312), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_predicate] = STATE(3853), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3162), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), + [sym_identifier] = ACTIONS(3200), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), [anon_sym_typeof] = ACTIONS(1629), @@ -123727,19 +123727,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(3022), + [sym_this] = ACTIONS(3204), [sym_true] = ACTIONS(1653), [sym_false] = ACTIONS(1653), [sym_null] = ACTIONS(1653), @@ -123753,7 +123753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1045), [anon_sym_object] = ACTIONS(1045), [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_asserts] = ACTIONS(3024), + [anon_sym_asserts] = ACTIONS(3206), [anon_sym_infer] = ACTIONS(1039), [anon_sym_keyof] = ACTIONS(1041), [anon_sym_unique] = ACTIONS(1043), @@ -123763,40 +123763,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [973] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_asserts] = STATE(5275), - [sym_type] = STATE(3375), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_predicate] = STATE(5388), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3062), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3106), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_asserts] = STATE(5292), + [sym_type] = STATE(3415), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_predicate] = STATE(5398), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(3069), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [sym_identifier] = ACTIONS(3064), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), [anon_sym_typeof] = ACTIONS(1543), @@ -123804,19 +123804,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3108), + [sym_this] = ACTIONS(3066), [sym_true] = ACTIONS(1567), [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), @@ -123830,7 +123830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), [anon_sym_abstract] = ACTIONS(209), - [anon_sym_asserts] = ACTIONS(3110), + [anon_sym_asserts] = ACTIONS(3068), [anon_sym_infer] = ACTIONS(211), [anon_sym_keyof] = ACTIONS(213), [anon_sym_unique] = ACTIONS(215), @@ -123840,234 +123840,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [974] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_asserts] = STATE(1992), - [sym_type] = STATE(1993), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_predicate] = STATE(1992), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1815), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3112), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3140), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_asserts] = ACTIONS(3150), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), - [sym_html_comment] = ACTIONS(5), - }, - [975] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_asserts] = STATE(1555), - [sym_type] = STATE(1556), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_predicate] = STATE(1555), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1514), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3160), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3188), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_asserts] = ACTIONS(3198), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), - [sym_html_comment] = ACTIONS(5), - }, - [976] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_asserts] = STATE(3005), - [sym_type] = STATE(3650), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_predicate] = STATE(3005), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3496), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3012), + [sym_import] = STATE(4801), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5705), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(3462), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_asserts] = STATE(2954), + [sym_type] = STATE(3777), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_predicate] = STATE(2954), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(3646), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5376), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [sym_identifier] = ACTIONS(3070), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(3014), + [sym_this] = ACTIONS(3082), [sym_true] = ACTIONS(1567), [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_asserts] = ACTIONS(3016), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_asserts] = ACTIONS(3090), + [anon_sym_infer] = ACTIONS(3092), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), + [sym_html_comment] = ACTIONS(5), + }, + [975] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_asserts] = STATE(3283), + [sym_type] = STATE(3289), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_predicate] = STATE(3283), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3162), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), + [sym_identifier] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_typeof] = ACTIONS(1629), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_number] = ACTIONS(1649), + [sym_this] = ACTIONS(3204), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), + [sym_null] = ACTIONS(1653), + [sym_undefined] = ACTIONS(1653), + [anon_sym_readonly] = ACTIONS(1655), + [anon_sym_QMARK] = ACTIONS(1033), + [anon_sym_any] = ACTIONS(1045), + [anon_sym_number] = ACTIONS(1045), + [anon_sym_boolean] = ACTIONS(1045), + [anon_sym_string] = ACTIONS(1045), + [anon_sym_symbol] = ACTIONS(1045), + [anon_sym_object] = ACTIONS(1045), + [anon_sym_abstract] = ACTIONS(1037), + [anon_sym_asserts] = ACTIONS(3206), + [anon_sym_infer] = ACTIONS(1039), + [anon_sym_keyof] = ACTIONS(1041), + [anon_sym_unique] = ACTIONS(1043), + [anon_sym_unknown] = ACTIONS(1045), + [anon_sym_never] = ACTIONS(1045), + [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_html_comment] = ACTIONS(5), + }, + [976] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_asserts] = STATE(3246), + [sym_type] = STATE(3274), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_predicate] = STATE(3246), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3162), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), + [sym_identifier] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_typeof] = ACTIONS(1629), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_number] = ACTIONS(1649), + [sym_this] = ACTIONS(3204), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), + [sym_null] = ACTIONS(1653), + [sym_undefined] = ACTIONS(1653), + [anon_sym_readonly] = ACTIONS(1655), + [anon_sym_QMARK] = ACTIONS(1033), + [anon_sym_any] = ACTIONS(1045), + [anon_sym_number] = ACTIONS(1045), + [anon_sym_boolean] = ACTIONS(1045), + [anon_sym_string] = ACTIONS(1045), + [anon_sym_symbol] = ACTIONS(1045), + [anon_sym_object] = ACTIONS(1045), + [anon_sym_abstract] = ACTIONS(1037), + [anon_sym_asserts] = ACTIONS(3206), + [anon_sym_infer] = ACTIONS(1039), + [anon_sym_keyof] = ACTIONS(1041), + [anon_sym_unique] = ACTIONS(1043), + [anon_sym_unknown] = ACTIONS(1045), + [anon_sym_never] = ACTIONS(1045), + [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, [977] = { @@ -124091,10 +124091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(3210), [anon_sym_RBRACK] = ACTIONS(3210), [sym_glimmer_opening_tag] = ACTIONS(3210), - [anon_sym_GT] = ACTIONS(3210), [anon_sym_DOT] = ACTIONS(3208), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), [anon_sym_class] = ACTIONS(3208), [anon_sym_async] = ACTIONS(3208), [anon_sym_function] = ACTIONS(3208), @@ -124109,11 +124106,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(3208), [anon_sym_SLASH] = ACTIONS(3208), [anon_sym_LT] = ACTIONS(3208), + [anon_sym_GT] = ACTIONS(3210), [anon_sym_TILDE] = ACTIONS(3210), [anon_sym_void] = ACTIONS(3208), [anon_sym_delete] = ACTIONS(3208), [anon_sym_PLUS_PLUS] = ACTIONS(3210), [anon_sym_DASH_DASH] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3210), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(3210), [sym_number] = ACTIONS(3210), @@ -124167,10 +124167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(3214), [anon_sym_RBRACK] = ACTIONS(3214), [sym_glimmer_opening_tag] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3214), [anon_sym_DOT] = ACTIONS(3212), - [anon_sym_DQUOTE] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), [anon_sym_class] = ACTIONS(3212), [anon_sym_async] = ACTIONS(3212), [anon_sym_function] = ACTIONS(3212), @@ -124185,11 +124182,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(3212), [anon_sym_SLASH] = ACTIONS(3212), [anon_sym_LT] = ACTIONS(3212), + [anon_sym_GT] = ACTIONS(3214), [anon_sym_TILDE] = ACTIONS(3214), [anon_sym_void] = ACTIONS(3212), [anon_sym_delete] = ACTIONS(3212), [anon_sym_PLUS_PLUS] = ACTIONS(3214), [anon_sym_DASH_DASH] = ACTIONS(3214), + [anon_sym_DQUOTE] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3214), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(3214), [sym_number] = ACTIONS(3214), @@ -124243,10 +124243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(3218), [anon_sym_RBRACK] = ACTIONS(3218), [sym_glimmer_opening_tag] = ACTIONS(3218), - [anon_sym_GT] = ACTIONS(3218), [anon_sym_DOT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3218), [anon_sym_class] = ACTIONS(3216), [anon_sym_async] = ACTIONS(3216), [anon_sym_function] = ACTIONS(3216), @@ -124261,11 +124258,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(3216), [anon_sym_SLASH] = ACTIONS(3216), [anon_sym_LT] = ACTIONS(3216), + [anon_sym_GT] = ACTIONS(3218), [anon_sym_TILDE] = ACTIONS(3218), [anon_sym_void] = ACTIONS(3216), [anon_sym_delete] = ACTIONS(3216), [anon_sym_PLUS_PLUS] = ACTIONS(3218), [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_DQUOTE] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3218), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(3218), [sym_number] = ACTIONS(3218), @@ -124299,37 +124299,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [980] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3849), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -124338,16 +124338,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3220), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(3220), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -124374,37 +124374,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [981] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4476), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3849), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -124413,16 +124413,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(3222), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -124449,37 +124449,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [982] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3849), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -124488,16 +124488,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3224), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(3224), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -124524,37 +124524,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [983] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3849), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -124563,16 +124563,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(3226), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -124599,37 +124599,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [984] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), [sym_type] = STATE(4435), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -124639,15 +124639,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), [anon_sym_RBRACK] = ACTIONS(3228), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -124674,37 +124674,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [985] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4399), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -124713,16 +124713,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_RBRACK] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -124749,55 +124749,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [986] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4441), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3872), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_type_parameter] = STATE(4972), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [sym_identifier] = ACTIONS(3232), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), [anon_sym_typeof] = ACTIONS(1543), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), + [anon_sym_const] = ACTIONS(3234), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -124824,37 +124824,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [987] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3849), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -124863,16 +124863,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(3236), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -124899,37 +124899,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [988] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3849), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -124938,16 +124938,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(3238), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -124974,37 +124974,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [989] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4404), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4430), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -125013,16 +125013,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -125049,37 +125049,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [990] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3849), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -125088,16 +125088,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3240), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(3242), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -125124,37 +125124,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [991] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3849), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -125163,16 +125163,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(3244), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -125199,55 +125199,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [992] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3883), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_type_parameter] = STATE(4720), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3244), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3849), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), [anon_sym_typeof] = ACTIONS(1543), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(3246), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -125274,37 +125274,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [993] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4475), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3849), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -125313,16 +125313,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(3248), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -125349,37 +125349,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [994] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4482), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -125388,16 +125388,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3250), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_RBRACK] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -125424,37 +125424,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [995] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3849), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -125463,16 +125463,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(3252), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -125499,37 +125499,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [996] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3849), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -125538,16 +125538,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(3254), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -125574,37 +125574,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [997] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4473), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -125613,16 +125613,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_GT] = ACTIONS(3256), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_RBRACK] = ACTIONS(3256), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -125650,110 +125650,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [998] = { [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1639), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), + [sym_type] = STATE(1641), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, [999] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3900), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3897), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -125762,15 +125762,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -125797,185 +125797,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1000] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3032), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [1001] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1641), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), - [sym_html_comment] = ACTIONS(5), - }, - [1002] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3984), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3982), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -125984,15 +125836,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -126018,112 +125870,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1003] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(2998), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), + [1001] = { + [sym_import] = STATE(4535), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), + [sym_type] = STATE(1642), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), + [sym_identifier] = ACTIONS(3258), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), + [sym_this] = ACTIONS(3260), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1004] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3046), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1002] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3154), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -126132,15 +125984,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -126166,38 +126018,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1005] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4393), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1003] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(2946), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -126206,15 +126058,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -126240,38 +126092,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1006] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3779), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1004] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(2947), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -126280,15 +126132,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -126314,186 +126166,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1007] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3945), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), - [sym_html_comment] = ACTIONS(5), - }, - [1008] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4521), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [1009] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3145), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1005] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4410), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -126502,15 +126206,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -126536,38 +126240,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1010] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3102), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1006] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3781), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -126576,15 +126280,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -126610,112 +126314,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1011] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4983), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(2962), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), + [1007] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3944), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), + [sym_identifier] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_typeof] = ACTIONS(1629), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), + [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_number] = ACTIONS(1649), + [sym_this] = ACTIONS(1651), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), + [sym_null] = ACTIONS(1653), + [sym_undefined] = ACTIONS(1653), + [anon_sym_readonly] = ACTIONS(1655), + [anon_sym_QMARK] = ACTIONS(1033), + [anon_sym_any] = ACTIONS(1045), + [anon_sym_number] = ACTIONS(1045), + [anon_sym_boolean] = ACTIONS(1045), + [anon_sym_string] = ACTIONS(1045), + [anon_sym_symbol] = ACTIONS(1045), + [anon_sym_object] = ACTIONS(1045), + [anon_sym_abstract] = ACTIONS(1037), + [anon_sym_infer] = ACTIONS(1039), + [anon_sym_keyof] = ACTIONS(1041), + [anon_sym_unique] = ACTIONS(1043), + [anon_sym_unknown] = ACTIONS(1045), + [anon_sym_never] = ACTIONS(1045), + [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1012] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3375), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1008] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3152), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -126724,15 +126428,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -126758,38 +126462,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1013] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4983), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(2993), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1009] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4974), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2948), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -126798,15 +126502,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -126832,38 +126536,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1014] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3804), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1010] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4974), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2945), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -126872,15 +126576,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -126906,112 +126610,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1015] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), - [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(1867), - [sym__type_query_call_expression_in_type_annotation] = STATE(1905), - [sym_type] = STATE(2000), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), - [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), - [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [1011] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3415), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [sym_identifier] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_typeof] = ACTIONS(1543), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [anon_sym_BQUOTE] = ACTIONS(1561), + [sym_number] = ACTIONS(1563), + [sym_this] = ACTIONS(1565), + [sym_true] = ACTIONS(1567), + [sym_false] = ACTIONS(1567), + [sym_null] = ACTIONS(1567), + [sym_undefined] = ACTIONS(1567), + [anon_sym_readonly] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(783), + [anon_sym_any] = ACTIONS(217), + [anon_sym_number] = ACTIONS(217), + [anon_sym_boolean] = ACTIONS(217), + [anon_sym_string] = ACTIONS(217), + [anon_sym_symbol] = ACTIONS(217), + [anon_sym_object] = ACTIONS(217), + [anon_sym_abstract] = ACTIONS(209), + [anon_sym_infer] = ACTIONS(211), + [anon_sym_keyof] = ACTIONS(213), + [anon_sym_unique] = ACTIONS(215), + [anon_sym_unknown] = ACTIONS(217), + [anon_sym_never] = ACTIONS(217), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1016] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3823), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1012] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3808), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -127020,15 +126724,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -127054,112 +126758,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1017] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), + [1013] = { + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), + [sym_nested_type_identifier] = STATE(1823), + [sym__type_query_member_expression_in_type_annotation] = STATE(1867), + [sym__type_query_call_expression_in_type_annotation] = STATE(1905), + [sym_type] = STATE(2000), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), + [sym__number] = STATE(1918), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), + [sym_identifier] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), + [sym_this] = ACTIONS(3264), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), + [sym_html_comment] = ACTIONS(5), + }, + [1014] = { + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), [sym_nested_type_identifier] = STATE(1823), [sym__type_query_member_expression_in_type_annotation] = STATE(1867), [sym__type_query_call_expression_in_type_annotation] = STATE(1905), [sym_type] = STATE(2001), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1018] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3847), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1015] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3826), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -127168,15 +126946,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -127202,186 +126980,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1019] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), + [1016] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3849), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [sym_identifier] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_typeof] = ACTIONS(1543), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1561), + [sym_number] = ACTIONS(1563), + [sym_this] = ACTIONS(1565), + [sym_true] = ACTIONS(1567), + [sym_false] = ACTIONS(1567), + [sym_null] = ACTIONS(1567), + [sym_undefined] = ACTIONS(1567), + [anon_sym_readonly] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(783), + [anon_sym_any] = ACTIONS(217), + [anon_sym_number] = ACTIONS(217), + [anon_sym_boolean] = ACTIONS(217), + [anon_sym_string] = ACTIONS(217), + [anon_sym_symbol] = ACTIONS(217), + [anon_sym_object] = ACTIONS(217), + [anon_sym_abstract] = ACTIONS(209), + [anon_sym_infer] = ACTIONS(211), + [anon_sym_keyof] = ACTIONS(213), + [anon_sym_unique] = ACTIONS(215), + [anon_sym_unknown] = ACTIONS(217), + [anon_sym_never] = ACTIONS(217), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_html_comment] = ACTIONS(5), + }, + [1017] = { + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), [sym_nested_type_identifier] = STATE(1823), [sym__type_query_member_expression_in_type_annotation] = STATE(1867), [sym__type_query_call_expression_in_type_annotation] = STATE(1905), [sym_type] = STATE(2033), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1020] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), + [1018] = { + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), [sym_nested_type_identifier] = STATE(1823), [sym__type_query_member_expression_in_type_annotation] = STATE(1867), [sym__type_query_call_expression_in_type_annotation] = STATE(1905), [sym_type] = STATE(2034), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1021] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4983), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(4114), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(4406), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1019] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4974), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(4113), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(4403), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -127390,15 +127242,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -127424,482 +127276,556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1022] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3332), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), + [1020] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4116), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [sym_identifier] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_typeof] = ACTIONS(1543), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1561), + [sym_number] = ACTIONS(1563), + [sym_this] = ACTIONS(1565), + [sym_true] = ACTIONS(1567), + [sym_false] = ACTIONS(1567), + [sym_null] = ACTIONS(1567), + [sym_undefined] = ACTIONS(1567), + [anon_sym_readonly] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(783), + [anon_sym_any] = ACTIONS(217), + [anon_sym_number] = ACTIONS(217), + [anon_sym_boolean] = ACTIONS(217), + [anon_sym_string] = ACTIONS(217), + [anon_sym_symbol] = ACTIONS(217), + [anon_sym_object] = ACTIONS(217), + [anon_sym_abstract] = ACTIONS(209), + [anon_sym_infer] = ACTIONS(211), + [anon_sym_keyof] = ACTIONS(213), + [anon_sym_unique] = ACTIONS(215), + [anon_sym_unknown] = ACTIONS(217), + [anon_sym_never] = ACTIONS(217), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_html_comment] = ACTIONS(5), + }, + [1021] = { + [sym_import] = STATE(4581), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5869), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(3187), + [sym__type_query_call_expression_in_type_annotation] = STATE(3319), + [sym_type] = STATE(3368), + [sym_constructor_type] = STATE(3422), + [sym_primary_type] = STATE(3426), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3428), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5263), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(3422), [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_infer] = ACTIONS(3056), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), [sym_html_comment] = ACTIONS(5), }, - [1023] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3337), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), + [1022] = { + [sym_import] = STATE(4581), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5869), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(3187), + [sym__type_query_call_expression_in_type_annotation] = STATE(3319), + [sym_type] = STATE(3369), + [sym_constructor_type] = STATE(3422), + [sym_primary_type] = STATE(3426), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3428), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5263), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(3422), [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_infer] = ACTIONS(3056), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), [sym_html_comment] = ACTIONS(5), }, - [1024] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), + [1023] = { + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), [sym_nested_type_identifier] = STATE(1823), [sym__type_query_member_expression_in_type_annotation] = STATE(1867), [sym__type_query_call_expression_in_type_annotation] = STATE(1905), [sym_type] = STATE(2060), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1025] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), + [1024] = { + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), [sym_nested_type_identifier] = STATE(1823), [sym__type_query_member_expression_in_type_annotation] = STATE(1867), [sym__type_query_call_expression_in_type_annotation] = STATE(1905), [sym_type] = STATE(2061), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1026] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), + [1025] = { + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), [sym_nested_type_identifier] = STATE(1823), [sym__type_query_member_expression_in_type_annotation] = STATE(1867), [sym__type_query_call_expression_in_type_annotation] = STATE(1905), [sym_type] = STATE(1881), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1027] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), + [1026] = { + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), [sym_nested_type_identifier] = STATE(1823), [sym__type_query_member_expression_in_type_annotation] = STATE(1867), [sym__type_query_call_expression_in_type_annotation] = STATE(1905), [sym_type] = STATE(1882), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1028] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4116), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1027] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3845), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -127908,15 +127834,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -127942,38 +127868,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1029] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3950), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [1028] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3948), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -127982,15 +127908,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -128016,112 +127942,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1030] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3842), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [1031] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3233), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [1029] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3247), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -128130,15 +127982,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -128164,38 +128016,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1032] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3238), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [1030] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3255), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -128204,15 +128056,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -128238,38 +128090,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1033] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3254), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [1031] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3257), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -128278,15 +128130,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -128312,38 +128164,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1034] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4976), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3256), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(2974), + [1032] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4984), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(3222), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -128352,15 +128204,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -128386,38 +128238,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1035] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4976), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3264), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(2974), + [1033] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4984), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(3227), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -128426,15 +128278,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -128460,38 +128312,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1036] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [1034] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3030), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(2955), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -128500,8 +128352,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), @@ -128509,6 +128359,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -128534,38 +128386,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1037] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [1035] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3646), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3649), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -128574,8 +128426,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), @@ -128583,6 +128433,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -128608,38 +128460,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1038] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3502), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [1036] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(2955), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [sym_identifier] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_typeof] = ACTIONS(1543), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1561), + [sym_number] = ACTIONS(1563), + [sym_this] = ACTIONS(1565), + [sym_true] = ACTIONS(1567), + [sym_false] = ACTIONS(1567), + [sym_null] = ACTIONS(1567), + [sym_undefined] = ACTIONS(1567), + [anon_sym_readonly] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(783), + [anon_sym_any] = ACTIONS(217), + [anon_sym_number] = ACTIONS(217), + [anon_sym_boolean] = ACTIONS(217), + [anon_sym_string] = ACTIONS(217), + [anon_sym_symbol] = ACTIONS(217), + [anon_sym_object] = ACTIONS(217), + [anon_sym_abstract] = ACTIONS(209), + [anon_sym_infer] = ACTIONS(211), + [anon_sym_keyof] = ACTIONS(213), + [anon_sym_unique] = ACTIONS(215), + [anon_sym_unknown] = ACTIONS(217), + [anon_sym_never] = ACTIONS(217), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_html_comment] = ACTIONS(5), + }, + [1037] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3479), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -128648,15 +128574,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -128682,38 +128608,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1039] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3965), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [1038] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3963), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -128722,15 +128648,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -128756,38 +128682,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1040] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3478), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [1039] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3500), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -128796,15 +128722,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -128830,38 +128756,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1041] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [1040] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3003), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3025), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -128870,8 +128796,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), @@ -128879,6 +128803,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -128904,38 +128830,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1042] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [1041] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3649), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3652), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -128944,8 +128870,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), @@ -128953,6 +128877,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -128978,38 +128904,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, + [1042] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3228), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), + [sym_identifier] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_typeof] = ACTIONS(1629), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_new] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_number] = ACTIONS(1649), + [sym_this] = ACTIONS(1651), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), + [sym_null] = ACTIONS(1653), + [sym_undefined] = ACTIONS(1653), + [anon_sym_readonly] = ACTIONS(1655), + [anon_sym_QMARK] = ACTIONS(1033), + [anon_sym_any] = ACTIONS(1045), + [anon_sym_number] = ACTIONS(1045), + [anon_sym_boolean] = ACTIONS(1045), + [anon_sym_string] = ACTIONS(1045), + [anon_sym_symbol] = ACTIONS(1045), + [anon_sym_object] = ACTIONS(1045), + [anon_sym_abstract] = ACTIONS(1037), + [anon_sym_infer] = ACTIONS(1039), + [anon_sym_keyof] = ACTIONS(1041), + [anon_sym_unique] = ACTIONS(1043), + [anon_sym_unknown] = ACTIONS(1045), + [anon_sym_never] = ACTIONS(1045), + [anon_sym_LBRACE_PIPE] = ACTIONS(1047), + [sym_html_comment] = ACTIONS(5), + }, [1043] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3225), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3265), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -129018,15 +129018,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -129053,37 +129053,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1044] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3651), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3654), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -129092,8 +129092,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), @@ -129101,6 +129099,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -129127,37 +129127,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1045] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3652), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3655), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -129166,8 +129166,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), @@ -129175,6 +129173,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -129201,37 +129201,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1046] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3226), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3473), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -129240,15 +129240,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -129275,111 +129275,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1047] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3481), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), - [sym_identifier] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(1045), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1651), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_undefined] = ACTIONS(1653), - [anon_sym_readonly] = ACTIONS(1655), - [anon_sym_QMARK] = ACTIONS(1033), - [anon_sym_any] = ACTIONS(1045), - [anon_sym_number] = ACTIONS(1045), - [anon_sym_boolean] = ACTIONS(1045), - [anon_sym_string] = ACTIONS(1045), - [anon_sym_symbol] = ACTIONS(1045), - [anon_sym_object] = ACTIONS(1045), - [anon_sym_abstract] = ACTIONS(1037), - [anon_sym_infer] = ACTIONS(1039), - [anon_sym_keyof] = ACTIONS(1041), - [anon_sym_unique] = ACTIONS(1043), - [anon_sym_unknown] = ACTIONS(1045), - [anon_sym_never] = ACTIONS(1045), - [anon_sym_LBRACE_PIPE] = ACTIONS(1047), - [sym_html_comment] = ACTIONS(5), - }, - [1048] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(2998), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(2946), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -129388,8 +129314,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), @@ -129397,6 +129321,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -129422,38 +129348,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1049] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [1048] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3046), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(2947), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -129462,8 +129388,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), @@ -129471,6 +129395,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -129496,38 +129422,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1050] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4471), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1049] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4472), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -129536,15 +129462,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -129570,38 +129496,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1051] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3982), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [1050] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3979), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -129610,15 +129536,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -129644,38 +129570,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1052] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [1051] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(2991), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3045), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -129684,8 +129610,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), @@ -129693,6 +129617,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -129718,38 +129644,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1053] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [1052] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3656), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3658), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -129758,8 +129684,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), @@ -129767,6 +129691,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -129792,38 +129718,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, + [1053] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4422), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [sym_identifier] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_typeof] = ACTIONS(1543), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1561), + [sym_number] = ACTIONS(1563), + [sym_this] = ACTIONS(1565), + [sym_true] = ACTIONS(1567), + [sym_false] = ACTIONS(1567), + [sym_null] = ACTIONS(1567), + [sym_undefined] = ACTIONS(1567), + [anon_sym_readonly] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(783), + [anon_sym_any] = ACTIONS(217), + [anon_sym_number] = ACTIONS(217), + [anon_sym_boolean] = ACTIONS(217), + [anon_sym_string] = ACTIONS(217), + [anon_sym_symbol] = ACTIONS(217), + [anon_sym_object] = ACTIONS(217), + [anon_sym_abstract] = ACTIONS(209), + [anon_sym_infer] = ACTIONS(211), + [anon_sym_keyof] = ACTIONS(213), + [anon_sym_unique] = ACTIONS(215), + [anon_sym_unknown] = ACTIONS(217), + [anon_sym_never] = ACTIONS(217), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_html_comment] = ACTIONS(5), + }, [1054] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4410), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4424), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -129832,15 +129832,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -129867,37 +129867,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1055] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4426), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3089), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -129906,15 +129906,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -129941,37 +129941,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1056] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3262), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3238), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -129980,15 +129980,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -130015,37 +130015,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1057] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3277), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3258), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -130054,15 +130054,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -130089,259 +130089,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1058] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3030), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), - [sym_html_comment] = ACTIONS(5), - }, - [1059] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), [sym_nested_type_identifier] = STATE(1823), [sym__type_query_member_expression_in_type_annotation] = STATE(1867), [sym__type_query_call_expression_in_type_annotation] = STATE(1905), [sym_type] = STATE(1942), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1060] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), + [1059] = { + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), [sym_nested_type_identifier] = STATE(1823), [sym__type_query_member_expression_in_type_annotation] = STATE(1867), [sym__type_query_call_expression_in_type_annotation] = STATE(1905), [sym_type] = STATE(1943), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1061] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3267), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [1060] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3244), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -130350,15 +130276,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -130384,38 +130310,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1062] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3271), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [1061] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3275), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -130424,15 +130350,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -130458,38 +130384,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1063] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3129), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1062] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5631), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4423), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -130498,15 +130424,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_new] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -130515,55 +130441,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), + [anon_sym_readonly] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), + [anon_sym_abstract] = ACTIONS(636), + [anon_sym_infer] = ACTIONS(638), + [anon_sym_keyof] = ACTIONS(640), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1064] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3223), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [1063] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3273), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -130572,15 +130498,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -130606,38 +130532,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1065] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3224), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [1064] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3284), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -130646,15 +130572,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -130680,556 +130606,556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1066] = { + [1065] = { [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), [sym_type] = STATE(1536), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1067] = { + [1066] = { [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), [sym_type] = STATE(1537), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1068] = { + [1067] = { [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1552), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), + [sym_type] = STATE(1543), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1069] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4544), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(1558), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(2974), + [1068] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4539), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(1548), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), [anon_sym_abstract] = ACTIONS(209), [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1070] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4544), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(1563), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(2974), + [1069] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4539), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(1558), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), [anon_sym_abstract] = ACTIONS(209), [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1071] = { + [1070] = { [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1612), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), + [sym_type] = STATE(1606), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1072] = { + [1071] = { [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), [sym_type] = STATE(1613), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1073] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(2991), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1072] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3045), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -131238,15 +131164,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -131272,38 +131198,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1074] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4424), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1073] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3872), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -131312,15 +131238,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -131329,55 +131255,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_readonly] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(783), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), + [anon_sym_abstract] = ACTIONS(209), + [anon_sym_infer] = ACTIONS(211), + [anon_sym_keyof] = ACTIONS(213), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1075] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4454), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1074] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4432), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -131386,15 +131312,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -131420,260 +131346,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1076] = { + [1075] = { [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1547), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), + [sym_type] = STATE(1549), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1077] = { + [1076] = { [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1553), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), + [sym_type] = STATE(1554), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1078] = { + [1077] = { [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1572), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), + [sym_type] = STATE(1528), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1079] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4409), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1078] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4405), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -131682,15 +131608,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -131716,38 +131642,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, + [1079] = { + [sym_import] = STATE(4535), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), + [sym_type] = STATE(1575), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), + [sym_identifier] = ACTIONS(3258), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), + [sym_this] = ACTIONS(3260), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), + [sym_html_comment] = ACTIONS(5), + }, [1080] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4518), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4520), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -131756,8 +131756,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), @@ -131765,6 +131763,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -131792,554 +131792,480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1081] = { [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1594), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), + [sym_type] = STATE(1600), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, [1082] = { - [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1599), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), - [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), + [sym_import] = STATE(4581), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5869), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(3187), + [sym__type_query_call_expression_in_type_annotation] = STATE(3319), + [sym_type] = STATE(3330), + [sym_constructor_type] = STATE(3422), + [sym_primary_type] = STATE(3426), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3428), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5263), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(3422), + [sym_identifier] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), + [sym_this] = ACTIONS(3268), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_infer] = ACTIONS(3056), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), [sym_html_comment] = ACTIONS(5), }, [1083] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3883), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(1541), - [anon_sym_typeof] = ACTIONS(1543), + [sym_import] = STATE(4581), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5869), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(3187), + [sym__type_query_call_expression_in_type_annotation] = STATE(3319), + [sym_type] = STATE(3365), + [sym_constructor_type] = STATE(3422), + [sym_primary_type] = STATE(3426), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3428), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5263), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(3422), + [sym_identifier] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(134), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(217), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_number] = ACTIONS(1563), - [sym_this] = ACTIONS(1565), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_any] = ACTIONS(217), - [anon_sym_number] = ACTIONS(217), - [anon_sym_boolean] = ACTIONS(217), - [anon_sym_string] = ACTIONS(217), - [anon_sym_symbol] = ACTIONS(217), - [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), - [anon_sym_unique] = ACTIONS(215), - [anon_sym_unknown] = ACTIONS(217), - [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), + [sym_this] = ACTIONS(3268), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_infer] = ACTIONS(3056), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), [sym_html_comment] = ACTIONS(5), }, [1084] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3464), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), + [sym_import] = STATE(4581), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5869), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(3187), + [sym__type_query_call_expression_in_type_annotation] = STATE(3319), + [sym_type] = STATE(3384), + [sym_constructor_type] = STATE(3422), + [sym_primary_type] = STATE(3426), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3428), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5263), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(3422), [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_infer] = ACTIONS(3056), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), [sym_html_comment] = ACTIONS(5), }, [1085] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3466), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4590), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(3390), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3428), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(209), + [anon_sym_infer] = ACTIONS(211), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), [sym_html_comment] = ACTIONS(5), }, [1086] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3412), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [sym_html_comment] = ACTIONS(5), - }, - [1087] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4593), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3336), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(2974), + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4590), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(3405), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3428), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), [anon_sym_abstract] = ACTIONS(209), [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), [sym_html_comment] = ACTIONS(5), }, - [1088] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4481), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1087] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4478), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -132348,15 +132274,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -132382,112 +132308,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1089] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4593), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3437), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(2974), - [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), - [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), - [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), - [sym_html_comment] = ACTIONS(5), - }, - [1090] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3003), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1088] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3025), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -132496,15 +132348,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -132530,38 +132382,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1091] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3112), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1089] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3116), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -132570,15 +132422,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -132604,704 +132456,704 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1092] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3343), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), + [1090] = { + [sym_import] = STATE(4581), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5869), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(3187), + [sym__type_query_call_expression_in_type_annotation] = STATE(3319), + [sym_type] = STATE(3423), + [sym_constructor_type] = STATE(3422), + [sym_primary_type] = STATE(3426), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3428), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5263), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(3422), [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_infer] = ACTIONS(3056), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), [sym_html_comment] = ACTIONS(5), }, - [1093] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3350), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), + [1091] = { + [sym_import] = STATE(4581), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5869), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(3187), + [sym__type_query_call_expression_in_type_annotation] = STATE(3319), + [sym_type] = STATE(3424), + [sym_constructor_type] = STATE(3422), + [sym_primary_type] = STATE(3426), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3428), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5263), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(3422), [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_infer] = ACTIONS(3056), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), [sym_html_comment] = ACTIONS(5), }, - [1094] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3423), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), + [1092] = { + [sym_import] = STATE(4581), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5869), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(3187), + [sym__type_query_call_expression_in_type_annotation] = STATE(3319), + [sym_type] = STATE(3329), + [sym_constructor_type] = STATE(3422), + [sym_primary_type] = STATE(3426), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3428), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5263), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(3422), [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_infer] = ACTIONS(3056), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), [sym_html_comment] = ACTIONS(5), }, - [1095] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3426), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), + [1093] = { + [sym_import] = STATE(4581), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5869), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(3187), + [sym__type_query_call_expression_in_type_annotation] = STATE(3319), + [sym_type] = STATE(3344), + [sym_constructor_type] = STATE(3422), + [sym_primary_type] = STATE(3426), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3428), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5263), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(3422), [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_infer] = ACTIONS(3056), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), [sym_html_comment] = ACTIONS(5), }, - [1096] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3344), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), + [1094] = { + [sym_import] = STATE(4581), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5869), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(3187), + [sym__type_query_call_expression_in_type_annotation] = STATE(3319), + [sym_type] = STATE(3340), + [sym_constructor_type] = STATE(3422), + [sym_primary_type] = STATE(3426), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3428), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5263), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(3422), [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_infer] = ACTIONS(3056), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), [sym_html_comment] = ACTIONS(5), }, - [1097] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3346), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), + [1095] = { + [sym_import] = STATE(4581), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5869), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(3187), + [sym__type_query_call_expression_in_type_annotation] = STATE(3319), + [sym_type] = STATE(3341), + [sym_constructor_type] = STATE(3422), + [sym_primary_type] = STATE(3426), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3428), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5263), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(3422), [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_infer] = ACTIONS(3056), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), [sym_html_comment] = ACTIONS(5), }, - [1098] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3358), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), + [1096] = { + [sym_import] = STATE(4581), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5869), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(3187), + [sym__type_query_call_expression_in_type_annotation] = STATE(3319), + [sym_type] = STATE(3354), + [sym_constructor_type] = STATE(3422), + [sym_primary_type] = STATE(3426), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3428), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5263), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(3422), [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_infer] = ACTIONS(3056), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), [sym_html_comment] = ACTIONS(5), }, - [1099] = { - [sym_import] = STATE(4584), - [sym_nested_identifier] = STATE(5811), - [sym_string] = STATE(3369), - [sym_formal_parameters] = STATE(5849), - [sym_nested_type_identifier] = STATE(3252), - [sym__type_query_member_expression_in_type_annotation] = STATE(3200), - [sym__type_query_call_expression_in_type_annotation] = STATE(3295), - [sym_type] = STATE(3359), - [sym_constructor_type] = STATE(3384), - [sym_primary_type] = STATE(3385), - [sym_template_literal_type] = STATE(3388), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(3388), - [sym_generic_type] = STATE(3388), - [sym_type_query] = STATE(3388), - [sym_index_type_query] = STATE(3388), - [sym_lookup_type] = STATE(3388), - [sym_literal_type] = STATE(3388), - [sym__number] = STATE(3389), - [sym_existential_type] = STATE(3388), - [sym_flow_maybe_type] = STATE(3388), - [sym_parenthesized_type] = STATE(3388), - [sym_predefined_type] = STATE(3388), - [sym_object_type] = STATE(3388), - [sym_type_parameters] = STATE(5258), - [sym_array_type] = STATE(3388), - [sym_tuple_type] = STATE(3388), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(3388), - [sym_intersection_type] = STATE(3388), - [sym_function_type] = STATE(3384), + [1097] = { + [sym_import] = STATE(4581), + [sym_nested_identifier] = STATE(5819), + [sym_string] = STATE(3407), + [sym_formal_parameters] = STATE(5869), + [sym_nested_type_identifier] = STATE(3269), + [sym__type_query_member_expression_in_type_annotation] = STATE(3187), + [sym__type_query_call_expression_in_type_annotation] = STATE(3319), + [sym_type] = STATE(3355), + [sym_constructor_type] = STATE(3422), + [sym_primary_type] = STATE(3426), + [sym_template_literal_type] = STATE(3428), + [sym_infer_type] = STATE(3422), + [sym_conditional_type] = STATE(3428), + [sym_generic_type] = STATE(3428), + [sym_type_query] = STATE(3428), + [sym_index_type_query] = STATE(3428), + [sym_lookup_type] = STATE(3428), + [sym_literal_type] = STATE(3428), + [sym__number] = STATE(3432), + [sym_existential_type] = STATE(3428), + [sym_flow_maybe_type] = STATE(3428), + [sym_parenthesized_type] = STATE(3428), + [sym_predefined_type] = STATE(3428), + [sym_object_type] = STATE(3428), + [sym_type_parameters] = STATE(5263), + [sym_array_type] = STATE(3428), + [sym_tuple_type] = STATE(3428), + [sym_readonly_type] = STATE(3422), + [sym_union_type] = STATE(3428), + [sym_intersection_type] = STATE(3428), + [sym_function_type] = STATE(3422), [sym_identifier] = ACTIONS(3266), - [anon_sym_STAR] = ACTIONS(3028), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_typeof] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(3016), + [anon_sym_typeof] = ACTIONS(3018), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(3038), - [anon_sym_DQUOTE] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(3042), - [anon_sym_new] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(3050), - [anon_sym_DASH] = ACTIONS(3050), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_SQUOTE] = ACTIONS(3038), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3054), - [sym_number] = ACTIONS(3056), + [anon_sym_BQUOTE] = ACTIONS(3040), + [sym_number] = ACTIONS(3042), [sym_this] = ACTIONS(3268), - [sym_true] = ACTIONS(3060), - [sym_false] = ACTIONS(3060), - [sym_null] = ACTIONS(3060), - [sym_undefined] = ACTIONS(3060), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_object] = ACTIONS(3052), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_infer] = ACTIONS(3070), - [anon_sym_keyof] = ACTIONS(3072), - [anon_sym_unique] = ACTIONS(3074), - [anon_sym_unknown] = ACTIONS(3052), - [anon_sym_never] = ACTIONS(3052), - [anon_sym_LBRACE_PIPE] = ACTIONS(3076), + [sym_true] = ACTIONS(3046), + [sym_false] = ACTIONS(3046), + [sym_null] = ACTIONS(3046), + [sym_undefined] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3034), + [anon_sym_number] = ACTIONS(3034), + [anon_sym_boolean] = ACTIONS(3034), + [anon_sym_string] = ACTIONS(3034), + [anon_sym_symbol] = ACTIONS(3034), + [anon_sym_object] = ACTIONS(3034), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_infer] = ACTIONS(3056), + [anon_sym_keyof] = ACTIONS(3058), + [anon_sym_unique] = ACTIONS(3060), + [anon_sym_unknown] = ACTIONS(3034), + [anon_sym_never] = ACTIONS(3034), + [anon_sym_LBRACE_PIPE] = ACTIONS(3062), [sym_html_comment] = ACTIONS(5), }, - [1100] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), + [1098] = { + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), [sym_nested_type_identifier] = STATE(1823), [sym__type_query_member_expression_in_type_annotation] = STATE(1867), [sym__type_query_call_expression_in_type_annotation] = STATE(1905), [sym_type] = STATE(1912), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1101] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3138), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1099] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3124), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -133310,15 +133162,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -133344,38 +133196,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1102] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3139), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1100] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3125), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -133384,15 +133236,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -133418,38 +133270,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1103] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), + [1101] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), [sym_type] = STATE(3312), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -133458,15 +133310,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -133492,38 +133344,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1104] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4477), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1102] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4480), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -133532,15 +133384,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -133566,38 +133418,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1105] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4487), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1103] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4486), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -133606,15 +133458,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -133640,38 +133492,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1106] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4489), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1104] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4488), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -133680,15 +133532,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -133714,38 +133566,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1107] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3159), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1105] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3109), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -133754,15 +133606,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -133788,55 +133640,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1108] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3032), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1106] = { + [sym_import] = STATE(4801), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5705), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(3462), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3037), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5376), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3272), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -133845,72 +133697,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_infer] = ACTIONS(3092), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, - [1109] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3877), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1107] = { + [sym_import] = STATE(4801), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5705), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(3462), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3882), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5376), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3272), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -133919,72 +133771,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_infer] = ACTIONS(3092), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, - [1110] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3878), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1108] = { + [sym_import] = STATE(4801), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5705), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(3462), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3883), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5376), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3272), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -133993,72 +133845,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_infer] = ACTIONS(3092), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, - [1111] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4707), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(2962), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1109] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4703), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2948), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3272), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -134068,7 +133920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), @@ -134077,62 +133929,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(217), [anon_sym_abstract] = ACTIONS(209), [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, - [1112] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4707), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(2993), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1110] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4703), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2945), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3272), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -134142,7 +133994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), @@ -134151,45 +134003,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(217), [anon_sym_abstract] = ACTIONS(209), [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, - [1113] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3788), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1111] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3784), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -134198,15 +134050,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -134232,186 +134084,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1114] = { + [1112] = { [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1637), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), + [sym_type] = STATE(1649), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1115] = { + [1113] = { [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1617), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), + [sym_type] = STATE(1546), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1116] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(4198), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [1114] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(4197), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -134420,15 +134272,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -134454,38 +134306,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1117] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3888), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1115] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3881), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -134494,15 +134346,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -134528,129 +134380,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1118] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), + [1116] = { + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), [sym_nested_type_identifier] = STATE(1823), [sym__type_query_member_expression_in_type_annotation] = STATE(1867), [sym__type_query_call_expression_in_type_annotation] = STATE(1905), [sym_type] = STATE(1931), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1119] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3030), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1117] = { + [sym_import] = STATE(4801), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5705), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(3462), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(2955), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5376), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3272), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -134659,72 +134511,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_infer] = ACTIONS(3092), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, - [1120] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3785), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1118] = { + [sym_import] = STATE(4801), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5705), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(3462), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3779), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5376), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3272), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -134733,55 +134585,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_infer] = ACTIONS(3092), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, - [1121] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4451), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1119] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4449), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -134790,15 +134642,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -134824,55 +134676,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1122] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3003), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1120] = { + [sym_import] = STATE(4801), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5705), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(3462), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3025), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5376), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3272), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -134881,72 +134733,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_infer] = ACTIONS(3092), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, - [1123] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3808), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1121] = { + [sym_import] = STATE(4801), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5705), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(3462), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3809), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5376), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3272), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -134955,72 +134807,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_infer] = ACTIONS(3092), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, - [1124] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4331), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1122] = { + [sym_import] = STATE(4801), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5705), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(3462), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4330), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5376), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3272), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -135029,55 +134881,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_infer] = ACTIONS(3092), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, - [1125] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4453), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1123] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4451), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -135086,15 +134938,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -135120,55 +134972,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1126] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), + [1124] = { + [sym_import] = STATE(4801), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5705), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(3462), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), [sym_type] = STATE(3812), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5376), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3272), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -135177,72 +135029,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_infer] = ACTIONS(3092), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, - [1127] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), + [1125] = { + [sym_import] = STATE(4801), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5705), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(3462), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), [sym_type] = STATE(3814), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5376), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3272), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -135251,72 +135103,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_infer] = ACTIONS(3092), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, - [1128] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(2998), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1126] = { + [sym_import] = STATE(4801), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5705), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(3462), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(2946), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5376), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3272), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -135325,72 +135177,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_infer] = ACTIONS(3092), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, - [1129] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3046), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1127] = { + [sym_import] = STATE(4801), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5705), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(3462), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(2947), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5376), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3272), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -135399,72 +135251,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_infer] = ACTIONS(3092), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, - [1130] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(2991), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1128] = { + [sym_import] = STATE(4801), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5705), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(3462), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3045), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5376), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3272), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -135473,72 +135325,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_infer] = ACTIONS(3092), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, - [1131] = { - [sym_import] = STATE(4803), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5679), - [sym_nested_type_identifier] = STATE(3494), - [sym__type_query_member_expression_in_type_annotation] = STATE(3334), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3841), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5378), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1129] = { + [sym_import] = STATE(4801), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5705), + [sym_nested_type_identifier] = STATE(3495), + [sym__type_query_member_expression_in_type_annotation] = STATE(3462), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3840), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5376), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3272), [anon_sym_STAR] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3072), + [anon_sym_typeof] = ACTIONS(3074), [anon_sym_import] = ACTIONS(1545), [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(3084), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_PIPE] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(3076), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_PIPE] = ACTIONS(3080), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -135547,55 +135399,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(3092), - [anon_sym_QMARK] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_QMARK] = ACTIONS(3086), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(3096), - [anon_sym_infer] = ACTIONS(3100), - [anon_sym_keyof] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3088), + [anon_sym_infer] = ACTIONS(3092), + [anon_sym_keyof] = ACTIONS(3094), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), - [anon_sym_LBRACE_PIPE] = ACTIONS(3104), + [anon_sym_LBRACE_PIPE] = ACTIONS(3096), [sym_html_comment] = ACTIONS(5), }, - [1132] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [1130] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(3032), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3037), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -135604,8 +135456,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), @@ -135613,6 +135463,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -135638,38 +135490,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1133] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [1131] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), [sym_type] = STATE(3728), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -135678,8 +135530,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), @@ -135687,6 +135537,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -135712,38 +135564,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1134] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [1132] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), [sym_type] = STATE(3729), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -135752,8 +135604,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), @@ -135761,6 +135611,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -135786,38 +135638,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1135] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(5022), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(2962), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1133] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(5019), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2948), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -135826,15 +135678,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -135860,38 +135712,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1136] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(5022), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(2993), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1134] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(5019), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2945), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -135900,15 +135752,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -135934,38 +135786,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1137] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4398), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1135] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4395), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -135974,15 +135826,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), + [anon_sym_new] = ACTIONS(1551), [anon_sym_AMP] = ACTIONS(755), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -136008,38 +135860,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1138] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3235), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [1136] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3226), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -136048,15 +135900,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -136082,38 +135934,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1139] = { - [sym_import] = STATE(4926), - [sym_nested_identifier] = STATE(5583), - [sym_string] = STATE(3268), - [sym_formal_parameters] = STATE(5787), - [sym_nested_type_identifier] = STATE(3131), - [sym__type_query_member_expression_in_type_annotation] = STATE(3073), - [sym__type_query_call_expression_in_type_annotation] = STATE(3209), - [sym_type] = STATE(3270), - [sym_constructor_type] = STATE(3272), - [sym_primary_type] = STATE(3273), - [sym_template_literal_type] = STATE(3274), - [sym_infer_type] = STATE(3272), - [sym_conditional_type] = STATE(3274), - [sym_generic_type] = STATE(3274), - [sym_type_query] = STATE(3274), - [sym_index_type_query] = STATE(3274), - [sym_lookup_type] = STATE(3274), - [sym_literal_type] = STATE(3274), - [sym__number] = STATE(3275), - [sym_existential_type] = STATE(3274), - [sym_flow_maybe_type] = STATE(3274), - [sym_parenthesized_type] = STATE(3274), - [sym_predefined_type] = STATE(3274), - [sym_object_type] = STATE(3274), - [sym_type_parameters] = STATE(5160), - [sym_array_type] = STATE(3274), - [sym_tuple_type] = STATE(3274), - [sym_readonly_type] = STATE(3272), - [sym_union_type] = STATE(3274), - [sym_intersection_type] = STATE(3274), - [sym_function_type] = STATE(3272), + [1137] = { + [sym_import] = STATE(4924), + [sym_nested_identifier] = STATE(5574), + [sym_string] = STATE(3242), + [sym_formal_parameters] = STATE(5809), + [sym_nested_type_identifier] = STATE(3153), + [sym__type_query_member_expression_in_type_annotation] = STATE(3081), + [sym__type_query_call_expression_in_type_annotation] = STATE(3197), + [sym_type] = STATE(3260), + [sym_constructor_type] = STATE(3250), + [sym_primary_type] = STATE(3251), + [sym_template_literal_type] = STATE(3252), + [sym_infer_type] = STATE(3250), + [sym_conditional_type] = STATE(3252), + [sym_generic_type] = STATE(3252), + [sym_type_query] = STATE(3252), + [sym_index_type_query] = STATE(3252), + [sym_lookup_type] = STATE(3252), + [sym_literal_type] = STATE(3252), + [sym__number] = STATE(3253), + [sym_existential_type] = STATE(3252), + [sym_flow_maybe_type] = STATE(3252), + [sym_parenthesized_type] = STATE(3252), + [sym_predefined_type] = STATE(3252), + [sym_object_type] = STATE(3252), + [sym_type_parameters] = STATE(5159), + [sym_array_type] = STATE(3252), + [sym_tuple_type] = STATE(3252), + [sym_readonly_type] = STATE(3250), + [sym_union_type] = STATE(3252), + [sym_intersection_type] = STATE(3252), + [sym_function_type] = STATE(3250), [sym_identifier] = ACTIONS(1623), [anon_sym_STAR] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(1627), @@ -136122,15 +135974,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1005), [anon_sym_LPAREN] = ACTIONS(1631), [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), + [anon_sym_new] = ACTIONS(1635), [anon_sym_AMP] = ACTIONS(1013), [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1647), [sym_number] = ACTIONS(1649), @@ -136156,408 +136008,408 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(1047), [sym_html_comment] = ACTIONS(5), }, - [1140] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), + [1138] = { + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), [sym_nested_type_identifier] = STATE(1823), [sym__type_query_member_expression_in_type_annotation] = STATE(1867), [sym__type_query_call_expression_in_type_annotation] = STATE(1905), [sym_type] = STATE(2006), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1141] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), + [1139] = { + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), [sym_nested_type_identifier] = STATE(1823), [sym__type_query_member_expression_in_type_annotation] = STATE(1867), [sym__type_query_call_expression_in_type_annotation] = STATE(1905), [sym_type] = STATE(2112), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1142] = { - [sym_import] = STATE(4772), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5840), + [1140] = { + [sym_import] = STATE(4763), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5838), [sym_nested_type_identifier] = STATE(1823), [sym__type_query_member_expression_in_type_annotation] = STATE(1867), [sym__type_query_call_expression_in_type_annotation] = STATE(1905), [sym_type] = STATE(2041), - [sym_constructor_type] = STATE(1909), - [sym_primary_type] = STATE(1910), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(1909), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_constructor_type] = STATE(1910), + [sym_primary_type] = STATE(1913), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(1910), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5271), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(1909), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(1909), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5278), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(1910), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(1910), [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_infer] = ACTIONS(3152), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_infer] = ACTIONS(3138), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1143] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5623), + [1141] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5736), [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4529), - [sym_constructor_type] = STATE(2974), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4530), + [sym_constructor_type] = STATE(2961), [sym_primary_type] = STATE(2042), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(2974), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), [anon_sym_abstract] = ACTIONS(209), [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1144] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5677), - [sym_string] = STATE(1938), - [sym_formal_parameters] = STATE(5623), + [1142] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5701), + [sym_string] = STATE(1961), + [sym_formal_parameters] = STATE(5736), [sym_nested_type_identifier] = STATE(1823), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4529), - [sym_constructor_type] = STATE(2974), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4530), + [sym_constructor_type] = STATE(2961), [sym_primary_type] = STATE(2044), - [sym_template_literal_type] = STATE(1915), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(1915), - [sym_generic_type] = STATE(1915), - [sym_type_query] = STATE(1915), - [sym_index_type_query] = STATE(1915), - [sym_lookup_type] = STATE(1915), - [sym_literal_type] = STATE(1915), + [sym_template_literal_type] = STATE(1916), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(1916), + [sym_generic_type] = STATE(1916), + [sym_type_query] = STATE(1916), + [sym_index_type_query] = STATE(1916), + [sym_lookup_type] = STATE(1916), + [sym_literal_type] = STATE(1916), [sym__number] = STATE(1918), - [sym_existential_type] = STATE(1915), - [sym_flow_maybe_type] = STATE(1915), - [sym_parenthesized_type] = STATE(1915), - [sym_predefined_type] = STATE(1915), - [sym_object_type] = STATE(1915), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(1915), - [sym_tuple_type] = STATE(1915), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(1915), - [sym_intersection_type] = STATE(1915), - [sym_function_type] = STATE(2974), + [sym_existential_type] = STATE(1916), + [sym_flow_maybe_type] = STATE(1916), + [sym_parenthesized_type] = STATE(1916), + [sym_predefined_type] = STATE(1916), + [sym_object_type] = STATE(1916), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(1916), + [sym_tuple_type] = STATE(1916), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(1916), + [sym_intersection_type] = STATE(1916), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_typeof] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_PIPE] = ACTIONS(3130), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(3114), + [anon_sym_PIPE] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(3118), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3122), + [sym_number] = ACTIONS(3124), [sym_this] = ACTIONS(3264), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), + [anon_sym_QMARK] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3120), + [anon_sym_number] = ACTIONS(3120), + [anon_sym_boolean] = ACTIONS(3120), + [anon_sym_string] = ACTIONS(3120), + [anon_sym_symbol] = ACTIONS(3120), + [anon_sym_object] = ACTIONS(3120), [anon_sym_abstract] = ACTIONS(209), [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(3154), - [anon_sym_unique] = ACTIONS(3156), - [anon_sym_unknown] = ACTIONS(3134), - [anon_sym_never] = ACTIONS(3134), - [anon_sym_LBRACE_PIPE] = ACTIONS(3158), + [anon_sym_keyof] = ACTIONS(3140), + [anon_sym_unique] = ACTIONS(3142), + [anon_sym_unknown] = ACTIONS(3120), + [anon_sym_never] = ACTIONS(3120), + [anon_sym_LBRACE_PIPE] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1145] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4472), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1143] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(3037), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -136566,15 +136418,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -136583,55 +136435,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_readonly] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(783), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), + [anon_sym_abstract] = ACTIONS(209), + [anon_sym_infer] = ACTIONS(211), + [anon_sym_keyof] = ACTIONS(213), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1146] = { - [sym_import] = STATE(4788), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5623), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(2942), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4478), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5442), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1144] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5631), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4470), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -136640,15 +136492,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_new] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -136657,55 +136509,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_QMARK] = ACTIONS(783), + [anon_sym_readonly] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(632), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(209), - [anon_sym_infer] = ACTIONS(211), - [anon_sym_keyof] = ACTIONS(213), + [anon_sym_abstract] = ACTIONS(636), + [anon_sym_infer] = ACTIONS(638), + [anon_sym_keyof] = ACTIONS(640), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1147] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), - [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4500), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [1145] = { + [sym_import] = STATE(4727), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5736), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(2938), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4474), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5289), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -136714,15 +136566,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_new] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PLUS] = ACTIONS(2568), [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -136731,55 +136583,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1567), [sym_null] = ACTIONS(1567), [sym_undefined] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_readonly] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(783), [anon_sym_any] = ACTIONS(217), [anon_sym_number] = ACTIONS(217), [anon_sym_boolean] = ACTIONS(217), [anon_sym_string] = ACTIONS(217), [anon_sym_symbol] = ACTIONS(217), [anon_sym_object] = ACTIONS(217), - [anon_sym_abstract] = ACTIONS(636), - [anon_sym_infer] = ACTIONS(638), - [anon_sym_keyof] = ACTIONS(640), + [anon_sym_abstract] = ACTIONS(209), + [anon_sym_infer] = ACTIONS(211), + [anon_sym_keyof] = ACTIONS(213), [anon_sym_unique] = ACTIONS(215), [anon_sym_unknown] = ACTIONS(217), [anon_sym_never] = ACTIONS(217), [anon_sym_LBRACE_PIPE] = ACTIONS(219), [sym_html_comment] = ACTIONS(5), }, - [1148] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [1146] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4505), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4500), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -136788,8 +136640,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), @@ -136797,6 +136647,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1561), + [sym_number] = ACTIONS(1563), + [sym_this] = ACTIONS(1565), + [sym_true] = ACTIONS(1567), + [sym_false] = ACTIONS(1567), + [sym_null] = ACTIONS(1567), + [sym_undefined] = ACTIONS(1567), + [anon_sym_readonly] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_any] = ACTIONS(217), + [anon_sym_number] = ACTIONS(217), + [anon_sym_boolean] = ACTIONS(217), + [anon_sym_string] = ACTIONS(217), + [anon_sym_symbol] = ACTIONS(217), + [anon_sym_object] = ACTIONS(217), + [anon_sym_abstract] = ACTIONS(636), + [anon_sym_infer] = ACTIONS(638), + [anon_sym_keyof] = ACTIONS(640), + [anon_sym_unique] = ACTIONS(215), + [anon_sym_unknown] = ACTIONS(217), + [anon_sym_never] = ACTIONS(217), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_html_comment] = ACTIONS(5), + }, + [1147] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5631), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4503), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [sym_identifier] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_typeof] = ACTIONS(1543), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1561), + [sym_number] = ACTIONS(1563), + [sym_this] = ACTIONS(1565), + [sym_true] = ACTIONS(1567), + [sym_false] = ACTIONS(1567), + [sym_null] = ACTIONS(1567), + [sym_undefined] = ACTIONS(1567), + [anon_sym_readonly] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(632), + [anon_sym_any] = ACTIONS(217), + [anon_sym_number] = ACTIONS(217), + [anon_sym_boolean] = ACTIONS(217), + [anon_sym_string] = ACTIONS(217), + [anon_sym_symbol] = ACTIONS(217), + [anon_sym_object] = ACTIONS(217), + [anon_sym_abstract] = ACTIONS(636), + [anon_sym_infer] = ACTIONS(638), + [anon_sym_keyof] = ACTIONS(640), + [anon_sym_unique] = ACTIONS(215), + [anon_sym_unknown] = ACTIONS(217), + [anon_sym_never] = ACTIONS(217), + [anon_sym_LBRACE_PIPE] = ACTIONS(219), + [sym_html_comment] = ACTIONS(5), + }, + [1148] = { + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), + [sym_formal_parameters] = STATE(5631), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4506), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), + [sym_identifier] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_typeof] = ACTIONS(1543), + [anon_sym_import] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(134), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1549), + [anon_sym_new] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PLUS] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -136823,37 +136823,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1149] = { - [sym_import] = STATE(4680), - [sym_nested_identifier] = STATE(5868), - [sym_string] = STATE(3013), + [sym_import] = STATE(4676), + [sym_nested_identifier] = STATE(5679), + [sym_string] = STATE(2949), [sym_formal_parameters] = STATE(5631), - [sym_nested_type_identifier] = STATE(2941), - [sym__type_query_member_expression_in_type_annotation] = STATE(3315), - [sym__type_query_call_expression_in_type_annotation] = STATE(2944), - [sym_type] = STATE(4507), - [sym_constructor_type] = STATE(2974), - [sym_primary_type] = STATE(3014), - [sym_template_literal_type] = STATE(3018), - [sym_infer_type] = STATE(2974), - [sym_conditional_type] = STATE(3018), - [sym_generic_type] = STATE(3018), - [sym_type_query] = STATE(3018), - [sym_index_type_query] = STATE(3018), - [sym_lookup_type] = STATE(3018), - [sym_literal_type] = STATE(3018), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3018), - [sym_flow_maybe_type] = STATE(3018), - [sym_parenthesized_type] = STATE(3018), - [sym_predefined_type] = STATE(3018), - [sym_object_type] = STATE(3018), - [sym_type_parameters] = STATE(5464), - [sym_array_type] = STATE(3018), - [sym_tuple_type] = STATE(3018), - [sym_readonly_type] = STATE(2974), - [sym_union_type] = STATE(3018), - [sym_intersection_type] = STATE(3018), - [sym_function_type] = STATE(2974), + [sym_nested_type_identifier] = STATE(2944), + [sym__type_query_member_expression_in_type_annotation] = STATE(3304), + [sym__type_query_call_expression_in_type_annotation] = STATE(2939), + [sym_type] = STATE(4518), + [sym_constructor_type] = STATE(2961), + [sym_primary_type] = STATE(2971), + [sym_template_literal_type] = STATE(2987), + [sym_infer_type] = STATE(2961), + [sym_conditional_type] = STATE(2987), + [sym_generic_type] = STATE(2987), + [sym_type_query] = STATE(2987), + [sym_index_type_query] = STATE(2987), + [sym_lookup_type] = STATE(2987), + [sym_literal_type] = STATE(2987), + [sym__number] = STATE(2998), + [sym_existential_type] = STATE(2987), + [sym_flow_maybe_type] = STATE(2987), + [sym_parenthesized_type] = STATE(2987), + [sym_predefined_type] = STATE(2987), + [sym_object_type] = STATE(2987), + [sym_type_parameters] = STATE(5461), + [sym_array_type] = STATE(2987), + [sym_tuple_type] = STATE(2987), + [sym_readonly_type] = STATE(2961), + [sym_union_type] = STATE(2987), + [sym_intersection_type] = STATE(2987), + [sym_function_type] = STATE(2961), [sym_identifier] = ACTIONS(1539), [anon_sym_STAR] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(1541), @@ -136862,8 +136862,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(134), [anon_sym_LPAREN] = ACTIONS(1547), [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), [anon_sym_new] = ACTIONS(1613), [anon_sym_AMP] = ACTIONS(610), [anon_sym_PIPE] = ACTIONS(612), @@ -136871,6 +136869,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2568), [anon_sym_LT] = ACTIONS(2570), [anon_sym_void] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(1561), [sym_number] = ACTIONS(1563), @@ -136898,106 +136898,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1150] = { [sym_import] = STATE(4535), - [sym_nested_identifier] = STATE(5495), - [sym_string] = STATE(1619), - [sym_formal_parameters] = STATE(5874), - [sym_nested_type_identifier] = STATE(1521), - [sym__type_query_member_expression_in_type_annotation] = STATE(1526), - [sym__type_query_call_expression_in_type_annotation] = STATE(1648), - [sym_type] = STATE(1573), - [sym_constructor_type] = STATE(1628), - [sym_primary_type] = STATE(1595), - [sym_template_literal_type] = STATE(1616), - [sym_infer_type] = STATE(1628), - [sym_conditional_type] = STATE(1616), - [sym_generic_type] = STATE(1616), - [sym_type_query] = STATE(1616), - [sym_index_type_query] = STATE(1616), - [sym_lookup_type] = STATE(1616), - [sym_literal_type] = STATE(1616), - [sym__number] = STATE(1647), - [sym_existential_type] = STATE(1616), - [sym_flow_maybe_type] = STATE(1616), - [sym_parenthesized_type] = STATE(1616), - [sym_predefined_type] = STATE(1616), - [sym_object_type] = STATE(1616), - [sym_type_parameters] = STATE(5220), - [sym_array_type] = STATE(1616), - [sym_tuple_type] = STATE(1616), - [sym_readonly_type] = STATE(1628), - [sym_union_type] = STATE(1616), - [sym_intersection_type] = STATE(1616), - [sym_function_type] = STATE(1628), + [sym_nested_identifier] = STATE(5487), + [sym_string] = STATE(1620), + [sym_formal_parameters] = STATE(5661), + [sym_nested_type_identifier] = STATE(1526), + [sym__type_query_member_expression_in_type_annotation] = STATE(1527), + [sym__type_query_call_expression_in_type_annotation] = STATE(1573), + [sym_type] = STATE(1596), + [sym_constructor_type] = STATE(1599), + [sym_primary_type] = STATE(1597), + [sym_template_literal_type] = STATE(1601), + [sym_infer_type] = STATE(1599), + [sym_conditional_type] = STATE(1601), + [sym_generic_type] = STATE(1601), + [sym_type_query] = STATE(1601), + [sym_index_type_query] = STATE(1601), + [sym_lookup_type] = STATE(1601), + [sym_literal_type] = STATE(1601), + [sym__number] = STATE(1628), + [sym_existential_type] = STATE(1601), + [sym_flow_maybe_type] = STATE(1601), + [sym_parenthesized_type] = STATE(1601), + [sym_predefined_type] = STATE(1601), + [sym_object_type] = STATE(1601), + [sym_type_parameters] = STATE(5219), + [sym_array_type] = STATE(1601), + [sym_tuple_type] = STATE(1601), + [sym_readonly_type] = STATE(1599), + [sym_union_type] = STATE(1601), + [sym_intersection_type] = STATE(1601), + [sym_function_type] = STATE(1599), [sym_identifier] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3152), [anon_sym_import] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), [anon_sym_LT] = ACTIONS(2570), - [anon_sym_void] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3172), [sym_this] = ACTIONS(3260), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_infer] = ACTIONS(3200), - [anon_sym_keyof] = ACTIONS(3202), - [anon_sym_unique] = ACTIONS(3204), - [anon_sym_unknown] = ACTIONS(3182), - [anon_sym_never] = ACTIONS(3182), - [anon_sym_LBRACE_PIPE] = ACTIONS(3206), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_infer] = ACTIONS(3186), + [anon_sym_keyof] = ACTIONS(3188), + [anon_sym_unique] = ACTIONS(3190), + [anon_sym_unknown] = ACTIONS(3168), + [anon_sym_never] = ACTIONS(3168), + [anon_sym_LBRACE_PIPE] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, [1151] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), + [sym_export_statement] = STATE(3796), + [sym_object_pattern] = STATE(5589), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array_pattern] = STATE(5589), + [sym__call_signature] = STATE(4078), + [sym__destructuring_pattern] = STATE(5589), + [sym_spread_element] = STATE(5127), + [sym_string] = STATE(3142), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3317), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(5127), + [sym_pair] = STATE(5127), + [sym_pair_pattern] = STATE(4562), + [sym__property_name] = STATE(3142), + [sym_computed_property_name] = STATE(3142), + [sym_method_signature] = STATE(3796), + [sym_accessibility_modifier] = STATE(2776), + [sym_override_modifier] = STATE(2799), + [sym_call_signature] = STATE(3796), + [sym_property_signature] = STATE(3796), + [sym_type_parameters] = STATE(5224), + [sym_construct_signature] = STATE(3796), + [sym_index_signature] = STATE(3796), + [aux_sym_export_statement_repeat1] = STATE(4391), + [aux_sym_object_repeat1] = STATE(4524), + [aux_sym_object_pattern_repeat1] = STATE(4884), [sym_identifier] = ACTIONS(3276), [anon_sym_export] = ACTIONS(3278), [anon_sym_STAR] = ACTIONS(3280), @@ -137010,14 +137010,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(3288), [anon_sym_SEMI] = ACTIONS(3290), [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), [anon_sym_async] = ACTIONS(3294), [anon_sym_new] = ACTIONS(3296), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3298), [anon_sym_DASH] = ACTIONS(3298), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3300), [sym_private_property_identifier] = ACTIONS(3300), @@ -137043,67 +137043,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [1152] = { + [sym_export_statement] = STATE(3796), + [sym_object_pattern] = STATE(5589), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array_pattern] = STATE(5589), + [sym__call_signature] = STATE(4078), + [sym__destructuring_pattern] = STATE(5589), + [sym_spread_element] = STATE(5127), + [sym_string] = STATE(3142), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3317), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(5127), + [sym_pair] = STATE(5127), + [sym_pair_pattern] = STATE(4562), + [sym__property_name] = STATE(3142), + [sym_computed_property_name] = STATE(3142), + [sym_method_signature] = STATE(3796), + [sym_accessibility_modifier] = STATE(2776), + [sym_override_modifier] = STATE(2799), + [sym_call_signature] = STATE(3796), + [sym_property_signature] = STATE(3796), + [sym_type_parameters] = STATE(5224), + [sym_construct_signature] = STATE(3796), + [sym_index_signature] = STATE(3796), + [aux_sym_export_statement_repeat1] = STATE(4391), + [aux_sym_object_repeat1] = STATE(4524), + [aux_sym_object_pattern_repeat1] = STATE(4884), [sym_identifier] = ACTIONS(3316), - [anon_sym_export] = ACTIONS(3316), + [anon_sym_export] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3280), [anon_sym_type] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(3316), [anon_sym_namespace] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_COMMA] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3318), - [anon_sym_typeof] = ACTIONS(3316), - [anon_sym_import] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3282), + [anon_sym_COMMA] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(3320), [anon_sym_let] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym_RPAREN] = ACTIONS(3318), - [anon_sym_await] = ACTIONS(3316), - [anon_sym_COLON] = ACTIONS(3318), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3318), - [anon_sym_RBRACK] = ACTIONS(3318), - [sym_glimmer_opening_tag] = ACTIONS(3318), - [anon_sym_GT] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_class] = ACTIONS(3316), - [anon_sym_async] = ACTIONS(3316), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_EQ_GT] = ACTIONS(3318), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_using] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_PIPE] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_SLASH] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_void] = ACTIONS(3316), - [anon_sym_delete] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3318), - [sym_number] = ACTIONS(3318), - [sym_private_property_identifier] = ACTIONS(3318), - [sym_this] = ACTIONS(3316), - [sym_super] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_null] = ACTIONS(3316), - [sym_undefined] = ACTIONS(3316), - [anon_sym_AT] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_readonly] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3316), - [anon_sym_set] = ACTIONS(3316), - [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_async] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_comment] = ACTIONS(5), + [sym_number] = ACTIONS(3300), + [sym_private_property_identifier] = ACTIONS(3300), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_readonly] = ACTIONS(3328), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3330), [anon_sym_declare] = ACTIONS(3316), - [anon_sym_public] = ACTIONS(3316), - [anon_sym_private] = ACTIONS(3316), - [anon_sym_protected] = ACTIONS(3316), - [anon_sym_override] = ACTIONS(3316), + [anon_sym_public] = ACTIONS(3332), + [anon_sym_private] = ACTIONS(3332), + [anon_sym_protected] = ACTIONS(3332), + [anon_sym_override] = ACTIONS(3334), [anon_sym_module] = ACTIONS(3316), [anon_sym_any] = ACTIONS(3316), [anon_sym_number] = ACTIONS(3316), @@ -137111,57 +137110,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(3316), [anon_sym_symbol] = ACTIONS(3316), [anon_sym_object] = ACTIONS(3316), - [anon_sym_extends] = ACTIONS(3316), + [anon_sym_abstract] = ACTIONS(3312), + [anon_sym_PIPE_RBRACE] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, [1153] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), + [sym_identifier] = ACTIONS(3336), + [anon_sym_export] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(3336), + [anon_sym_namespace] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_typeof] = ACTIONS(3336), + [anon_sym_import] = ACTIONS(3336), + [anon_sym_let] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_RPAREN] = ACTIONS(3338), + [anon_sym_await] = ACTIONS(3336), + [anon_sym_COLON] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_RBRACK] = ACTIONS(3338), + [sym_glimmer_opening_tag] = ACTIONS(3338), + [anon_sym_class] = ACTIONS(3336), + [anon_sym_async] = ACTIONS(3336), + [anon_sym_function] = ACTIONS(3336), + [anon_sym_EQ_GT] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_using] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3338), + [anon_sym_PIPE] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_void] = ACTIONS(3336), + [anon_sym_delete] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3338), + [sym_number] = ACTIONS(3338), + [sym_private_property_identifier] = ACTIONS(3338), + [sym_this] = ACTIONS(3336), + [sym_super] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_null] = ACTIONS(3336), + [sym_undefined] = ACTIONS(3336), + [anon_sym_AT] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_readonly] = ACTIONS(3336), + [anon_sym_get] = ACTIONS(3336), + [anon_sym_set] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3338), + [anon_sym_declare] = ACTIONS(3336), + [anon_sym_public] = ACTIONS(3336), + [anon_sym_private] = ACTIONS(3336), + [anon_sym_protected] = ACTIONS(3336), + [anon_sym_override] = ACTIONS(3336), + [anon_sym_module] = ACTIONS(3336), + [anon_sym_any] = ACTIONS(3336), + [anon_sym_number] = ACTIONS(3336), + [anon_sym_boolean] = ACTIONS(3336), + [anon_sym_string] = ACTIONS(3336), + [anon_sym_symbol] = ACTIONS(3336), + [anon_sym_object] = ACTIONS(3336), + [anon_sym_extends] = ACTIONS(3336), + [sym_html_comment] = ACTIONS(5), + }, + [1154] = { + [sym_export_statement] = STATE(3899), + [sym_object_pattern] = STATE(5589), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array_pattern] = STATE(5589), + [sym__call_signature] = STATE(4078), + [sym__destructuring_pattern] = STATE(5589), + [sym_spread_element] = STATE(5127), + [sym_string] = STATE(3142), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3317), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(5127), + [sym_pair] = STATE(5127), + [sym_pair_pattern] = STATE(4562), + [sym__property_name] = STATE(3142), + [sym_computed_property_name] = STATE(3142), + [sym_method_signature] = STATE(3899), + [sym_accessibility_modifier] = STATE(2776), + [sym_override_modifier] = STATE(2799), + [sym_call_signature] = STATE(3899), + [sym_property_signature] = STATE(3899), + [sym_type_parameters] = STATE(5224), + [sym_construct_signature] = STATE(3899), + [sym_index_signature] = STATE(3899), + [aux_sym_export_statement_repeat1] = STATE(4391), + [aux_sym_object_repeat1] = STATE(4524), + [aux_sym_object_pattern_repeat1] = STATE(4884), [sym_identifier] = ACTIONS(3276), [anon_sym_export] = ACTIONS(3278), [anon_sym_STAR] = ACTIONS(3280), [anon_sym_type] = ACTIONS(3276), [anon_sym_namespace] = ACTIONS(3276), [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3342), [anon_sym_let] = ACTIONS(3276), [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3344), [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), [anon_sym_async] = ACTIONS(3294), [anon_sym_new] = ACTIONS(3296), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3298), [anon_sym_DASH] = ACTIONS(3298), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3300), [sym_private_property_identifier] = ACTIONS(3300), @@ -137183,912 +137255,839 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3276), [anon_sym_object] = ACTIONS(3276), [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3314), + [anon_sym_PIPE_RBRACE] = ACTIONS(3346), [sym_html_comment] = ACTIONS(5), }, - [1154] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3324), + [1155] = { + [sym_export_statement] = STATE(3796), + [sym_object_pattern] = STATE(5589), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array_pattern] = STATE(5589), + [sym__call_signature] = STATE(4078), + [sym__destructuring_pattern] = STATE(5589), + [sym_spread_element] = STATE(4699), + [sym_string] = STATE(3142), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3317), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(4699), + [sym_pair] = STATE(4699), + [sym_pair_pattern] = STATE(4562), + [sym__property_name] = STATE(3142), + [sym_computed_property_name] = STATE(3142), + [sym_method_signature] = STATE(3796), + [sym_accessibility_modifier] = STATE(2776), + [sym_override_modifier] = STATE(2799), + [sym_call_signature] = STATE(3796), + [sym_property_signature] = STATE(3796), + [sym_type_parameters] = STATE(5224), + [sym_construct_signature] = STATE(3796), + [sym_index_signature] = STATE(3796), + [aux_sym_export_statement_repeat1] = STATE(4391), + [aux_sym_object_repeat1] = STATE(4653), + [aux_sym_object_pattern_repeat1] = STATE(4884), + [sym_identifier] = ACTIONS(3348), + [anon_sym_export] = ACTIONS(3350), [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3348), + [anon_sym_namespace] = ACTIONS(3348), [anon_sym_LBRACE] = ACTIONS(3282), [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3352), + [anon_sym_let] = ACTIONS(3348), [anon_sym_LPAREN] = ACTIONS(3288), [anon_sym_SEMI] = ACTIONS(3290), [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3330), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3356), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3298), [anon_sym_DASH] = ACTIONS(3298), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3300), [sym_private_property_identifier] = ACTIONS(3300), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3322), - [anon_sym_any] = ACTIONS(3322), - [anon_sym_number] = ACTIONS(3322), - [anon_sym_boolean] = ACTIONS(3322), - [anon_sym_string] = ACTIONS(3322), - [anon_sym_symbol] = ACTIONS(3322), - [anon_sym_object] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3358), + [anon_sym_readonly] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3362), + [anon_sym_set] = ACTIONS(3362), + [anon_sym_declare] = ACTIONS(3348), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_protected] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3366), + [anon_sym_module] = ACTIONS(3348), + [anon_sym_any] = ACTIONS(3348), + [anon_sym_number] = ACTIONS(3348), + [anon_sym_boolean] = ACTIONS(3348), + [anon_sym_string] = ACTIONS(3348), + [anon_sym_symbol] = ACTIONS(3348), + [anon_sym_object] = ACTIONS(3348), [anon_sym_abstract] = ACTIONS(3312), [anon_sym_PIPE_RBRACE] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, - [1155] = { - [sym_export_statement] = STATE(3902), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3902), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3902), - [sym_property_signature] = STATE(3902), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3902), - [sym_index_signature] = STATE(3902), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(251), - [anon_sym_PLUS] = ACTIONS(3298), - [anon_sym_DASH] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(2570), - [sym_comment] = ACTIONS(5), - [sym_number] = ACTIONS(3300), - [sym_private_property_identifier] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3322), - [anon_sym_any] = ACTIONS(3322), - [anon_sym_number] = ACTIONS(3322), - [anon_sym_boolean] = ACTIONS(3322), - [anon_sym_string] = ACTIONS(3322), - [anon_sym_symbol] = ACTIONS(3322), - [anon_sym_object] = ACTIONS(3322), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_PIPE_RBRACE] = ACTIONS(3348), + [1156] = { + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_typeof] = ACTIONS(3368), + [anon_sym_import] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_RPAREN] = ACTIONS(3370), + [anon_sym_await] = ACTIONS(3368), + [anon_sym_COLON] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_RBRACK] = ACTIONS(3370), + [sym_glimmer_opening_tag] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_EQ_GT] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_void] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3370), + [sym_number] = ACTIONS(3370), + [sym_private_property_identifier] = ACTIONS(3370), + [sym_this] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_undefined] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_QMARK] = ACTIONS(3370), + [anon_sym_declare] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_any] = ACTIONS(3368), + [anon_sym_number] = ACTIONS(3368), + [anon_sym_boolean] = ACTIONS(3368), + [anon_sym_string] = ACTIONS(3368), + [anon_sym_symbol] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_extends] = ACTIONS(3368), [sym_html_comment] = ACTIONS(5), }, - [1156] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3350), - [anon_sym_export] = ACTIONS(3352), + [1157] = { + [sym_export_statement] = STATE(3796), + [sym_object_pattern] = STATE(5589), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array_pattern] = STATE(5589), + [sym__call_signature] = STATE(4078), + [sym__destructuring_pattern] = STATE(5589), + [sym_spread_element] = STATE(5127), + [sym_string] = STATE(3142), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3317), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(5127), + [sym_pair] = STATE(5127), + [sym_pair_pattern] = STATE(4562), + [sym__property_name] = STATE(3142), + [sym_computed_property_name] = STATE(3142), + [sym_method_signature] = STATE(3796), + [sym_accessibility_modifier] = STATE(2776), + [sym_override_modifier] = STATE(2799), + [sym_call_signature] = STATE(3796), + [sym_property_signature] = STATE(3796), + [sym_type_parameters] = STATE(5224), + [sym_construct_signature] = STATE(3796), + [sym_index_signature] = STATE(3796), + [aux_sym_export_statement_repeat1] = STATE(4391), + [aux_sym_object_repeat1] = STATE(4524), + [aux_sym_object_pattern_repeat1] = STATE(4884), + [sym_identifier] = ACTIONS(3372), + [anon_sym_export] = ACTIONS(3374), [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3372), + [anon_sym_namespace] = ACTIONS(3372), [anon_sym_LBRACE] = ACTIONS(3282), [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_let] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3376), + [anon_sym_let] = ACTIONS(3372), [anon_sym_LPAREN] = ACTIONS(3288), [anon_sym_SEMI] = ACTIONS(3290), [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3358), + [anon_sym_async] = ACTIONS(3378), + [anon_sym_new] = ACTIONS(3380), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3298), [anon_sym_DASH] = ACTIONS(3298), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3300), [sym_private_property_identifier] = ACTIONS(3300), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_readonly] = ACTIONS(3362), - [anon_sym_get] = ACTIONS(3364), - [anon_sym_set] = ACTIONS(3364), - [anon_sym_declare] = ACTIONS(3350), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_override] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3350), - [anon_sym_any] = ACTIONS(3350), - [anon_sym_number] = ACTIONS(3350), - [anon_sym_boolean] = ACTIONS(3350), - [anon_sym_string] = ACTIONS(3350), - [anon_sym_symbol] = ACTIONS(3350), - [anon_sym_object] = ACTIONS(3350), + [anon_sym_static] = ACTIONS(3382), + [anon_sym_readonly] = ACTIONS(3384), + [anon_sym_get] = ACTIONS(3386), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_declare] = ACTIONS(3372), + [anon_sym_public] = ACTIONS(3388), + [anon_sym_private] = ACTIONS(3388), + [anon_sym_protected] = ACTIONS(3388), + [anon_sym_override] = ACTIONS(3390), + [anon_sym_module] = ACTIONS(3372), + [anon_sym_any] = ACTIONS(3372), + [anon_sym_number] = ACTIONS(3372), + [anon_sym_boolean] = ACTIONS(3372), + [anon_sym_string] = ACTIONS(3372), + [anon_sym_symbol] = ACTIONS(3372), + [anon_sym_object] = ACTIONS(3372), [anon_sym_abstract] = ACTIONS(3312), [anon_sym_PIPE_RBRACE] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, - [1157] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(4704), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(4704), - [sym_pair] = STATE(4704), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4657), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3370), - [anon_sym_export] = ACTIONS(3372), + [1158] = { + [sym_export_statement] = STATE(3796), + [sym_object_pattern] = STATE(5589), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array_pattern] = STATE(5589), + [sym__call_signature] = STATE(4078), + [sym__destructuring_pattern] = STATE(5589), + [sym_spread_element] = STATE(5127), + [sym_string] = STATE(3142), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3317), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(5127), + [sym_pair] = STATE(5127), + [sym_pair_pattern] = STATE(4562), + [sym__property_name] = STATE(3142), + [sym_computed_property_name] = STATE(3142), + [sym_method_signature] = STATE(3796), + [sym_accessibility_modifier] = STATE(2776), + [sym_override_modifier] = STATE(2799), + [sym_call_signature] = STATE(3796), + [sym_property_signature] = STATE(3796), + [sym_type_parameters] = STATE(5224), + [sym_construct_signature] = STATE(3796), + [sym_index_signature] = STATE(3796), + [aux_sym_export_statement_repeat1] = STATE(4391), + [aux_sym_object_repeat1] = STATE(4524), + [aux_sym_object_pattern_repeat1] = STATE(4884), + [sym_identifier] = ACTIONS(3276), + [anon_sym_export] = ACTIONS(3278), [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3370), - [anon_sym_namespace] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3276), + [anon_sym_namespace] = ACTIONS(3276), [anon_sym_LBRACE] = ACTIONS(3282), [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3374), - [anon_sym_let] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3276), [anon_sym_LPAREN] = ACTIONS(3288), [anon_sym_SEMI] = ACTIONS(3290), [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3376), - [anon_sym_new] = ACTIONS(3378), + [anon_sym_async] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3296), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3298), [anon_sym_DASH] = ACTIONS(3298), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3300), [sym_private_property_identifier] = ACTIONS(3300), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_readonly] = ACTIONS(3382), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3384), - [anon_sym_declare] = ACTIONS(3370), - [anon_sym_public] = ACTIONS(3386), - [anon_sym_private] = ACTIONS(3386), - [anon_sym_protected] = ACTIONS(3386), - [anon_sym_override] = ACTIONS(3388), - [anon_sym_module] = ACTIONS(3370), - [anon_sym_any] = ACTIONS(3370), - [anon_sym_number] = ACTIONS(3370), - [anon_sym_boolean] = ACTIONS(3370), - [anon_sym_string] = ACTIONS(3370), - [anon_sym_symbol] = ACTIONS(3370), - [anon_sym_object] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3304), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3306), + [anon_sym_declare] = ACTIONS(3276), + [anon_sym_public] = ACTIONS(3308), + [anon_sym_private] = ACTIONS(3308), + [anon_sym_protected] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3276), + [anon_sym_any] = ACTIONS(3276), + [anon_sym_number] = ACTIONS(3276), + [anon_sym_boolean] = ACTIONS(3276), + [anon_sym_string] = ACTIONS(3276), + [anon_sym_symbol] = ACTIONS(3276), + [anon_sym_object] = ACTIONS(3276), [anon_sym_abstract] = ACTIONS(3312), [anon_sym_PIPE_RBRACE] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, - [1158] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3324), + [1159] = { + [sym_export_statement] = STATE(3796), + [sym_object_pattern] = STATE(5589), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array_pattern] = STATE(5589), + [sym__call_signature] = STATE(4078), + [sym__destructuring_pattern] = STATE(5589), + [sym_spread_element] = STATE(5127), + [sym_string] = STATE(3142), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3317), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(5127), + [sym_pair] = STATE(5127), + [sym_pair_pattern] = STATE(4562), + [sym__property_name] = STATE(3142), + [sym_computed_property_name] = STATE(3142), + [sym_method_signature] = STATE(3796), + [sym_accessibility_modifier] = STATE(2776), + [sym_override_modifier] = STATE(2799), + [sym_call_signature] = STATE(3796), + [sym_property_signature] = STATE(3796), + [sym_type_parameters] = STATE(5224), + [sym_construct_signature] = STATE(3796), + [sym_index_signature] = STATE(3796), + [aux_sym_export_statement_repeat1] = STATE(4391), + [aux_sym_object_repeat1] = STATE(4524), + [aux_sym_object_pattern_repeat1] = STATE(4884), + [sym_identifier] = ACTIONS(3276), + [anon_sym_export] = ACTIONS(3278), [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3276), + [anon_sym_namespace] = ACTIONS(3276), [anon_sym_LBRACE] = ACTIONS(3282), [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3390), - [anon_sym_let] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3394), + [anon_sym_let] = ACTIONS(3276), [anon_sym_LPAREN] = ACTIONS(3288), [anon_sym_SEMI] = ACTIONS(3290), [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3330), + [anon_sym_async] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3296), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3298), [anon_sym_DASH] = ACTIONS(3298), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3300), [sym_private_property_identifier] = ACTIONS(3300), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3322), - [anon_sym_any] = ACTIONS(3322), - [anon_sym_number] = ACTIONS(3322), - [anon_sym_boolean] = ACTIONS(3322), - [anon_sym_string] = ACTIONS(3322), - [anon_sym_symbol] = ACTIONS(3322), - [anon_sym_object] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3304), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3306), + [anon_sym_declare] = ACTIONS(3276), + [anon_sym_public] = ACTIONS(3308), + [anon_sym_private] = ACTIONS(3308), + [anon_sym_protected] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3276), + [anon_sym_any] = ACTIONS(3276), + [anon_sym_number] = ACTIONS(3276), + [anon_sym_boolean] = ACTIONS(3276), + [anon_sym_string] = ACTIONS(3276), + [anon_sym_symbol] = ACTIONS(3276), + [anon_sym_object] = ACTIONS(3276), [anon_sym_abstract] = ACTIONS(3312), [anon_sym_PIPE_RBRACE] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, - [1159] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3324), + [1160] = { + [sym_export_statement] = STATE(3796), + [sym_object_pattern] = STATE(5589), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array_pattern] = STATE(5589), + [sym__call_signature] = STATE(4078), + [sym__destructuring_pattern] = STATE(5589), + [sym_spread_element] = STATE(5127), + [sym_string] = STATE(3142), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3317), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(5127), + [sym_pair] = STATE(5127), + [sym_pair_pattern] = STATE(4562), + [sym__property_name] = STATE(3142), + [sym_computed_property_name] = STATE(3142), + [sym_method_signature] = STATE(3796), + [sym_accessibility_modifier] = STATE(2776), + [sym_override_modifier] = STATE(2799), + [sym_call_signature] = STATE(3796), + [sym_property_signature] = STATE(3796), + [sym_type_parameters] = STATE(5224), + [sym_construct_signature] = STATE(3796), + [sym_index_signature] = STATE(3796), + [aux_sym_export_statement_repeat1] = STATE(4391), + [aux_sym_object_repeat1] = STATE(4524), + [aux_sym_object_pattern_repeat1] = STATE(4884), + [sym_identifier] = ACTIONS(3316), + [anon_sym_export] = ACTIONS(3318), [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3316), + [anon_sym_namespace] = ACTIONS(3316), [anon_sym_LBRACE] = ACTIONS(3282), [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3396), + [anon_sym_let] = ACTIONS(3316), [anon_sym_LPAREN] = ACTIONS(3288), [anon_sym_SEMI] = ACTIONS(3290), [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3330), + [anon_sym_async] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3324), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3298), [anon_sym_DASH] = ACTIONS(3298), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3300), [sym_private_property_identifier] = ACTIONS(3300), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3338), - [anon_sym_private] = ACTIONS(3338), - [anon_sym_protected] = ACTIONS(3338), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3322), - [anon_sym_any] = ACTIONS(3322), - [anon_sym_number] = ACTIONS(3322), - [anon_sym_boolean] = ACTIONS(3322), - [anon_sym_string] = ACTIONS(3322), - [anon_sym_symbol] = ACTIONS(3322), - [anon_sym_object] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_readonly] = ACTIONS(3328), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3330), + [anon_sym_declare] = ACTIONS(3316), + [anon_sym_public] = ACTIONS(3332), + [anon_sym_private] = ACTIONS(3332), + [anon_sym_protected] = ACTIONS(3332), + [anon_sym_override] = ACTIONS(3334), + [anon_sym_module] = ACTIONS(3316), + [anon_sym_any] = ACTIONS(3316), + [anon_sym_number] = ACTIONS(3316), + [anon_sym_boolean] = ACTIONS(3316), + [anon_sym_string] = ACTIONS(3316), + [anon_sym_symbol] = ACTIONS(3316), + [anon_sym_object] = ACTIONS(3316), [anon_sym_abstract] = ACTIONS(3312), [anon_sym_PIPE_RBRACE] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, - [1160] = { - [sym_identifier] = ACTIONS(3392), - [anon_sym_export] = ACTIONS(3392), - [anon_sym_type] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(3392), - [anon_sym_namespace] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3394), - [anon_sym_COMMA] = ACTIONS(3394), - [anon_sym_RBRACE] = ACTIONS(3394), - [anon_sym_typeof] = ACTIONS(3392), - [anon_sym_import] = ACTIONS(3392), - [anon_sym_let] = ACTIONS(3392), - [anon_sym_BANG] = ACTIONS(3394), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3394), - [anon_sym_await] = ACTIONS(3392), - [anon_sym_COLON] = ACTIONS(3394), - [anon_sym_yield] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3394), - [anon_sym_RBRACK] = ACTIONS(3394), - [sym_glimmer_opening_tag] = ACTIONS(3394), - [anon_sym_GT] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_SQUOTE] = ACTIONS(3394), - [anon_sym_class] = ACTIONS(3392), - [anon_sym_async] = ACTIONS(3392), - [anon_sym_function] = ACTIONS(3392), - [anon_sym_EQ_GT] = ACTIONS(3394), - [anon_sym_new] = ACTIONS(3392), - [anon_sym_using] = ACTIONS(3392), - [anon_sym_AMP] = ACTIONS(3394), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_PLUS] = ACTIONS(3392), - [anon_sym_DASH] = ACTIONS(3392), - [anon_sym_SLASH] = ACTIONS(3392), - [anon_sym_LT] = ACTIONS(3392), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_void] = ACTIONS(3392), - [anon_sym_delete] = ACTIONS(3392), - [anon_sym_PLUS_PLUS] = ACTIONS(3394), - [anon_sym_DASH_DASH] = ACTIONS(3394), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3394), - [sym_number] = ACTIONS(3394), - [sym_private_property_identifier] = ACTIONS(3394), - [sym_this] = ACTIONS(3392), - [sym_super] = ACTIONS(3392), - [sym_true] = ACTIONS(3392), - [sym_false] = ACTIONS(3392), - [sym_null] = ACTIONS(3392), - [sym_undefined] = ACTIONS(3392), - [anon_sym_AT] = ACTIONS(3394), - [anon_sym_static] = ACTIONS(3392), - [anon_sym_readonly] = ACTIONS(3392), - [anon_sym_get] = ACTIONS(3392), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_QMARK] = ACTIONS(3394), - [anon_sym_declare] = ACTIONS(3392), - [anon_sym_public] = ACTIONS(3392), - [anon_sym_private] = ACTIONS(3392), - [anon_sym_protected] = ACTIONS(3392), - [anon_sym_override] = ACTIONS(3392), - [anon_sym_module] = ACTIONS(3392), - [anon_sym_any] = ACTIONS(3392), - [anon_sym_number] = ACTIONS(3392), - [anon_sym_boolean] = ACTIONS(3392), - [anon_sym_string] = ACTIONS(3392), - [anon_sym_symbol] = ACTIONS(3392), - [anon_sym_object] = ACTIONS(3392), - [anon_sym_extends] = ACTIONS(3392), - [sym_html_comment] = ACTIONS(5), - }, [1161] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3278), + [sym_export_statement] = STATE(3796), + [sym_object_pattern] = STATE(5589), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array_pattern] = STATE(5589), + [sym__call_signature] = STATE(4078), + [sym__destructuring_pattern] = STATE(5589), + [sym_spread_element] = STATE(4699), + [sym_string] = STATE(3142), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3317), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(4699), + [sym_pair] = STATE(4699), + [sym_pair_pattern] = STATE(4562), + [sym__property_name] = STATE(3142), + [sym_computed_property_name] = STATE(3142), + [sym_method_signature] = STATE(3796), + [sym_accessibility_modifier] = STATE(2776), + [sym_override_modifier] = STATE(2799), + [sym_call_signature] = STATE(3796), + [sym_property_signature] = STATE(3796), + [sym_type_parameters] = STATE(5224), + [sym_construct_signature] = STATE(3796), + [sym_index_signature] = STATE(3796), + [aux_sym_export_statement_repeat1] = STATE(4391), + [aux_sym_object_repeat1] = STATE(4653), + [aux_sym_object_pattern_repeat1] = STATE(4884), + [sym_identifier] = ACTIONS(3348), + [anon_sym_export] = ACTIONS(3350), [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), + [anon_sym_type] = ACTIONS(3348), + [anon_sym_namespace] = ACTIONS(3348), [anon_sym_LBRACE] = ACTIONS(3282), [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3396), - [anon_sym_let] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3398), + [anon_sym_let] = ACTIONS(3348), [anon_sym_LPAREN] = ACTIONS(3288), [anon_sym_SEMI] = ACTIONS(3290), [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3296), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3356), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3298), [anon_sym_DASH] = ACTIONS(3298), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3300), [sym_private_property_identifier] = ACTIONS(3300), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3302), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3306), - [anon_sym_set] = ACTIONS(3306), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_override] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3358), + [anon_sym_readonly] = ACTIONS(3360), + [anon_sym_get] = ACTIONS(3362), + [anon_sym_set] = ACTIONS(3362), + [anon_sym_declare] = ACTIONS(3348), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_protected] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3366), + [anon_sym_module] = ACTIONS(3348), + [anon_sym_any] = ACTIONS(3348), + [anon_sym_number] = ACTIONS(3348), + [anon_sym_boolean] = ACTIONS(3348), + [anon_sym_string] = ACTIONS(3348), + [anon_sym_symbol] = ACTIONS(3348), + [anon_sym_object] = ACTIONS(3348), [anon_sym_abstract] = ACTIONS(3312), [anon_sym_PIPE_RBRACE] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, [1162] = { - [sym_identifier] = ACTIONS(3398), - [anon_sym_export] = ACTIONS(3398), - [anon_sym_type] = ACTIONS(3398), - [anon_sym_EQ] = ACTIONS(3398), - [anon_sym_namespace] = ACTIONS(3398), - [anon_sym_LBRACE] = ACTIONS(3400), - [anon_sym_COMMA] = ACTIONS(3400), - [anon_sym_RBRACE] = ACTIONS(3400), - [anon_sym_typeof] = ACTIONS(3398), - [anon_sym_import] = ACTIONS(3398), - [anon_sym_let] = ACTIONS(3398), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_LPAREN] = ACTIONS(3400), - [anon_sym_RPAREN] = ACTIONS(3400), - [anon_sym_await] = ACTIONS(3398), - [anon_sym_COLON] = ACTIONS(3400), - [anon_sym_yield] = ACTIONS(3398), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_RBRACK] = ACTIONS(3400), - [sym_glimmer_opening_tag] = ACTIONS(3400), - [anon_sym_GT] = ACTIONS(3400), - [anon_sym_DQUOTE] = ACTIONS(3400), - [anon_sym_SQUOTE] = ACTIONS(3400), - [anon_sym_class] = ACTIONS(3398), - [anon_sym_async] = ACTIONS(3398), - [anon_sym_function] = ACTIONS(3398), - [anon_sym_EQ_GT] = ACTIONS(3400), - [anon_sym_new] = ACTIONS(3398), - [anon_sym_using] = ACTIONS(3398), - [anon_sym_AMP] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3398), - [anon_sym_DASH] = ACTIONS(3398), - [anon_sym_SLASH] = ACTIONS(3398), - [anon_sym_LT] = ACTIONS(3398), - [anon_sym_TILDE] = ACTIONS(3400), - [anon_sym_void] = ACTIONS(3398), - [anon_sym_delete] = ACTIONS(3398), - [anon_sym_PLUS_PLUS] = ACTIONS(3400), - [anon_sym_DASH_DASH] = ACTIONS(3400), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(3400), - [sym_number] = ACTIONS(3400), - [sym_private_property_identifier] = ACTIONS(3400), - [sym_this] = ACTIONS(3398), - [sym_super] = ACTIONS(3398), - [sym_true] = ACTIONS(3398), - [sym_false] = ACTIONS(3398), - [sym_null] = ACTIONS(3398), - [sym_undefined] = ACTIONS(3398), - [anon_sym_AT] = ACTIONS(3400), - [anon_sym_static] = ACTIONS(3398), - [anon_sym_readonly] = ACTIONS(3398), - [anon_sym_get] = ACTIONS(3398), - [anon_sym_set] = ACTIONS(3398), - [anon_sym_QMARK] = ACTIONS(3400), - [anon_sym_declare] = ACTIONS(3398), - [anon_sym_public] = ACTIONS(3398), - [anon_sym_private] = ACTIONS(3398), - [anon_sym_protected] = ACTIONS(3398), - [anon_sym_override] = ACTIONS(3398), - [anon_sym_module] = ACTIONS(3398), - [anon_sym_any] = ACTIONS(3398), - [anon_sym_number] = ACTIONS(3398), - [anon_sym_boolean] = ACTIONS(3398), - [anon_sym_string] = ACTIONS(3398), - [anon_sym_symbol] = ACTIONS(3398), - [anon_sym_object] = ACTIONS(3398), - [anon_sym_extends] = ACTIONS(3398), + [sym_identifier] = ACTIONS(3400), + [anon_sym_export] = ACTIONS(3400), + [anon_sym_type] = ACTIONS(3400), + [anon_sym_EQ] = ACTIONS(3400), + [anon_sym_namespace] = ACTIONS(3400), + [anon_sym_LBRACE] = ACTIONS(3402), + [anon_sym_COMMA] = ACTIONS(3402), + [anon_sym_RBRACE] = ACTIONS(3402), + [anon_sym_typeof] = ACTIONS(3400), + [anon_sym_import] = ACTIONS(3400), + [anon_sym_let] = ACTIONS(3400), + [anon_sym_BANG] = ACTIONS(3402), + [anon_sym_LPAREN] = ACTIONS(3402), + [anon_sym_RPAREN] = ACTIONS(3402), + [anon_sym_await] = ACTIONS(3400), + [anon_sym_COLON] = ACTIONS(3402), + [anon_sym_yield] = ACTIONS(3400), + [anon_sym_LBRACK] = ACTIONS(3402), + [anon_sym_RBRACK] = ACTIONS(3402), + [sym_glimmer_opening_tag] = ACTIONS(3402), + [anon_sym_class] = ACTIONS(3400), + [anon_sym_async] = ACTIONS(3400), + [anon_sym_function] = ACTIONS(3400), + [anon_sym_EQ_GT] = ACTIONS(3402), + [anon_sym_new] = ACTIONS(3400), + [anon_sym_using] = ACTIONS(3400), + [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3400), + [anon_sym_DASH] = ACTIONS(3400), + [anon_sym_SLASH] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(3400), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_TILDE] = ACTIONS(3402), + [anon_sym_void] = ACTIONS(3400), + [anon_sym_delete] = ACTIONS(3400), + [anon_sym_PLUS_PLUS] = ACTIONS(3402), + [anon_sym_DASH_DASH] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_SQUOTE] = ACTIONS(3402), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3402), + [sym_number] = ACTIONS(3402), + [sym_private_property_identifier] = ACTIONS(3402), + [sym_this] = ACTIONS(3400), + [sym_super] = ACTIONS(3400), + [sym_true] = ACTIONS(3400), + [sym_false] = ACTIONS(3400), + [sym_null] = ACTIONS(3400), + [sym_undefined] = ACTIONS(3400), + [anon_sym_AT] = ACTIONS(3402), + [anon_sym_static] = ACTIONS(3400), + [anon_sym_readonly] = ACTIONS(3400), + [anon_sym_get] = ACTIONS(3400), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_QMARK] = ACTIONS(3402), + [anon_sym_declare] = ACTIONS(3400), + [anon_sym_public] = ACTIONS(3400), + [anon_sym_private] = ACTIONS(3400), + [anon_sym_protected] = ACTIONS(3400), + [anon_sym_override] = ACTIONS(3400), + [anon_sym_module] = ACTIONS(3400), + [anon_sym_any] = ACTIONS(3400), + [anon_sym_number] = ACTIONS(3400), + [anon_sym_boolean] = ACTIONS(3400), + [anon_sym_string] = ACTIONS(3400), + [anon_sym_symbol] = ACTIONS(3400), + [anon_sym_object] = ACTIONS(3400), + [anon_sym_extends] = ACTIONS(3400), [sym_html_comment] = ACTIONS(5), }, [1163] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3350), - [anon_sym_export] = ACTIONS(3352), + [sym_export_statement] = STATE(3796), + [sym_object_pattern] = STATE(5589), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array_pattern] = STATE(5589), + [sym__call_signature] = STATE(4078), + [sym__destructuring_pattern] = STATE(5589), + [sym_spread_element] = STATE(5127), + [sym_string] = STATE(3142), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3317), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(5127), + [sym_pair] = STATE(5127), + [sym_pair_pattern] = STATE(4562), + [sym__property_name] = STATE(3142), + [sym_computed_property_name] = STATE(3142), + [sym_method_signature] = STATE(3796), + [sym_accessibility_modifier] = STATE(2776), + [sym_override_modifier] = STATE(2799), + [sym_call_signature] = STATE(3796), + [sym_property_signature] = STATE(3796), + [sym_type_parameters] = STATE(5224), + [sym_construct_signature] = STATE(3796), + [sym_index_signature] = STATE(3796), + [aux_sym_export_statement_repeat1] = STATE(4391), + [aux_sym_object_repeat1] = STATE(4524), + [aux_sym_object_pattern_repeat1] = STATE(4884), + [sym_identifier] = ACTIONS(3404), + [anon_sym_export] = ACTIONS(3406), [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3350), - [anon_sym_namespace] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3404), + [anon_sym_namespace] = ACTIONS(3404), [anon_sym_LBRACE] = ACTIONS(3282), [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3402), - [anon_sym_let] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3394), + [anon_sym_let] = ACTIONS(3404), [anon_sym_LPAREN] = ACTIONS(3288), [anon_sym_SEMI] = ACTIONS(3290), [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3358), + [anon_sym_async] = ACTIONS(3408), + [anon_sym_new] = ACTIONS(3410), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3298), [anon_sym_DASH] = ACTIONS(3298), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3300), [sym_private_property_identifier] = ACTIONS(3300), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_readonly] = ACTIONS(3362), - [anon_sym_get] = ACTIONS(3364), - [anon_sym_set] = ACTIONS(3364), - [anon_sym_declare] = ACTIONS(3350), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_override] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3350), - [anon_sym_any] = ACTIONS(3350), - [anon_sym_number] = ACTIONS(3350), - [anon_sym_boolean] = ACTIONS(3350), - [anon_sym_string] = ACTIONS(3350), - [anon_sym_symbol] = ACTIONS(3350), - [anon_sym_object] = ACTIONS(3350), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_readonly] = ACTIONS(3414), + [anon_sym_get] = ACTIONS(3416), + [anon_sym_set] = ACTIONS(3416), + [anon_sym_declare] = ACTIONS(3404), + [anon_sym_public] = ACTIONS(3418), + [anon_sym_private] = ACTIONS(3418), + [anon_sym_protected] = ACTIONS(3418), + [anon_sym_override] = ACTIONS(3420), + [anon_sym_module] = ACTIONS(3404), + [anon_sym_any] = ACTIONS(3404), + [anon_sym_number] = ACTIONS(3404), + [anon_sym_boolean] = ACTIONS(3404), + [anon_sym_string] = ACTIONS(3404), + [anon_sym_symbol] = ACTIONS(3404), + [anon_sym_object] = ACTIONS(3404), [anon_sym_abstract] = ACTIONS(3312), [anon_sym_PIPE_RBRACE] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, [1164] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(4704), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(4704), - [sym_pair] = STATE(4704), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4657), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3370), - [anon_sym_export] = ACTIONS(3372), + [sym_export_statement] = STATE(3796), + [sym_object_pattern] = STATE(5589), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array_pattern] = STATE(5589), + [sym__call_signature] = STATE(4078), + [sym__destructuring_pattern] = STATE(5589), + [sym_spread_element] = STATE(5127), + [sym_string] = STATE(3142), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3317), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(5127), + [sym_pair] = STATE(5127), + [sym_pair_pattern] = STATE(4562), + [sym__property_name] = STATE(3142), + [sym_computed_property_name] = STATE(3142), + [sym_method_signature] = STATE(3796), + [sym_accessibility_modifier] = STATE(2776), + [sym_override_modifier] = STATE(2799), + [sym_call_signature] = STATE(3796), + [sym_property_signature] = STATE(3796), + [sym_type_parameters] = STATE(5224), + [sym_construct_signature] = STATE(3796), + [sym_index_signature] = STATE(3796), + [aux_sym_export_statement_repeat1] = STATE(4391), + [aux_sym_object_repeat1] = STATE(4524), + [aux_sym_object_pattern_repeat1] = STATE(4884), + [sym_identifier] = ACTIONS(3372), + [anon_sym_export] = ACTIONS(3374), [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3370), - [anon_sym_namespace] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3372), + [anon_sym_namespace] = ACTIONS(3372), [anon_sym_LBRACE] = ACTIONS(3282), [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3404), - [anon_sym_let] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_let] = ACTIONS(3372), [anon_sym_LPAREN] = ACTIONS(3288), [anon_sym_SEMI] = ACTIONS(3290), [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3376), - [anon_sym_new] = ACTIONS(3378), + [anon_sym_async] = ACTIONS(3378), + [anon_sym_new] = ACTIONS(3380), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3298), [anon_sym_DASH] = ACTIONS(3298), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3300), [sym_private_property_identifier] = ACTIONS(3300), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_readonly] = ACTIONS(3382), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3384), - [anon_sym_declare] = ACTIONS(3370), - [anon_sym_public] = ACTIONS(3386), - [anon_sym_private] = ACTIONS(3386), - [anon_sym_protected] = ACTIONS(3386), - [anon_sym_override] = ACTIONS(3388), - [anon_sym_module] = ACTIONS(3370), - [anon_sym_any] = ACTIONS(3370), - [anon_sym_number] = ACTIONS(3370), - [anon_sym_boolean] = ACTIONS(3370), - [anon_sym_string] = ACTIONS(3370), - [anon_sym_symbol] = ACTIONS(3370), - [anon_sym_object] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3382), + [anon_sym_readonly] = ACTIONS(3384), + [anon_sym_get] = ACTIONS(3386), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_declare] = ACTIONS(3372), + [anon_sym_public] = ACTIONS(3388), + [anon_sym_private] = ACTIONS(3388), + [anon_sym_protected] = ACTIONS(3388), + [anon_sym_override] = ACTIONS(3390), + [anon_sym_module] = ACTIONS(3372), + [anon_sym_any] = ACTIONS(3372), + [anon_sym_number] = ACTIONS(3372), + [anon_sym_boolean] = ACTIONS(3372), + [anon_sym_string] = ACTIONS(3372), + [anon_sym_symbol] = ACTIONS(3372), + [anon_sym_object] = ACTIONS(3372), [anon_sym_abstract] = ACTIONS(3312), [anon_sym_PIPE_RBRACE] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, [1165] = { - [sym_export_statement] = STATE(3822), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(4567), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5136), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(4567), - [sym_method_definition] = STATE(5136), - [sym_pair] = STATE(5136), - [sym_pair_pattern] = STATE(4567), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3822), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3822), - [sym_property_signature] = STATE(3822), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3822), - [sym_index_signature] = STATE(3822), - [aux_sym_export_statement_repeat1] = STATE(4407), - [aux_sym_object_repeat1] = STATE(4526), - [aux_sym_object_pattern_repeat1] = STATE(4878), - [sym_identifier] = ACTIONS(3406), - [anon_sym_export] = ACTIONS(3408), + [sym_export_statement] = STATE(3796), + [sym_object_pattern] = STATE(5589), + [sym_object_assignment_pattern] = STATE(4562), + [sym_array_pattern] = STATE(5589), + [sym__call_signature] = STATE(4078), + [sym__destructuring_pattern] = STATE(5589), + [sym_spread_element] = STATE(5127), + [sym_string] = STATE(3142), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3317), + [sym_rest_pattern] = STATE(4562), + [sym_method_definition] = STATE(5127), + [sym_pair] = STATE(5127), + [sym_pair_pattern] = STATE(4562), + [sym__property_name] = STATE(3142), + [sym_computed_property_name] = STATE(3142), + [sym_method_signature] = STATE(3796), + [sym_accessibility_modifier] = STATE(2776), + [sym_override_modifier] = STATE(2799), + [sym_call_signature] = STATE(3796), + [sym_property_signature] = STATE(3796), + [sym_type_parameters] = STATE(5224), + [sym_construct_signature] = STATE(3796), + [sym_index_signature] = STATE(3796), + [aux_sym_export_statement_repeat1] = STATE(4391), + [aux_sym_object_repeat1] = STATE(4524), + [aux_sym_object_pattern_repeat1] = STATE(4884), + [sym_identifier] = ACTIONS(3372), + [anon_sym_export] = ACTIONS(3374), [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3406), - [anon_sym_namespace] = ACTIONS(3406), + [anon_sym_type] = ACTIONS(3372), + [anon_sym_namespace] = ACTIONS(3372), [anon_sym_LBRACE] = ACTIONS(3282), [anon_sym_COMMA] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3390), - [anon_sym_let] = ACTIONS(3406), + [anon_sym_RBRACE] = ACTIONS(3392), + [anon_sym_let] = ACTIONS(3372), [anon_sym_LPAREN] = ACTIONS(3288), [anon_sym_SEMI] = ACTIONS(3290), [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(3410), - [anon_sym_new] = ACTIONS(3412), + [anon_sym_async] = ACTIONS(3378), + [anon_sym_new] = ACTIONS(3380), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3298), [anon_sym_DASH] = ACTIONS(3298), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3300), [sym_private_property_identifier] = ACTIONS(3300), [anon_sym_AT] = ACTIONS(99), - [anon_sym_static] = ACTIONS(3414), - [anon_sym_readonly] = ACTIONS(3416), - [anon_sym_get] = ACTIONS(3418), - [anon_sym_set] = ACTIONS(3418), - [anon_sym_declare] = ACTIONS(3406), - [anon_sym_public] = ACTIONS(3420), - [anon_sym_private] = ACTIONS(3420), - [anon_sym_protected] = ACTIONS(3420), - [anon_sym_override] = ACTIONS(3422), - [anon_sym_module] = ACTIONS(3406), - [anon_sym_any] = ACTIONS(3406), - [anon_sym_number] = ACTIONS(3406), - [anon_sym_boolean] = ACTIONS(3406), - [anon_sym_string] = ACTIONS(3406), - [anon_sym_symbol] = ACTIONS(3406), - [anon_sym_object] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3382), + [anon_sym_readonly] = ACTIONS(3384), + [anon_sym_get] = ACTIONS(3386), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_declare] = ACTIONS(3372), + [anon_sym_public] = ACTIONS(3388), + [anon_sym_private] = ACTIONS(3388), + [anon_sym_protected] = ACTIONS(3388), + [anon_sym_override] = ACTIONS(3390), + [anon_sym_module] = ACTIONS(3372), + [anon_sym_any] = ACTIONS(3372), + [anon_sym_number] = ACTIONS(3372), + [anon_sym_boolean] = ACTIONS(3372), + [anon_sym_string] = ACTIONS(3372), + [anon_sym_symbol] = ACTIONS(3372), + [anon_sym_object] = ACTIONS(3372), [anon_sym_abstract] = ACTIONS(3312), [anon_sym_PIPE_RBRACE] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, [1166] = { - [sym_variable_declarator] = STATE(4464), - [sym_object_pattern] = STATE(3673), - [sym_array_pattern] = STATE(3673), - [sym__destructuring_pattern] = STATE(3673), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_variable_declarator] = STATE(4461), + [sym_object_pattern] = STATE(3675), + [sym_array_pattern] = STATE(3675), + [sym__destructuring_pattern] = STATE(3675), + [aux_sym_object_repeat1] = STATE(4823), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(3424), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -138103,63 +138102,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(695), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1167] = { - [sym_nested_identifier] = STATE(764), - [sym_string] = STATE(785), - [sym__module] = STATE(930), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_nested_identifier] = STATE(762), + [sym_string] = STATE(800), + [sym__module] = STATE(882), + [aux_sym_object_repeat1] = STATE(4823), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(3430), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -138174,63 +138171,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(695), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1168] = { [sym_nested_identifier] = STATE(213), [sym_string] = STATE(209), [sym__module] = STATE(220), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(3432), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -138245,63 +138242,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(3434), + [anon_sym_SQUOTE] = ACTIONS(3436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(695), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1169] = { [sym_nested_identifier] = STATE(213), [sym_string] = STATE(209), [sym__module] = STATE(220), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(3432), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(699), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -138316,63 +138313,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(3434), + [anon_sym_SQUOTE] = ACTIONS(3436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(695), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1170] = { - [sym_variable_declarator] = STATE(4464), - [sym_object_pattern] = STATE(3673), - [sym_array_pattern] = STATE(3673), - [sym__destructuring_pattern] = STATE(3673), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_variable_declarator] = STATE(4461), + [sym_object_pattern] = STATE(3675), + [sym_array_pattern] = STATE(3675), + [sym__destructuring_pattern] = STATE(3675), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(3424), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(699), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -138387,63 +138386,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(695), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1171] = { - [sym_nested_identifier] = STATE(764), - [sym_string] = STATE(785), - [sym__module] = STATE(930), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(3430), + [sym_variable_declarator] = STATE(4461), + [sym_object_pattern] = STATE(3675), + [sym_array_pattern] = STATE(3675), + [sym__destructuring_pattern] = STATE(3675), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(3424), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -138458,63 +138457,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(695), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1172] = { [sym_nested_identifier] = STATE(213), [sym_string] = STATE(209), [sym__module] = STATE(220), - [aux_sym_object_repeat1] = STATE(4824), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [aux_sym_object_repeat1] = STATE(4823), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(3432), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(672), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -138529,63 +138526,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(3434), + [anon_sym_SQUOTE] = ACTIONS(3436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(695), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1173] = { - [sym_nested_identifier] = STATE(764), - [sym_string] = STATE(785), - [sym__module] = STATE(930), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), + [sym_nested_identifier] = STATE(762), + [sym_string] = STATE(800), + [sym__module] = STATE(882), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(3430), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_RBRACE] = ACTIONS(697), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -138600,63 +138597,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(695), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1174] = { - [sym_variable_declarator] = STATE(4464), - [sym_object_pattern] = STATE(3673), - [sym_array_pattern] = STATE(3673), - [sym__destructuring_pattern] = STATE(3673), - [aux_sym_object_repeat1] = STATE(4905), - [aux_sym_object_pattern_repeat1] = STATE(4835), - [sym_identifier] = ACTIONS(3424), + [sym_nested_identifier] = STATE(762), + [sym_string] = STATE(800), + [sym__module] = STATE(882), + [aux_sym_object_repeat1] = STATE(4902), + [aux_sym_object_pattern_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(3430), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(666), [anon_sym_as] = ACTIONS(122), - [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(699), [anon_sym_BANG] = ACTIONS(122), [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -138671,27 +138668,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(2311), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(695), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1175] = { - [sym_nested_identifier] = STATE(1605), - [sym_string] = STATE(1606), + [sym_nested_identifier] = STATE(1610), + [sym_string] = STATE(1612), [sym__module] = STATE(1713), [sym_identifier] = ACTIONS(3438), [anon_sym_STAR] = ACTIONS(122), @@ -138700,33 +138700,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(833), [anon_sym_RBRACE] = ACTIONS(833), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_RPAREN] = ACTIONS(833), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_RBRACK] = ACTIONS(833), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -138741,26 +138738,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(835), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1176] = { - [sym_nested_identifier] = STATE(1605), - [sym_string] = STATE(1606), + [sym_nested_identifier] = STATE(1610), + [sym_string] = STATE(1612), [sym__module] = STATE(1713), [sym_identifier] = ACTIONS(3438), [anon_sym_STAR] = ACTIONS(122), @@ -138769,33 +138769,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(128), [anon_sym_RBRACE] = ACTIONS(128), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_RPAREN] = ACTIONS(128), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(128), - [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_RBRACK] = ACTIONS(128), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(159), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(155), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -138810,185 +138807,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_QMARK] = ACTIONS(725), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1177] = { - [sym_nested_identifier] = STATE(1605), - [sym_string] = STATE(1606), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [1178] = { - [sym_nested_identifier] = STATE(1605), - [sym_string] = STATE(1606), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP] = ACTIONS(122), - [anon_sym_PIPE_PIPE] = ACTIONS(122), - [anon_sym_GT_GT] = ACTIONS(122), - [anon_sym_GT_GT_GT] = ACTIONS(122), - [anon_sym_LT_LT] = ACTIONS(122), - [anon_sym_AMP] = ACTIONS(122), - [anon_sym_CARET] = ACTIONS(122), - [anon_sym_PIPE] = ACTIONS(122), - [anon_sym_PLUS] = ACTIONS(122), - [anon_sym_DASH] = ACTIONS(122), - [anon_sym_SLASH] = ACTIONS(122), - [anon_sym_PERCENT] = ACTIONS(122), - [anon_sym_STAR_STAR] = ACTIONS(122), - [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), - [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), - [anon_sym_QMARK_QMARK] = ACTIONS(122), - [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), - [sym_html_comment] = ACTIONS(5), - }, - [1179] = { - [sym_export_statement] = STATE(3767), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(5247), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5250), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(5247), - [sym_method_definition] = STATE(5250), - [sym_pair] = STATE(5250), - [sym_pair_pattern] = STATE(5247), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3767), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3767), - [sym_property_signature] = STATE(3767), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3767), - [sym_index_signature] = STATE(3767), - [aux_sym_export_statement_repeat1] = STATE(4407), + [sym_export_statement] = STATE(3768), + [sym_object_pattern] = STATE(5589), + [sym_object_assignment_pattern] = STATE(5249), + [sym_array_pattern] = STATE(5589), + [sym__call_signature] = STATE(4078), + [sym__destructuring_pattern] = STATE(5589), + [sym_spread_element] = STATE(5253), + [sym_string] = STATE(3142), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3317), + [sym_rest_pattern] = STATE(5249), + [sym_method_definition] = STATE(5253), + [sym_pair] = STATE(5253), + [sym_pair_pattern] = STATE(5249), + [sym__property_name] = STATE(3142), + [sym_computed_property_name] = STATE(3142), + [sym_method_signature] = STATE(3768), + [sym_accessibility_modifier] = STATE(2776), + [sym_override_modifier] = STATE(2799), + [sym_call_signature] = STATE(3768), + [sym_property_signature] = STATE(3768), + [sym_type_parameters] = STATE(5224), + [sym_construct_signature] = STATE(3768), + [sym_index_signature] = STATE(3768), + [aux_sym_export_statement_repeat1] = STATE(4391), [sym_identifier] = ACTIONS(3440), [anon_sym_export] = ACTIONS(3442), [anon_sym_STAR] = ACTIONS(3280), @@ -139000,14 +138864,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3440), [anon_sym_LPAREN] = ACTIONS(3288), [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), [anon_sym_async] = ACTIONS(3447), [anon_sym_new] = ACTIONS(3449), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3298), [anon_sym_DASH] = ACTIONS(3298), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3300), [sym_private_property_identifier] = ACTIONS(3300), @@ -139031,32 +138895,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(3312), [sym_html_comment] = ACTIONS(5), }, - [1180] = { - [sym_export_statement] = STATE(3756), - [sym_object_pattern] = STATE(5595), - [sym_object_assignment_pattern] = STATE(5247), - [sym_array_pattern] = STATE(5595), - [sym__call_signature] = STATE(4102), - [sym__destructuring_pattern] = STATE(5595), - [sym_spread_element] = STATE(5250), - [sym_string] = STATE(3156), - [sym_decorator] = STATE(1297), - [sym_formal_parameters] = STATE(3307), - [sym_rest_pattern] = STATE(5247), - [sym_method_definition] = STATE(5250), - [sym_pair] = STATE(5250), - [sym_pair_pattern] = STATE(5247), - [sym__property_name] = STATE(3156), - [sym_computed_property_name] = STATE(3156), - [sym_method_signature] = STATE(3756), - [sym_accessibility_modifier] = STATE(2773), - [sym_override_modifier] = STATE(2794), - [sym_call_signature] = STATE(3756), - [sym_property_signature] = STATE(3756), - [sym_type_parameters] = STATE(5222), - [sym_construct_signature] = STATE(3756), - [sym_index_signature] = STATE(3756), - [aux_sym_export_statement_repeat1] = STATE(4407), + [1178] = { + [sym_nested_identifier] = STATE(1610), + [sym_string] = STATE(1612), + [sym__module] = STATE(1713), + [sym_identifier] = ACTIONS(3438), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_EQ] = ACTIONS(841), + [anon_sym_as] = ACTIONS(122), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(122), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(851), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(122), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(122), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [1179] = { + [sym_export_statement] = STATE(3757), + [sym_object_pattern] = STATE(5589), + [sym_object_assignment_pattern] = STATE(5249), + [sym_array_pattern] = STATE(5589), + [sym__call_signature] = STATE(4078), + [sym__destructuring_pattern] = STATE(5589), + [sym_spread_element] = STATE(5253), + [sym_string] = STATE(3142), + [sym_decorator] = STATE(1285), + [sym_formal_parameters] = STATE(3317), + [sym_rest_pattern] = STATE(5249), + [sym_method_definition] = STATE(5253), + [sym_pair] = STATE(5253), + [sym_pair_pattern] = STATE(5249), + [sym__property_name] = STATE(3142), + [sym_computed_property_name] = STATE(3142), + [sym_method_signature] = STATE(3757), + [sym_accessibility_modifier] = STATE(2776), + [sym_override_modifier] = STATE(2799), + [sym_call_signature] = STATE(3757), + [sym_property_signature] = STATE(3757), + [sym_type_parameters] = STATE(5224), + [sym_construct_signature] = STATE(3757), + [sym_index_signature] = STATE(3757), + [aux_sym_export_statement_repeat1] = STATE(4391), [sym_identifier] = ACTIONS(3440), [anon_sym_export] = ACTIONS(3442), [anon_sym_STAR] = ACTIONS(3280), @@ -139068,14 +139000,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3440), [anon_sym_LPAREN] = ACTIONS(3288), [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1637), [anon_sym_async] = ACTIONS(3447), [anon_sym_new] = ACTIONS(3449), [anon_sym_DOT_DOT_DOT] = ACTIONS(251), [anon_sym_PLUS] = ACTIONS(3298), [anon_sym_DASH] = ACTIONS(3298), [anon_sym_LT] = ACTIONS(2570), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), [sym_comment] = ACTIONS(5), [sym_number] = ACTIONS(3300), [sym_private_property_identifier] = ACTIONS(3300), @@ -139099,42 +139031,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(3312), [sym_html_comment] = ACTIONS(5), }, - [1181] = { - [sym_nested_identifier] = STATE(1624), - [sym_string] = STATE(1626), - [sym__module] = STATE(1770), - [sym_identifier] = ACTIONS(3461), + [1180] = { + [sym_nested_identifier] = STATE(1610), + [sym_string] = STATE(1612), + [sym__module] = STATE(1713), + [sym_identifier] = ACTIONS(3438), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(831), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_COLON] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(851), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -139149,59 +139080,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1182] = { - [sym_nested_identifier] = STATE(1605), - [sym_string] = STATE(1606), + [1181] = { + [sym_nested_identifier] = STATE(1610), + [sym_string] = STATE(1612), [sym__module] = STATE(1713), [sym_identifier] = ACTIONS(3438), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(831), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_of] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -139216,59 +139146,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1183] = { - [sym_nested_identifier] = STATE(1624), - [sym_string] = STATE(1626), - [sym__module] = STATE(1770), - [sym_identifier] = ACTIONS(3461), + [1182] = { + [sym_nested_identifier] = STATE(1610), + [sym_string] = STATE(1612), + [sym__module] = STATE(1713), + [sym_identifier] = ACTIONS(3438), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(841), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_COLON] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(892), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(851), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -139283,59 +139214,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1184] = { - [sym_nested_identifier] = STATE(1624), - [sym_string] = STATE(1626), + [1183] = { + [sym_nested_identifier] = STATE(1609), + [sym_string] = STATE(1617), [sym__module] = STATE(1770), [sym_identifier] = ACTIONS(3461), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(855), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(69), - [anon_sym_SQUOTE] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -139350,24 +139280,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1185] = { + [1184] = { [sym_nested_identifier] = STATE(213), [sym_string] = STATE(209), [sym__module] = STATE(220), @@ -139375,34 +139308,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(855), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -139417,59 +139347,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(3434), + [anon_sym_SQUOTE] = ACTIONS(3436), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1186] = { - [sym_nested_identifier] = STATE(764), - [sym_string] = STATE(785), - [sym__module] = STATE(930), + [1185] = { + [sym_nested_identifier] = STATE(762), + [sym_string] = STATE(800), + [sym__module] = STATE(882), [sym_identifier] = ACTIONS(3430), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(855), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -139484,59 +139414,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1187] = { - [sym_variable_declarator] = STATE(4464), - [sym_object_pattern] = STATE(3673), - [sym_array_pattern] = STATE(3673), - [sym__destructuring_pattern] = STATE(3673), + [1186] = { + [sym_variable_declarator] = STATE(4461), + [sym_object_pattern] = STATE(3675), + [sym_array_pattern] = STATE(3675), + [sym__destructuring_pattern] = STATE(3675), [sym_identifier] = ACTIONS(3424), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(855), [anon_sym_as] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(869), [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -139551,59 +139483,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, - [1188] = { - [sym_variable_declarator] = STATE(4464), - [sym_object_pattern] = STATE(3673), - [sym_array_pattern] = STATE(3673), - [sym__destructuring_pattern] = STATE(3673), + [1187] = { + [sym_variable_declarator] = STATE(4461), + [sym_object_pattern] = STATE(3675), + [sym_array_pattern] = STATE(3675), + [sym__destructuring_pattern] = STATE(3675), [sym_identifier] = ACTIONS(3424), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(855), [anon_sym_as] = ACTIONS(122), [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(857), [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(687), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP] = ACTIONS(122), + [anon_sym_PIPE_PIPE] = ACTIONS(122), + [anon_sym_GT_GT] = ACTIONS(122), + [anon_sym_GT_GT_GT] = ACTIONS(122), + [anon_sym_LT_LT] = ACTIONS(122), + [anon_sym_AMP] = ACTIONS(122), + [anon_sym_CARET] = ACTIONS(122), + [anon_sym_PIPE] = ACTIONS(122), + [anon_sym_PLUS] = ACTIONS(122), + [anon_sym_DASH] = ACTIONS(122), + [anon_sym_SLASH] = ACTIONS(122), + [anon_sym_PERCENT] = ACTIONS(122), + [anon_sym_STAR_STAR] = ACTIONS(122), + [anon_sym_LT] = ACTIONS(122), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), + [anon_sym_QMARK_QMARK] = ACTIONS(122), + [anon_sym_instanceof] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_satisfies] = ACTIONS(122), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), + [sym_html_comment] = ACTIONS(5), + }, + [1188] = { + [sym_nested_identifier] = STATE(1609), + [sym_string] = STATE(1617), + [sym__module] = STATE(1770), + [sym_identifier] = ACTIONS(3461), + [anon_sym_STAR] = ACTIONS(122), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_as] = ACTIONS(122), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(122), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -139618,60 +139615,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1189] = { - [sym_nested_identifier] = STATE(1605), - [sym_string] = STATE(1606), + [sym_nested_identifier] = STATE(1610), + [sym_string] = STATE(1612), [sym__module] = STATE(1713), [sym_identifier] = ACTIONS(3438), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(221), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_COMMA] = ACTIONS(224), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(224), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(851), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_COLON] = ACTIONS(224), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(227), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -139686,58 +139682,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), + [anon_sym_QMARK] = ACTIONS(725), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1190] = { - [sym_nested_identifier] = STATE(764), - [sym_string] = STATE(785), - [sym__module] = STATE(930), + [sym_nested_identifier] = STATE(762), + [sym_string] = STATE(800), + [sym__module] = STATE(882), [sym_identifier] = ACTIONS(3430), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(855), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), [anon_sym_COLON] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -139752,59 +139749,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_SQUOTE] = ACTIONS(1559), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1191] = { - [sym_nested_identifier] = STATE(1605), - [sym_string] = STATE(1606), + [sym_nested_identifier] = STATE(1610), + [sym_string] = STATE(1612), [sym__module] = STATE(1713), [sym_identifier] = ACTIONS(3438), [anon_sym_STAR] = ACTIONS(122), [anon_sym_EQ] = ACTIONS(831), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -139819,59 +139816,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(185), + [anon_sym_SQUOTE] = ACTIONS(187), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(122), - [sym__automatic_semicolon] = ACTIONS(161), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, [1192] = { - [sym_nested_identifier] = STATE(1605), - [sym_string] = STATE(1606), - [sym__module] = STATE(1713), - [sym_identifier] = ACTIONS(3438), + [sym_nested_identifier] = STATE(1609), + [sym_string] = STATE(1617), + [sym__module] = STATE(1770), + [sym_identifier] = ACTIONS(3461), [anon_sym_STAR] = ACTIONS(122), - [anon_sym_EQ] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(875), [anon_sym_as] = ACTIONS(122), - [anon_sym_COMMA] = ACTIONS(224), + [anon_sym_COMMA] = ACTIONS(157), [anon_sym_BANG] = ACTIONS(122), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_RPAREN] = ACTIONS(224), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_SEMI] = ACTIONS(157), [anon_sym_in] = ACTIONS(122), - [anon_sym_COLON] = ACTIONS(224), - [anon_sym_LBRACK] = ACTIONS(161), - [anon_sym_GT] = ACTIONS(122), - [anon_sym_DOT] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(227), - [anon_sym_QMARK_DOT] = ACTIONS(161), - [anon_sym_PLUS_EQ] = ACTIONS(167), - [anon_sym_DASH_EQ] = ACTIONS(167), - [anon_sym_STAR_EQ] = ACTIONS(167), - [anon_sym_SLASH_EQ] = ACTIONS(167), - [anon_sym_PERCENT_EQ] = ACTIONS(167), - [anon_sym_CARET_EQ] = ACTIONS(167), - [anon_sym_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_EQ] = ACTIONS(167), - [anon_sym_GT_GT_EQ] = ACTIONS(167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(167), - [anon_sym_LT_LT_EQ] = ACTIONS(167), - [anon_sym_STAR_STAR_EQ] = ACTIONS(167), - [anon_sym_AMP_AMP_EQ] = ACTIONS(167), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(167), + [anon_sym_of] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ_GT] = ACTIONS(881), + [anon_sym_QMARK_DOT] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(163), + [anon_sym_DASH_EQ] = ACTIONS(163), + [anon_sym_STAR_EQ] = ACTIONS(163), + [anon_sym_SLASH_EQ] = ACTIONS(163), + [anon_sym_PERCENT_EQ] = ACTIONS(163), + [anon_sym_CARET_EQ] = ACTIONS(163), + [anon_sym_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_EQ] = ACTIONS(163), + [anon_sym_GT_GT_EQ] = ACTIONS(163), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(163), + [anon_sym_LT_LT_EQ] = ACTIONS(163), + [anon_sym_STAR_STAR_EQ] = ACTIONS(163), + [anon_sym_AMP_AMP_EQ] = ACTIONS(163), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(163), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(163), [anon_sym_AMP_AMP] = ACTIONS(122), [anon_sym_PIPE_PIPE] = ACTIONS(122), [anon_sym_GT_GT] = ACTIONS(122), @@ -139886,55 +139883,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(122), [anon_sym_STAR_STAR] = ACTIONS(122), [anon_sym_LT] = ACTIONS(122), - [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_EQ] = ACTIONS(157), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(157), [anon_sym_BANG_EQ] = ACTIONS(122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(122), [anon_sym_QMARK_QMARK] = ACTIONS(122), [anon_sym_instanceof] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_DASH_DASH] = ACTIONS(161), + [anon_sym_PLUS_PLUS] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(157), + [anon_sym_DQUOTE] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(87), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(161), - [anon_sym_QMARK] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(157), [anon_sym_satisfies] = ACTIONS(122), - [sym__ternary_qmark] = ACTIONS(161), + [sym__automatic_semicolon] = ACTIONS(157), + [sym__ternary_qmark] = ACTIONS(157), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 14, - ACTIONS(666), 1, - anon_sym_EQ, - ACTIONS(676), 1, - anon_sym_COLON, - ACTIONS(687), 1, + [0] = 13, + ACTIONS(185), 1, + anon_sym_DQUOTE, + ACTIONS(187), 1, + anon_sym_SQUOTE, + ACTIONS(851), 1, anon_sym_EQ_GT, - ACTIONS(695), 1, - anon_sym_QMARK, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2311), 1, - anon_sym_LT, - ACTIONS(3463), 1, + ACTIONS(887), 1, + anon_sym_EQ, + ACTIONS(3438), 1, sym_identifier, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + STATE(1610), 1, + sym_nested_identifier, + STATE(1612), 1, + sym_string, + STATE(1713), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(224), 3, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139945,7 +139943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139961,40 +139959,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(122), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [93] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3465), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140011,77 +139980,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3467), 39, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [164] = 15, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(149), 1, + [91] = 14, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, + ACTIONS(841), 1, anon_sym_EQ, - ACTIONS(909), 1, - anon_sym_COLON, - ACTIONS(913), 1, + ACTIONS(851), 1, anon_sym_EQ_GT, + ACTIONS(895), 1, + anon_sym_in, + ACTIONS(898), 1, + anon_sym_of, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(157), 14, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140092,87 +140023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [259] = 14, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(851), 1, - anon_sym_EQ_GT, - ACTIONS(895), 1, - anon_sym_in, - ACTIONS(898), 1, - anon_sym_of, - ACTIONS(3438), 1, - sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 14, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140192,7 +140043,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140209,10 +140059,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [352] = 13, + [184] = 13, ACTIONS(841), 1, anon_sym_EQ, ACTIONS(851), 1, @@ -140225,18 +140076,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3428), 1, anon_sym_LBRACK, - ACTIONS(3469), 1, + ACTIONS(3463), 1, sym_identifier, - STATE(4464), 1, + STATE(4461), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3440), 3, + STATE(3443), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(161), 13, + ACTIONS(157), 13, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -140250,7 +140101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140270,7 +140121,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140287,19 +140137,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [443] = 3, + [275] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 23, + ACTIONS(3465), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140316,9 +140166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3473), 39, + ACTIONS(3467), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140358,16 +140209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [514] = 3, + [346] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3475), 23, + ACTIONS(3469), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140384,9 +140234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3477), 39, + ACTIONS(3471), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140426,10 +140277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [585] = 12, - ACTIONS(149), 1, + [417] = 12, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, ACTIONS(939), 1, anon_sym_EQ, @@ -140437,16 +140288,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -140461,7 +140312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140482,7 +140333,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140499,34 +140349,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, anon_sym_implements, - [674] = 12, - ACTIONS(149), 1, + [506] = 15, + ACTIONS(128), 1, + anon_sym_COMMA, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, + ACTIONS(224), 1, + anon_sym_RBRACK, + ACTIONS(904), 1, anon_sym_EQ, - ACTIONS(945), 1, + ACTIONS(909), 1, + anon_sym_COLON, + ACTIONS(913), 1, anon_sym_EQ_GT, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(157), 12, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -140538,7 +140393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140554,12 +140409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 25, + ACTIONS(122), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140576,20 +140430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [763] = 3, + [601] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 23, + ACTIONS(3473), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140606,9 +140459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3481), 39, + ACTIONS(3475), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140648,33 +140502,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [834] = 13, - ACTIONS(149), 1, + [672] = 12, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(851), 1, - anon_sym_EQ_GT, - ACTIONS(887), 1, + ACTIONS(831), 1, anon_sym_EQ, + ACTIONS(945), 1, + anon_sym_EQ_GT, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 3, + ACTIONS(157), 14, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(122), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + [761] = 14, + ACTIONS(666), 1, + anon_sym_EQ, + ACTIONS(676), 1, + anon_sym_COLON, + ACTIONS(687), 1, + anon_sym_EQ_GT, + ACTIONS(695), 1, + anon_sym_QMARK, + ACTIONS(697), 1, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(161), 12, - sym__ternary_qmark, + ACTIONS(2302), 1, anon_sym_LPAREN, + ACTIONS(2311), 1, + anon_sym_LT, + ACTIONS(3477), 1, + sym_identifier, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140685,7 +140618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140701,12 +140634,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(122), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [854] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3479), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140723,9 +140683,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3481), 39, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_implements, [925] = 3, ACTIONS(5), 2, sym_html_comment, @@ -140735,7 +140735,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140752,6 +140751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, ACTIONS(3485), 39, @@ -140794,18 +140794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [996] = 4, - ACTIONS(3487), 1, - anon_sym_extends, + [996] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 23, + ACTIONS(3487), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -140822,78 +140819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3473), 38, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [1069] = 4, - ACTIONS(3489), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3479), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3481), 38, + ACTIONS(3489), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -140902,6 +140831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -140932,10 +140862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1142] = 12, - ACTIONS(149), 1, + [1067] = 12, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, ACTIONS(227), 1, anon_sym_EQ_GT, @@ -140943,16 +140873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -140968,7 +140898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140989,7 +140919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -141006,34 +140935,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1231] = 14, + [1156] = 14, ACTIONS(666), 1, anon_sym_EQ, + ACTIONS(672), 1, + anon_sym_RBRACE, ACTIONS(676), 1, anon_sym_COLON, ACTIONS(687), 1, anon_sym_EQ_GT, ACTIONS(695), 1, anon_sym_QMARK, - ACTIONS(697), 1, - anon_sym_RBRACE, ACTIONS(2302), 1, anon_sym_LPAREN, ACTIONS(2311), 1, anon_sym_LT, - ACTIONS(3463), 1, + ACTIONS(3477), 1, sym_identifier, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4823), 1, aux_sym_object_repeat1, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(157), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -141048,7 +140978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141069,7 +140999,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -141085,34 +141014,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1324] = 14, + [1249] = 14, ACTIONS(666), 1, anon_sym_EQ, - ACTIONS(672), 1, - anon_sym_RBRACE, ACTIONS(676), 1, anon_sym_COLON, ACTIONS(687), 1, anon_sym_EQ_GT, ACTIONS(695), 1, anon_sym_QMARK, + ACTIONS(699), 1, + anon_sym_RBRACE, ACTIONS(2302), 1, anon_sym_LPAREN, ACTIONS(2311), 1, anon_sym_LT, - ACTIONS(3463), 1, + ACTIONS(3477), 1, sym_identifier, - STATE(4824), 1, - aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(157), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -141127,7 +141057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141148,7 +141078,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -141164,19 +141093,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1417] = 3, + [1342] = 4, + ACTIONS(3491), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3491), 23, + ACTIONS(3473), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -141193,9 +141124,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(3493), 39, + ACTIONS(3475), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -141204,7 +141136,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -141235,43 +141166,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1488] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(3438), 1, - sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, + [1415] = 4, + ACTIONS(3493), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3469), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(3471), 38, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141287,32 +141225,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [1577] = 3, + anon_sym_implements, + [1488] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -141321,7 +141244,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -141338,6 +141260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_QMARK, ACTIONS(3497), 39, @@ -141380,111 +141303,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1648] = 14, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(3507), 1, - anon_sym_LPAREN, - ACTIONS(3509), 1, - anon_sym_DOT, - ACTIONS(3511), 1, - anon_sym_EQ_GT, - ACTIONS(3513), 1, - anon_sym_QMARK_DOT, - ACTIONS(3519), 1, - anon_sym_LT, - STATE(3128), 1, - sym_arguments, - STATE(3248), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3517), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3505), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3503), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [1740] = 13, - ACTIONS(149), 1, + [1559] = 12, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(913), 1, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(917), 1, + ACTIONS(831), 1, anon_sym_EQ, - ACTIONS(919), 1, - anon_sym_COLON, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(157), 15, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -141494,7 +141339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141515,7 +141360,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -141532,32 +141376,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1830] = 13, + [1648] = 13, ACTIONS(676), 1, anon_sym_COLON, ACTIONS(695), 1, anon_sym_QMARK, - ACTIONS(697), 1, + ACTIONS(699), 1, anon_sym_RBRACE, - ACTIONS(3521), 1, + ACTIONS(3501), 1, anon_sym_EQ, - ACTIONS(3523), 1, + ACTIONS(3505), 1, anon_sym_LPAREN, - ACTIONS(3526), 1, + ACTIONS(3508), 1, anon_sym_EQ_GT, - ACTIONS(3528), 1, + ACTIONS(3512), 1, anon_sym_LT, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141595,7 +141440,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -141611,64 +141455,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [1920] = 3, + [1738] = 14, + ACTIONS(3515), 1, + anon_sym_EQ, + ACTIONS(3519), 1, + anon_sym_LPAREN, + ACTIONS(3521), 1, + anon_sym_DOT, + ACTIONS(3523), 1, + anon_sym_EQ_GT, + ACTIONS(3525), 1, + anon_sym_QMARK_DOT, + ACTIONS(3529), 1, + anon_sym_LT, + STATE(3146), 1, + sym_arguments, + STATE(3270), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2520), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3527), 2, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2518), 39, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3517), 7, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3503), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -141678,30 +141500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [1990] = 13, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(676), 1, - anon_sym_COLON, - ACTIONS(695), 1, - anon_sym_QMARK, - ACTIONS(3521), 1, - anon_sym_EQ, - ACTIONS(3523), 1, - anon_sym_LPAREN, - ACTIONS(3526), 1, - anon_sym_EQ_GT, - ACTIONS(3528), 1, - anon_sym_LT, - STATE(4824), 1, - aux_sym_object_repeat1, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141717,37 +141516,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3499), 20, + ACTIONS(3499), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -141755,32 +141533,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [2080] = 11, - ACTIONS(925), 1, + [1830] = 12, + ACTIONS(185), 1, + anon_sym_DQUOTE, + ACTIONS(187), 1, + anon_sym_SQUOTE, + ACTIONS(831), 1, anon_sym_EQ, ACTIONS(931), 1, anon_sym_EQ_GT, - ACTIONS(3424), 1, + ACTIONS(3438), 1, sym_identifier, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - STATE(4422), 1, - sym_variable_declarator, + STATE(1610), 1, + sym_nested_identifier, + STATE(1612), 1, + sym_string, + STATE(1713), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3673), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 13, + ACTIONS(157), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -141790,7 +141570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141811,7 +141591,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -141828,45 +141607,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2166] = 12, - ACTIONS(69), 1, - anon_sym_DQUOTE, - ACTIONS(71), 1, - anon_sym_SQUOTE, - ACTIONS(925), 1, + [1918] = 13, + ACTIONS(666), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(676), 1, + anon_sym_COLON, + ACTIONS(687), 1, anon_sym_EQ_GT, - ACTIONS(3461), 1, - sym_identifier, - STATE(1624), 1, - sym_nested_identifier, - STATE(1626), 1, - sym_string, - STATE(1770), 1, - sym__module, + ACTIONS(695), 1, + anon_sym_QMARK, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(2302), 1, + anon_sym_LPAREN, + ACTIONS(2311), 1, + anon_sym_LT, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141882,55 +141649,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [2254] = 12, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(931), 1, - anon_sym_EQ_GT, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3531), 1, - sym_identifier, - STATE(3484), 1, - sym_nested_identifier, - STATE(3530), 1, - sym_string, - STATE(3949), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 14, + ACTIONS(157), 17, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_as, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -141939,60 +141662,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_satisfies, - [2342] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2502), 22, + ACTIONS(122), 20, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142006,51 +141684,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(2500), 39, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [2412] = 12, + [2008] = 12, ACTIONS(925), 1, anon_sym_EQ, ACTIONS(931), 1, @@ -142070,7 +141708,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(157), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -142085,7 +141723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142106,7 +141744,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142123,34 +141760,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2500] = 11, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(931), 1, + [2096] = 13, + ACTIONS(185), 1, + anon_sym_DQUOTE, + ACTIONS(187), 1, + anon_sym_SQUOTE, + ACTIONS(913), 1, anon_sym_EQ_GT, - ACTIONS(3424), 1, + ACTIONS(917), 1, + anon_sym_EQ, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(3438), 1, sym_identifier, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - STATE(4464), 1, - sym_variable_declarator, + STATE(1610), 1, + sym_nested_identifier, + STATE(1612), 1, + sym_string, + STATE(1713), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3673), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 13, - sym__automatic_semicolon, + ACTIONS(157), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -142160,7 +141800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142181,7 +141821,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142198,34 +141837,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2586] = 12, - ACTIONS(149), 1, + [2186] = 14, + ACTIONS(128), 1, + anon_sym_COMMA, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, + ACTIONS(224), 1, + anon_sym_RBRACK, + ACTIONS(904), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(913), 1, anon_sym_EQ_GT, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -142236,7 +141878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142257,7 +141899,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142274,30 +141915,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2674] = 12, + [2278] = 12, + ACTIONS(85), 1, + anon_sym_DQUOTE, + ACTIONS(87), 1, + anon_sym_SQUOTE, ACTIONS(925), 1, anon_sym_EQ, ACTIONS(931), 1, anon_sym_EQ_GT, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(3430), 1, + ACTIONS(3461), 1, sym_identifier, - STATE(764), 1, + STATE(1609), 1, sym_nested_identifier, - STATE(785), 1, + STATE(1617), 1, sym_string, - STATE(930), 1, + STATE(1770), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(157), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -142312,7 +141954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142333,7 +141975,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142350,10 +141991,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [2762] = 13, + [2366] = 13, ACTIONS(666), 1, anon_sym_EQ, ACTIONS(672), 1, @@ -142368,14 +142010,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2311), 1, anon_sym_LT, - STATE(4824), 1, + STATE(4823), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142391,7 +142033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, + ACTIONS(157), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -142413,7 +142055,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142429,30 +142070,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [2852] = 13, - ACTIONS(676), 1, - anon_sym_COLON, - ACTIONS(695), 1, - anon_sym_QMARK, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(3521), 1, + [2456] = 11, + ACTIONS(925), 1, anon_sym_EQ, - ACTIONS(3523), 1, - anon_sym_LPAREN, - ACTIONS(3526), 1, + ACTIONS(931), 1, anon_sym_EQ_GT, - ACTIONS(3528), 1, - anon_sym_LT, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + ACTIONS(3424), 1, + sym_identifier, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_LBRACK, + STATE(4461), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + STATE(3675), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(157), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142468,29 +142122,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3499), 20, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142504,36 +142140,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [2942] = 5, - ACTIONS(3533), 1, - anon_sym_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + [2542] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(2522), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142550,8 +142172,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3503), 24, + ACTIONS(2520), 39, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -142566,6 +142189,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -142576,29 +142214,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [3016] = 13, - ACTIONS(666), 1, - anon_sym_EQ, + [2612] = 13, + ACTIONS(672), 1, + anon_sym_RBRACE, ACTIONS(676), 1, anon_sym_COLON, - ACTIONS(687), 1, - anon_sym_EQ_GT, ACTIONS(695), 1, anon_sym_QMARK, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2302), 1, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3505), 1, anon_sym_LPAREN, - ACTIONS(2311), 1, + ACTIONS(3508), 1, + anon_sym_EQ_GT, + ACTIONS(3512), 1, anon_sym_LT, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4823), 1, aux_sym_object_repeat1, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142614,7 +142252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, + ACTIONS(3503), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -142632,11 +142270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, + ACTIONS(3499), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142652,52 +142289,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [3106] = 14, - ACTIONS(3501), 1, + [2702] = 12, + ACTIONS(925), 1, anon_sym_EQ, - ACTIONS(3511), 1, + ACTIONS(931), 1, anon_sym_EQ_GT, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + ACTIONS(1557), 1, + anon_sym_DQUOTE, + ACTIONS(1559), 1, + anon_sym_SQUOTE, + ACTIONS(3430), 1, + sym_identifier, + STATE(762), 1, + sym_nested_identifier, + STATE(800), 1, + sym_string, + STATE(882), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 15, + ACTIONS(157), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142713,8 +142342,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -142722,43 +142352,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [3198] = 14, - ACTIONS(128), 1, - anon_sym_COMMA, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [2790] = 11, + ACTIONS(925), 1, anon_sym_EQ, - ACTIONS(913), 1, + ACTIONS(931), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, + ACTIONS(3424), 1, sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_LBRACK, + STATE(4501), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + STATE(3675), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(157), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -142768,7 +142401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142789,7 +142422,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142806,36 +142438,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3290] = 13, - ACTIONS(149), 1, + [2876] = 12, + ACTIONS(925), 1, + anon_sym_EQ, + ACTIONS(931), 1, + anon_sym_EQ_GT, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(909), 1, - anon_sym_COLON, - ACTIONS(913), 1, - anon_sym_EQ_GT, - ACTIONS(917), 1, - anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(3531), 1, sym_identifier, - STATE(1605), 1, + STATE(3472), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(3530), 1, sym_string, - STATE(1713), 1, + STATE(3949), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(157), 14, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -142845,7 +142477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142866,7 +142498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142883,32 +142514,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3380] = 13, - ACTIONS(666), 1, + [2964] = 5, + ACTIONS(3533), 1, anon_sym_EQ, - ACTIONS(676), 1, - anon_sym_COLON, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(695), 1, - anon_sym_QMARK, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2311), 1, - anon_sym_LT, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142924,13 +142540,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, - sym__automatic_semicolon, + ACTIONS(3499), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(3503), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -142942,11 +142586,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 20, + anon_sym_implements, + [3038] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2502), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -142960,44 +142609,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [3470] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(955), 1, - anon_sym_EQ, - ACTIONS(961), 1, - anon_sym_EQ_GT, - ACTIONS(3438), 1, - sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 13, + ACTIONS(2500), 39, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143013,66 +142644,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [3557] = 16, - ACTIONS(3511), 1, - anon_sym_EQ_GT, - ACTIONS(3543), 1, + anon_sym_implements, + [3108] = 14, + ACTIONS(3515), 1, anon_sym_EQ, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, + ACTIONS(3523), 1, + anon_sym_EQ_GT, + ACTIONS(3535), 1, + anon_sym_LPAREN, + ACTIONS(3537), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3539), 1, + anon_sym_QMARK_DOT, + ACTIONS(3541), 1, anon_sym_LT, - ACTIONS(3564), 1, - anon_sym_QMARK, - ACTIONS(3567), 1, - anon_sym_extends, - STATE(2995), 1, + STATE(2936), 1, + sym_arguments, + STATE(3032), 1, sym_type_arguments, - STATE(5200), 1, - sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3546), 2, + ACTIONS(3517), 3, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3558), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3527), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 13, + anon_sym_GT, + ACTIONS(3503), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -143082,7 +142698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143098,11 +142714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(3499), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -143117,41 +142732,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3652] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(913), 1, - anon_sym_EQ_GT, - ACTIONS(917), 1, + [3200] = 13, + ACTIONS(666), 1, anon_sym_EQ, - ACTIONS(3438), 1, - sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(676), 1, + anon_sym_COLON, + ACTIONS(687), 1, + anon_sym_EQ_GT, + ACTIONS(695), 1, + anon_sym_QMARK, + ACTIONS(699), 1, + anon_sym_RBRACE, + ACTIONS(2302), 1, + anon_sym_LPAREN, + ACTIONS(2311), 1, + anon_sym_LT, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143167,12 +142770,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, + ACTIONS(157), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 20, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -143186,56 +142805,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [3739] = 14, - ACTIONS(3526), 1, - anon_sym_EQ_GT, - ACTIONS(3535), 1, + [3290] = 13, + ACTIONS(676), 1, + anon_sym_COLON, + ACTIONS(695), 1, + anon_sym_QMARK, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(3501), 1, + anon_sym_EQ, + ACTIONS(3505), 1, anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + ACTIONS(3508), 1, + anon_sym_EQ_GT, + ACTIONS(3512), 1, anon_sym_LT, - ACTIONS(3569), 1, - anon_sym_EQ, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143251,7 +142847,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3503), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3499), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143260,7 +142874,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -143268,32 +142884,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [3830] = 12, - ACTIONS(149), 1, + [3380] = 13, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(909), 1, + anon_sym_COLON, + ACTIONS(913), 1, anon_sym_EQ_GT, + ACTIONS(917), 1, + anon_sym_EQ, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(157), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -143303,7 +142922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143324,7 +142943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -143341,13 +142959,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [3917] = 12, - ACTIONS(149), 1, + [3470] = 12, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, ACTIONS(831), 1, anon_sym_EQ, @@ -143355,16 +142974,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 13, + ACTIONS(157), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143378,7 +142997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143399,7 +143018,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -143416,43 +143034,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4004] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(969), 1, - anon_sym_EQ, - ACTIONS(975), 1, + [3557] = 16, + ACTIONS(3523), 1, anon_sym_EQ_GT, - ACTIONS(3438), 1, - sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(3543), 1, + anon_sym_EQ, + ACTIONS(3550), 1, + anon_sym_COLON, + ACTIONS(3552), 1, + anon_sym_LBRACK, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_LT, + ACTIONS(3564), 1, + anon_sym_QMARK, + ACTIONS(3567), 1, + anon_sym_extends, + STATE(3035), 1, + sym_type_arguments, + STATE(5200), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(3546), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3558), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3503), 13, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143468,53 +143098,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 25, + ACTIONS(3499), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4091] = 12, - ACTIONS(149), 1, + [3652] = 12, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, + ACTIONS(969), 1, anon_sym_EQ, ACTIONS(975), 1, anon_sym_EQ_GT, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143527,7 +143150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143549,7 +143172,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_in, anon_sym_of, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -143566,53 +143188,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4178] = 14, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3571), 1, + [3739] = 12, + ACTIONS(3515), 1, anon_sym_EQ, - ACTIONS(3573), 1, + ACTIONS(3523), 1, anon_sym_EQ_GT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_LT, + ACTIONS(3567), 1, + anon_sym_extends, + STATE(3035), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, + ACTIONS(3552), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, + ACTIONS(3558), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + anon_sym_GT, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143646,29 +143249,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4269] = 13, - ACTIONS(149), 1, + ACTIONS(3503), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [3826] = 12, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, ACTIONS(831), 1, anon_sym_EQ, - ACTIONS(833), 1, - anon_sym_COLON, + ACTIONS(975), 1, + anon_sym_EQ_GT, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -143681,7 +143300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143697,12 +143316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(122), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -143719,41 +143338,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4358] = 13, - ACTIONS(3511), 1, - anon_sym_EQ_GT, - ACTIONS(3543), 1, - anon_sym_EQ, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3575), 1, + [3913] = 14, + ACTIONS(3535), 1, + anon_sym_LPAREN, + ACTIONS(3537), 1, anon_sym_DOT, - ACTIONS(3578), 1, + ACTIONS(3539), 1, + anon_sym_QMARK_DOT, + ACTIONS(3541), 1, anon_sym_LT, - STATE(3251), 1, + ACTIONS(3569), 1, + anon_sym_EQ, + ACTIONS(3571), 1, + anon_sym_EQ_GT, + STATE(2936), 1, + sym_arguments, + STATE(3032), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3546), 2, + ACTIONS(3517), 3, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3558), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3527), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3567), 4, + anon_sym_GT, + ACTIONS(3503), 14, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3503), 13, sym__ternary_qmark, anon_sym_as, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3510), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3499), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [4004] = 14, + ACTIONS(3508), 1, + anon_sym_EQ_GT, + ACTIONS(3535), 1, anon_sym_LPAREN, + ACTIONS(3537), 1, + anon_sym_DOT, + ACTIONS(3539), 1, anon_sym_QMARK_DOT, + ACTIONS(3541), 1, + anon_sym_LT, + ACTIONS(3573), 1, + anon_sym_EQ, + STATE(2936), 1, + sym_arguments, + STATE(3032), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3517), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3527), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3503), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -143763,7 +143462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143779,11 +143478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(3499), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -143798,34 +143496,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4447] = 14, - ACTIONS(149), 1, + [4095] = 12, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + ACTIONS(913), 1, anon_sym_EQ_GT, - ACTIONS(831), 1, + ACTIONS(917), 1, anon_sym_EQ, - ACTIONS(895), 1, - anon_sym_in, - ACTIONS(898), 1, - anon_sym_of, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(157), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -143835,7 +143530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143851,11 +143546,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(122), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -143872,33 +143567,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4538] = 12, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(3511), 1, + [4182] = 13, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3567), 1, - anon_sym_extends, - STATE(2995), 1, - sym_type_arguments, + ACTIONS(185), 1, + anon_sym_DQUOTE, + ACTIONS(187), 1, + anon_sym_SQUOTE, + ACTIONS(831), 1, + anon_sym_EQ, + ACTIONS(833), 1, + anon_sym_COLON, + ACTIONS(3438), 1, + sym_identifier, + STATE(1610), 1, + sym_nested_identifier, + STATE(1612), 1, + sym_string, + STATE(1713), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, - anon_sym_COMMA, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3558), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3515), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143914,8 +143622,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -143923,63 +143632,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3503), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [4625] = 8, + [4271] = 8, ACTIONS(3535), 1, anon_sym_LPAREN, ACTIONS(3541), 1, anon_sym_LT, - ACTIONS(3585), 1, + ACTIONS(3579), 1, anon_sym_DOT, - STATE(1266), 1, + STATE(1256), 1, sym_arguments, - STATE(5452), 1, + STATE(5449), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3583), 14, + ACTIONS(3577), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LBRACK, sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3581), 41, + ACTIONS(3575), 41, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -144021,108 +143718,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [4704] = 8, - ACTIONS(119), 1, - anon_sym_EQ, - ACTIONS(159), 1, + [4350] = 13, + ACTIONS(3523), 1, anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(128), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(3543), 1, + anon_sym_EQ, + ACTIONS(3552), 1, anon_sym_LBRACK, + ACTIONS(3581), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [4782] = 14, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + ACTIONS(3584), 1, anon_sym_LT, - ACTIONS(3587), 1, - anon_sym_EQ, - ACTIONS(3589), 1, - anon_sym_EQ_GT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, + STATE(3225), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, + ACTIONS(3546), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, + anon_sym_RBRACE, + ACTIONS(3558), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(3567), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, ACTIONS(3503), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144132,8 +143759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144149,7 +143775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3499), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144166,30 +143792,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [4872] = 12, - ACTIONS(149), 1, + [4439] = 12, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(1049), 1, + ACTIONS(955), 1, anon_sym_EQ, + ACTIONS(961), 1, + anon_sym_EQ_GT, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(157), 13, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -144200,7 +143828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144221,7 +143849,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -144238,30 +143865,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [4958] = 12, - ACTIONS(149), 1, + [4526] = 14, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(1051), 1, + ACTIONS(831), 1, anon_sym_EQ, + ACTIONS(895), 1, + anon_sym_in, + ACTIONS(898), 1, + anon_sym_of, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -144274,7 +143906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144290,12 +143922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(122), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -144312,32 +143942,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5044] = 12, - ACTIONS(149), 1, + [4617] = 12, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(995), 1, + ACTIONS(831), 1, anon_sym_EQ, + ACTIONS(961), 1, + anon_sym_EQ_GT, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(157), 13, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -144348,7 +143980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144369,7 +144001,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -144386,109 +144017,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5130] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3593), 16, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3591), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [5198] = 12, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(831), 1, + [4704] = 9, + ACTIONS(841), 1, anon_sym_EQ, - ACTIONS(895), 1, - anon_sym_in, - ACTIONS(898), 1, - anon_sym_of, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3595), 1, - sym_identifier, - ACTIONS(3597), 1, - anon_sym_LBRACK, + ACTIONS(851), 1, + anon_sym_EQ_GT, + ACTIONS(1765), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4808), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(161), 11, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(3587), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3590), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144504,19 +144054,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 23, + ACTIONS(122), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -144526,29 +144073,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + ACTIONS(157), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [5284] = 8, - ACTIONS(159), 1, + [4784] = 9, + ACTIONS(851), 1, anon_sym_EQ_GT, - ACTIONS(831), 1, + ACTIONS(887), 1, anon_sym_EQ, - ACTIONS(835), 1, - anon_sym_QMARK, + ACTIONS(3587), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(833), 5, + ACTIONS(3590), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1765), 6, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(161), 15, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144560,7 +144127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144576,19 +144143,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -144597,28 +144161,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [5362] = 12, - ACTIONS(149), 1, + [4864] = 12, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(989), 1, + ACTIONS(981), 1, anon_sym_EQ, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -144631,7 +144196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144652,7 +144217,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -144669,90 +144233,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5448] = 7, - ACTIONS(3604), 1, - anon_sym_class, - ACTIONS(3607), 1, - anon_sym_AT, - STATE(1262), 1, - aux_sym_export_statement_repeat1, - STATE(1297), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3602), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3600), 41, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [5524] = 12, + [4950] = 12, ACTIONS(3555), 1, anon_sym_DOT, ACTIONS(3561), 1, anon_sym_LT, ACTIONS(3567), 1, anon_sym_extends, - ACTIONS(3571), 1, + ACTIONS(3569), 1, anon_sym_EQ, - ACTIONS(3573), 1, + ACTIONS(3571), 1, anon_sym_EQ_GT, - STATE(2995), 1, + STATE(3035), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, @@ -144761,10 +144257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LBRACK, ACTIONS(3558), 3, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3515), 15, + anon_sym_GT, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144815,23 +144311,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5610] = 8, - ACTIONS(3610), 1, - anon_sym_EQ, - ACTIONS(3615), 1, + [5036] = 8, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3617), 1, + ACTIONS(831), 1, + anon_sym_EQ, + ACTIONS(835), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 5, + ACTIONS(833), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(3503), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -144847,7 +144343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144863,11 +144359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -144884,8 +144379,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [5688] = 14, + [5114] = 14, ACTIONS(3535), 1, anon_sym_LPAREN, ACTIONS(3537), 1, @@ -144894,29 +144390,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, ACTIONS(3541), 1, anon_sym_LT, - ACTIONS(3619), 1, + ACTIONS(3593), 1, anon_sym_EQ, - ACTIONS(3621), 1, + ACTIONS(3595), 1, anon_sym_EQ_GT, - STATE(2919), 1, + STATE(2936), 1, sym_arguments, - STATE(2954), 1, + STATE(3032), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 2, + ACTIONS(3517), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3527), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3505), 3, + anon_sym_GT, + ACTIONS(3503), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3510), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3499), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [5204] = 15, + ACTIONS(3546), 1, anon_sym_RPAREN, + ACTIONS(3552), 1, anon_sym_LBRACK, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_LT, + ACTIONS(3567), 1, anon_sym_extends, + ACTIONS(3595), 1, + anon_sym_EQ_GT, + ACTIONS(3597), 1, + anon_sym_EQ, + ACTIONS(3603), 1, + anon_sym_QMARK, + STATE(3035), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3558), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3600), 2, + anon_sym_COMMA, + anon_sym_COLON, ACTIONS(3503), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -144926,7 +144499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144946,7 +144519,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -144960,31 +144532,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [5778] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, + [5296] = 12, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(987), 1, + ACTIONS(831), 1, anon_sym_EQ, - ACTIONS(3438), 1, + ACTIONS(895), 1, + anon_sym_in, + ACTIONS(898), 1, + anon_sym_of, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3605), 1, sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(3607), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + STATE(4804), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(157), 11, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144994,7 +144568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145010,12 +144584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(122), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -145032,35 +144604,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [5864] = 6, - ACTIONS(3607), 1, - anon_sym_AT, - STATE(1262), 1, - aux_sym_export_statement_repeat1, - STATE(1297), 1, - sym_decorator, + [5382] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 14, + ACTIONS(3612), 16, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3600), 42, + anon_sym_AT, + ACTIONS(3610), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -145103,29 +144672,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [5938] = 8, - ACTIONS(3533), 1, + anon_sym_abstract, + [5450] = 14, + ACTIONS(3515), 1, anon_sym_EQ, - ACTIONS(3615), 1, + ACTIONS(3523), 1, anon_sym_EQ_GT, - ACTIONS(3625), 1, - anon_sym_QMARK, + ACTIONS(3535), 1, + anon_sym_LPAREN, + ACTIONS(3537), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_QMARK_DOT, + ACTIONS(3541), 1, + anon_sym_LT, + STATE(2936), 1, + sym_arguments, + STATE(3032), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3623), 5, + ACTIONS(3527), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3517), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3503), 15, + anon_sym_extends, + ACTIONS(3503), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145135,7 +144714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145151,46 +144730,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3499), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [6016] = 9, - ACTIONS(841), 1, + [5540] = 8, + ACTIONS(3533), 1, anon_sym_EQ, - ACTIONS(851), 1, + ACTIONS(3616), 1, anon_sym_EQ_GT, - ACTIONS(1777), 1, - anon_sym_extends, + ACTIONS(3618), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3627), 2, + ACTIONS(3614), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3503), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145206,7 +144797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145215,7 +144806,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -145224,69 +144817,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(161), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [6096] = 14, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, + [5618] = 12, + ACTIONS(3508), 1, + anon_sym_EQ_GT, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + ACTIONS(3561), 1, anon_sym_LT, - ACTIONS(3633), 1, + ACTIONS(3567), 1, + anon_sym_extends, + ACTIONS(3573), 1, anon_sym_EQ, - ACTIONS(3635), 1, - anon_sym_EQ_GT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, + STATE(3035), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, + ACTIONS(3552), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, + ACTIONS(3558), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 13, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + anon_sym_GT, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145302,6 +144858,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3503), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, ACTIONS(3499), 17, anon_sym_STAR, anon_sym_BANG, @@ -145320,28 +144893,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6186] = 3, + [5704] = 7, + ACTIONS(3624), 1, + anon_sym_class, + ACTIONS(3627), 1, + anon_sym_AT, + STATE(1275), 1, + aux_sym_export_statement_repeat1, + STATE(1285), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3639), 16, + ACTIONS(3622), 14, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3637), 43, + ACTIONS(3620), 41, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -145350,7 +144929,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_await, anon_sym_yield, - anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, @@ -145384,28 +144962,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [6254] = 12, - ACTIONS(149), 1, + [5780] = 14, + ACTIONS(3535), 1, + anon_sym_LPAREN, + ACTIONS(3537), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_QMARK_DOT, + ACTIONS(3541), 1, + anon_sym_LT, + ACTIONS(3630), 1, + anon_sym_EQ, + ACTIONS(3632), 1, + anon_sym_EQ_GT, + STATE(2936), 1, + sym_arguments, + STATE(3032), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3517), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3527), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3503), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(3510), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3499), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [5870] = 12, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(983), 1, + ACTIONS(1049), 1, anon_sym_EQ, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -145418,7 +145071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145439,7 +145092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -145456,52 +145108,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6340] = 15, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3567), 1, - anon_sym_extends, - ACTIONS(3610), 1, - anon_sym_EQ, - ACTIONS(3615), 1, + [5956] = 12, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3641), 1, - anon_sym_RPAREN, - STATE(2995), 1, - sym_type_arguments, + ACTIONS(185), 1, + anon_sym_DQUOTE, + ACTIONS(187), 1, + anon_sym_SQUOTE, + ACTIONS(993), 1, + anon_sym_EQ, + ACTIONS(3438), 1, + sym_identifier, + STATE(1610), 1, + sym_nested_identifier, + STATE(1612), 1, + sym_string, + STATE(1713), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3558), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3613), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3503), 13, + ACTIONS(157), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145517,57 +145161,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [6432] = 14, - ACTIONS(3501), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6042] = 8, + ACTIONS(119), 1, anon_sym_EQ, - ACTIONS(3511), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + ACTIONS(725), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3505), 4, + ACTIONS(128), 5, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3503), 11, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -145577,7 +145218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145593,46 +145234,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [6522] = 12, - ACTIONS(149), 1, + [6120] = 12, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(993), 1, + ACTIONS(987), 1, anon_sym_EQ, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -145645,7 +145289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145666,7 +145310,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -145683,30 +145326,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6608] = 12, - ACTIONS(149), 1, + [6206] = 12, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, ACTIONS(831), 1, anon_sym_EQ, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -145719,7 +145363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145740,7 +145384,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -145757,41 +145400,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [6694] = 15, - ACTIONS(3546), 1, - anon_sym_RPAREN, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3567), 1, - anon_sym_extends, - ACTIONS(3617), 1, + [6292] = 8, + ACTIONS(3603), 1, anon_sym_QMARK, - ACTIONS(3621), 1, + ACTIONS(3616), 1, anon_sym_EQ_GT, - ACTIONS(3644), 1, + ACTIONS(3634), 1, anon_sym_EQ, - STATE(2995), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3558), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3647), 2, + ACTIONS(3637), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3503), 13, + anon_sym_RBRACK, + ACTIONS(3503), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -145802,7 +145436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145818,59 +145452,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [6786] = 12, - ACTIONS(149), 1, - anon_sym_DQUOTE, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(981), 1, + [6370] = 14, + ACTIONS(3535), 1, + anon_sym_LPAREN, + ACTIONS(3537), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_QMARK_DOT, + ACTIONS(3541), 1, + anon_sym_LT, + ACTIONS(3593), 1, anon_sym_EQ, - ACTIONS(3438), 1, - sym_identifier, - STATE(1605), 1, - sym_nested_identifier, - STATE(1606), 1, - sym_string, - STATE(1713), 1, - sym__module, + ACTIONS(3595), 1, + anon_sym_EQ_GT, + STATE(2936), 1, + sym_arguments, + STATE(3032), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(3527), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3517), 3, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + ACTIONS(3503), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + anon_sym_satisfies, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145886,55 +145531,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, + ACTIONS(3499), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [6872] = 12, - ACTIONS(3526), 1, + [6460] = 12, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3567), 1, - anon_sym_extends, - ACTIONS(3569), 1, + ACTIONS(185), 1, + anon_sym_DQUOTE, + ACTIONS(187), 1, + anon_sym_SQUOTE, + ACTIONS(989), 1, anon_sym_EQ, - STATE(2995), 1, - sym_type_arguments, + ACTIONS(3438), 1, + sym_identifier, + STATE(1610), 1, + sym_nested_identifier, + STATE(1612), 1, + sym_string, + STATE(1713), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, - anon_sym_COMMA, + ACTIONS(157), 12, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3558), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3515), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145950,25 +145599,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3499), 17, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -145976,36 +145609,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [6958] = 12, - ACTIONS(149), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [6546] = 12, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(151), 1, + ACTIONS(187), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(991), 1, + ACTIONS(995), 1, anon_sym_EQ, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -146018,7 +145657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146039,7 +145678,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -146056,30 +145694,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [7044] = 12, - ACTIONS(149), 1, + [6632] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3641), 16, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_DQUOTE, - ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(159), 1, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3639), 43, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [6700] = 12, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(985), 1, + ACTIONS(185), 1, + anon_sym_DQUOTE, + ACTIONS(187), 1, + anon_sym_SQUOTE, + ACTIONS(983), 1, anon_sym_EQ, ACTIONS(3438), 1, sym_identifier, - STATE(1605), 1, + STATE(1610), 1, sym_nested_identifier, - STATE(1606), 1, + STATE(1612), 1, sym_string, STATE(1713), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 12, + ACTIONS(157), 12, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -146092,7 +145796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146113,7 +145817,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -146130,10 +145833,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [7130] = 14, + [6786] = 14, ACTIONS(3535), 1, anon_sym_LPAREN, ACTIONS(3537), 1, @@ -146142,30 +145846,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, ACTIONS(3541), 1, anon_sym_LT, - ACTIONS(3619), 1, + ACTIONS(3643), 1, anon_sym_EQ, - ACTIONS(3621), 1, + ACTIONS(3645), 1, anon_sym_EQ_GT, - STATE(2919), 1, + STATE(2936), 1, sym_arguments, - STATE(2954), 1, + STATE(3032), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, + ACTIONS(3517), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, + ACTIONS(3527), 3, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(3503), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146175,7 +145879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146209,31 +145913,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7220] = 9, - ACTIONS(851), 1, + [6876] = 15, + ACTIONS(3552), 1, + anon_sym_LBRACK, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_LT, + ACTIONS(3567), 1, + anon_sym_extends, + ACTIONS(3603), 1, + anon_sym_QMARK, + ACTIONS(3616), 1, anon_sym_EQ_GT, - ACTIONS(887), 1, + ACTIONS(3634), 1, anon_sym_EQ, - ACTIONS(3627), 1, - anon_sym_LBRACK, + ACTIONS(3647), 1, + anon_sym_RPAREN, + STATE(3035), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3630), 2, + ACTIONS(3558), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1777), 6, - sym__automatic_semicolon, + ACTIONS(3637), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(161), 14, + anon_sym_COLON, + ACTIONS(3503), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -146244,7 +145955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146260,11 +145971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(3499), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -146276,52 +145986,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [7300] = 14, - ACTIONS(3535), 1, + [6968] = 6, + ACTIONS(3627), 1, + anon_sym_AT, + STATE(1275), 1, + aux_sym_export_statement_repeat1, + STATE(1285), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3622), 14, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3620), 42, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(3650), 1, - anon_sym_EQ, - ACTIONS(3652), 1, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [7042] = 12, + ACTIONS(155), 1, anon_sym_EQ_GT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + ACTIONS(185), 1, + anon_sym_DQUOTE, + ACTIONS(187), 1, + anon_sym_SQUOTE, + ACTIONS(991), 1, + anon_sym_EQ, + ACTIONS(3438), 1, + sym_identifier, + STATE(1610), 1, + sym_nested_identifier, + STATE(1612), 1, + sym_string, + STATE(1713), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 12, + ACTIONS(157), 12, sym__ternary_qmark, - anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146337,8 +146107,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -146346,55 +146117,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [7389] = 13, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3615), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [7128] = 12, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3623), 1, - anon_sym_COLON, - STATE(2995), 1, - sym_type_arguments, + ACTIONS(185), 1, + anon_sym_DQUOTE, + ACTIONS(187), 1, + anon_sym_SQUOTE, + ACTIONS(985), 1, + anon_sym_EQ, + ACTIONS(3438), 1, + sym_identifier, + STATE(1610), 1, + sym_nested_identifier, + STATE(1612), 1, + sym_string, + STATE(1713), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3558), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3567), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3503), 13, + ACTIONS(157), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146410,42 +146181,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [7476] = 7, - ACTIONS(3533), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [7214] = 12, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(185), 1, + anon_sym_DQUOTE, + ACTIONS(187), 1, + anon_sym_SQUOTE, + ACTIONS(1051), 1, anon_sym_EQ, - ACTIONS(3625), 1, - anon_sym_QMARK, + ACTIONS(3438), 1, + sym_identifier, + STATE(1610), 1, + sym_nested_identifier, + STATE(1612), 1, + sym_string, + STATE(1713), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3623), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3503), 15, + ACTIONS(157), 12, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -146454,12 +146236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146475,11 +146255,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -146496,36 +146276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [7551] = 8, - ACTIONS(687), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [7300] = 6, + ACTIONS(3523), 1, anon_sym_EQ_GT, - ACTIONS(855), 1, + ACTIONS(3533), 1, anon_sym_EQ, - ACTIONS(869), 1, - anon_sym_COLON, - ACTIONS(3463), 1, - sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146541,12 +146304,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, + ACTIONS(3503), 20, + sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3499), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -146563,50 +146345,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [7628] = 4, - ACTIONS(3489), 1, - anon_sym_extends, + [7373] = 14, + ACTIONS(3535), 1, + anon_sym_LPAREN, + ACTIONS(3537), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_QMARK_DOT, + ACTIONS(3541), 1, + anon_sym_LT, + ACTIONS(3650), 1, + anon_sym_EQ, + ACTIONS(3652), 1, + anon_sym_EQ_GT, + STATE(2936), 1, + sym_arguments, + STATE(3032), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3479), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(3517), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3527), 3, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3481), 35, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3503), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146622,36 +146404,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [7697] = 3, + ACTIONS(3499), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [7462] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3583), 15, + ACTIONS(3656), 15, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACK, sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3581), 43, + ACTIONS(3654), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -146660,6 +146451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_await, anon_sym_yield, + anon_sym_DOT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -146694,37 +146486,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [7764] = 12, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, + [7529] = 14, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_LPAREN, + ACTIONS(3537), 1, anon_sym_DOT, - ACTIONS(3561), 1, + ACTIONS(3539), 1, + anon_sym_QMARK_DOT, + ACTIONS(3541), 1, anon_sym_LT, - ACTIONS(3633), 1, - anon_sym_EQ, - ACTIONS(3635), 1, + ACTIONS(3616), 1, anon_sym_EQ_GT, - STATE(2995), 1, + STATE(2936), 1, + sym_arguments, + STATE(3032), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3558), 3, - anon_sym_GT, + ACTIONS(3527), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 15, - sym__automatic_semicolon, + ACTIONS(3517), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3503), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146734,7 +146526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146750,7 +146542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3499), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146767,28 +146559,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [7849] = 3, + [7618] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3656), 15, + ACTIONS(3660), 15, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACK, sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3654), 43, + ACTIONS(3658), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -146832,21 +146625,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [7916] = 4, + [7685] = 7, + ACTIONS(3603), 1, + anon_sym_QMARK, + ACTIONS(3634), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3487), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3471), 22, + ACTIONS(3637), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3503), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3510), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3499), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -146863,72 +146691,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3473), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [7760] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3664), 15, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + sym_glimmer_opening_tag, + anon_sym_DOT_DOT_DOT, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_satisfies, - [7985] = 14, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3662), 43, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(3658), 1, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [7827] = 7, + ACTIONS(3533), 1, anon_sym_EQ, - ACTIONS(3660), 1, - anon_sym_EQ_GT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + ACTIONS(3618), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, + ACTIONS(3614), 5, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 12, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3503), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -146938,7 +146787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146954,7 +146803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146963,24 +146812,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [8074] = 6, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(851), 1, + [7902] = 8, + ACTIONS(687), 1, anon_sym_EQ_GT, + ACTIONS(855), 1, + anon_sym_EQ, + ACTIONS(857), 1, + anon_sym_COLON, + ACTIONS(3477), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(157), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146996,17 +146869,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 20, - sym__ternary_qmark, + ACTIONS(122), 24, + anon_sym_STAR, anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [7979] = 12, + ACTIONS(3552), 1, + anon_sym_LBRACK, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_LT, + ACTIONS(3643), 1, + anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_EQ_GT, + STATE(3035), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3567), 2, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_extends, + ACTIONS(3558), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3503), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -147017,43 +146933,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3510), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3499), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8147] = 4, + [8064] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 4, + ACTIONS(3493), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3479), 22, + ACTIONS(3469), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -147070,8 +146997,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3481), 32, + ACTIONS(3471), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -147104,28 +147032,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8216] = 11, - ACTIONS(119), 1, + [8133] = 11, + ACTIONS(221), 1, anon_sym_EQ, - ACTIONS(159), 1, + ACTIONS(227), 1, anon_sym_EQ_GT, ACTIONS(725), 1, anon_sym_QMARK, - ACTIONS(3627), 1, + ACTIONS(3587), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(128), 2, + ACTIONS(224), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1777), 2, + ACTIONS(1765), 2, anon_sym_RPAREN, anon_sym_extends, - ACTIONS(3630), 2, + ACTIONS(3590), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(161), 14, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -147140,7 +147068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147160,7 +147088,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -147175,19 +147102,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [8216] = 14, + ACTIONS(3535), 1, + anon_sym_LPAREN, + ACTIONS(3537), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_QMARK_DOT, + ACTIONS(3541), 1, + anon_sym_LT, + ACTIONS(3666), 1, + anon_sym_EQ, + ACTIONS(3668), 1, + anon_sym_EQ_GT, + STATE(2936), 1, + sym_arguments, + STATE(3032), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3517), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3527), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3503), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3510), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3499), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8299] = 12, + [8305] = 12, ACTIONS(3555), 1, anon_sym_DOT, ACTIONS(3561), 1, anon_sym_LT, ACTIONS(3567), 1, anon_sym_extends, - ACTIONS(3587), 1, + ACTIONS(3593), 1, anon_sym_EQ, - ACTIONS(3589), 1, + ACTIONS(3595), 1, anon_sym_EQ_GT, - STATE(2995), 1, + STATE(3035), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, @@ -147196,14 +147199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LBRACK, ACTIONS(3558), 3, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(3503), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -147214,8 +147218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147249,10 +147252,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8384] = 14, - ACTIONS(3501), 1, + [8390] = 14, + ACTIONS(3515), 1, + anon_sym_EQ, + ACTIONS(3523), 1, + anon_sym_EQ_GT, + ACTIONS(3535), 1, + anon_sym_LPAREN, + ACTIONS(3537), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_QMARK_DOT, + ACTIONS(3541), 1, + anon_sym_LT, + STATE(2936), 1, + sym_arguments, + STATE(3032), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3527), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3517), 3, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3503), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3510), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3499), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [8479] = 14, + ACTIONS(3515), 1, anon_sym_EQ, - ACTIONS(3511), 1, + ACTIONS(3523), 1, anon_sym_EQ_GT, ACTIONS(3552), 1, anon_sym_LBRACK, @@ -147262,9 +147340,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(3567), 1, anon_sym_extends, - ACTIONS(3623), 1, + ACTIONS(3614), 1, anon_sym_COLON, - STATE(2995), 1, + STATE(3035), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, @@ -147272,7 +147350,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3558), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3662), 2, + ACTIONS(3670), 2, anon_sym_COMMA, anon_sym_RBRACK, ACTIONS(3503), 13, @@ -147289,7 +147367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147309,7 +147387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -147323,25 +147400,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [8473] = 9, - ACTIONS(875), 1, + [8568] = 14, + ACTIONS(3535), 1, + anon_sym_LPAREN, + ACTIONS(3537), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_QMARK_DOT, + ACTIONS(3541), 1, + anon_sym_LT, + ACTIONS(3674), 1, anon_sym_EQ, - ACTIONS(881), 1, + ACTIONS(3676), 1, anon_sym_EQ_GT, - ACTIONS(1777), 1, - anon_sym_extends, + STATE(2936), 1, + sym_arguments, + STATE(3032), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3627), 2, + ACTIONS(3517), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3630), 3, - anon_sym_GT, + anon_sym_extends, + ACTIONS(3527), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(167), 15, + anon_sym_GT, + ACTIONS(3503), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147357,13 +147459,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, - sym__automatic_semicolon, + ACTIONS(3499), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [8657] = 6, + ACTIONS(3515), 1, + anon_sym_EQ, + ACTIONS(3523), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3510), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3503), 20, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -147375,7 +147522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147384,7 +147531,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -147393,8 +147542,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [8552] = 6, + [8730] = 6, ACTIONS(841), 1, anon_sym_EQ, ACTIONS(851), 1, @@ -147402,7 +147552,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147418,7 +147568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 20, + ACTIONS(157), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -147443,7 +147593,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -147460,19 +147609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [8625] = 4, - ACTIONS(3487), 1, + [8803] = 4, + ACTIONS(3491), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 22, + ACTIONS(3473), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -147489,8 +147638,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3473), 35, + ACTIONS(3475), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -147526,110 +147676,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8694] = 3, + [8872] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3668), 15, - anon_sym_LBRACE, + ACTIONS(3491), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3473), 22, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3666), 43, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_await, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [8761] = 12, - ACTIONS(3555), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(3475), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3567), 1, - anon_sym_extends, - ACTIONS(3619), 1, - anon_sym_EQ, - ACTIONS(3621), 1, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8941] = 8, + ACTIONS(687), 1, anon_sym_EQ_GT, - STATE(2995), 1, - sym_type_arguments, + ACTIONS(855), 1, + anon_sym_EQ, + ACTIONS(869), 1, + anon_sym_COLON, + ACTIONS(3477), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3558), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 15, + ACTIONS(157), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147645,8 +147785,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_AMP_AMP, @@ -147654,36 +147795,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [8846] = 3, + anon_sym_instanceof, + anon_sym_satisfies, + [9018] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3672), 15, + ACTIONS(3577), 15, anon_sym_LBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACK, sym_glimmer_opening_tag, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3670), 43, + ACTIONS(3575), 43, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -147692,7 +147839,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_await, anon_sym_yield, - anon_sym_DOT, anon_sym_class, anon_sym_async, anon_sym_function, @@ -147727,43 +147873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [8913] = 11, - ACTIONS(221), 1, + anon_sym_abstract, + [9085] = 6, + ACTIONS(831), 1, anon_sym_EQ, - ACTIONS(227), 1, + ACTIONS(851), 1, anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, - ACTIONS(3627), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1777), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147779,17 +147898,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(157), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -147798,48 +147939,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [8996] = 14, - ACTIONS(3533), 1, + [9158] = 9, + ACTIONS(875), 1, anon_sym_EQ, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3615), 1, + ACTIONS(881), 1, anon_sym_EQ_GT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + ACTIONS(1765), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3505), 4, + ACTIONS(3587), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3503), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3590), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147855,11 +147974,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(157), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -147871,40 +148007,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9085] = 7, - ACTIONS(3610), 1, + [9237] = 9, + ACTIONS(687), 1, + anon_sym_EQ_GT, + ACTIONS(855), 1, anon_sym_EQ, - ACTIONS(3617), 1, - anon_sym_QMARK, + ACTIONS(1765), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 5, + ACTIONS(3587), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3503), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3590), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147920,19 +148044,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(157), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -147942,24 +148081,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9160] = 9, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(855), 1, - anon_sym_EQ, - ACTIONS(1777), 1, + [9316] = 12, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_LT, + ACTIONS(3567), 1, anon_sym_extends, + ACTIONS(3630), 1, + anon_sym_EQ, + ACTIONS(3632), 1, + anon_sym_EQ_GT, + STATE(3035), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3627), 2, + ACTIONS(3552), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3630), 3, - anon_sym_GT, + ACTIONS(3558), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(167), 15, + anon_sym_GT, + ACTIONS(3503), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147975,14 +148136,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, - sym__automatic_semicolon, + ACTIONS(3499), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9401] = 13, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3552), 1, + anon_sym_LBRACK, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_LT, + ACTIONS(3614), 1, + anon_sym_COLON, + ACTIONS(3616), 1, + anon_sym_EQ_GT, + STATE(3035), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3558), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3567), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3503), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -147993,7 +148193,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + ACTIONS(3510), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3499), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148008,41 +148224,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [9239] = 14, - ACTIONS(3501), 1, + [9488] = 11, + ACTIONS(119), 1, anon_sym_EQ, - ACTIONS(3511), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + ACTIONS(725), 1, + anon_sym_QMARK, + ACTIONS(3587), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 2, + ACTIONS(128), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1765), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(3590), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3505), 3, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3503), 12, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -148052,7 +148264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148068,11 +148280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -148084,18 +148295,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [9328] = 6, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(3511), 1, - anon_sym_EQ_GT, + [9571] = 4, + ACTIONS(3493), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3469), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(3471), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148111,17 +148356,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 20, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [9640] = 12, + ACTIONS(3552), 1, + anon_sym_LBRACK, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_LT, + ACTIONS(3650), 1, + anon_sym_EQ, + ACTIONS(3652), 1, + anon_sym_EQ_GT, + STATE(3035), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3567), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3558), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3503), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -148132,37 +148403,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3510), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3499), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9401] = 6, - ACTIONS(3511), 1, + [9724] = 6, + ACTIONS(687), 1, anon_sym_EQ_GT, - ACTIONS(3533), 1, + ACTIONS(855), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148178,16 +148461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 20, + ACTIONS(157), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148199,11 +148481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -148220,8 +148501,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [9474] = 14, + [9796] = 14, + ACTIONS(3533), 1, + anon_sym_EQ, ACTIONS(3535), 1, anon_sym_LPAREN, ACTIONS(3537), 1, @@ -148230,29 +148514,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, ACTIONS(3541), 1, anon_sym_LT, - ACTIONS(3674), 1, - anon_sym_EQ, - ACTIONS(3676), 1, + ACTIONS(3616), 1, anon_sym_EQ_GT, - STATE(2919), 1, + STATE(2936), 1, sym_arguments, - STATE(2954), 1, + STATE(3032), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, + ACTIONS(3517), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, + ACTIONS(3527), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 12, + anon_sym_GT, + ACTIONS(3503), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -148262,7 +148543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148296,93 +148577,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9563] = 8, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(855), 1, - anon_sym_EQ, + [9884] = 7, ACTIONS(857), 1, anon_sym_COLON, - ACTIONS(3463), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(161), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [9640] = 9, - ACTIONS(227), 1, + ACTIONS(3508), 1, anon_sym_EQ_GT, - ACTIONS(890), 1, + ACTIONS(3573), 1, anon_sym_EQ, - ACTIONS(1777), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3627), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148398,12 +148603,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3503), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148415,39 +148622,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9718] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3489), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3479), 22, + ACTIONS(3499), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -148464,16 +148642,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3481), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, + [9958] = 7, + ACTIONS(687), 1, + anon_sym_EQ_GT, + ACTIONS(855), 1, + anon_sym_EQ, + ACTIONS(857), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148489,6 +148670,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -148498,16 +148689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9786] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3491), 22, + ACTIONS(122), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -148524,61 +148709,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3493), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [9852] = 9, - ACTIONS(939), 1, - anon_sym_EQ, - ACTIONS(945), 1, + [10032] = 7, + ACTIONS(687), 1, anon_sym_EQ_GT, - ACTIONS(1777), 1, - anon_sym_extends, + ACTIONS(855), 1, + anon_sym_EQ, + ACTIONS(869), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3627), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148594,11 +148737,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(157), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148610,8 +148756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 18, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148620,7 +148765,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -148629,28 +148776,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [9930] = 11, + [10106] = 10, + ACTIONS(155), 1, + anon_sym_EQ_GT, + ACTIONS(831), 1, + anon_sym_EQ, ACTIONS(833), 1, anon_sym_COLON, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(851), 1, - anon_sym_EQ_GT, - ACTIONS(1777), 1, - anon_sym_extends, - ACTIONS(3627), 1, + ACTIONS(3587), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3630), 2, + ACTIONS(3590), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3678), 2, + ACTIONS(1765), 3, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(161), 14, + anon_sym_extends, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -148665,7 +148812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148685,7 +148832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -148700,38 +148846,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10012] = 8, - ACTIONS(833), 1, - anon_sym_COLON, - ACTIONS(841), 1, + [10186] = 6, + ACTIONS(3533), 1, anon_sym_EQ, - ACTIONS(851), 1, + ACTIONS(3571), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(892), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148747,51 +148872,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10088] = 10, - ACTIONS(851), 1, - anon_sym_EQ_GT, - ACTIONS(887), 1, - anon_sym_EQ, - ACTIONS(1779), 1, - anon_sym_QMARK, - ACTIONS(3627), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1777), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(161), 14, + ACTIONS(3503), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148803,33 +148892,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -148838,25 +148912,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10168] = 9, - ACTIONS(925), 1, - anon_sym_EQ, - ACTIONS(931), 1, + [10258] = 6, + ACTIONS(3508), 1, anon_sym_EQ_GT, - ACTIONS(3627), 1, - anon_sym_LBRACK, + ACTIONS(3533), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148872,12 +148938,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3503), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148889,7 +148958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 18, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148898,7 +148967,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -148907,17 +148978,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10246] = 3, + [10330] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3483), 22, + ACTIONS(3465), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -148934,8 +149005,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3485), 35, + ACTIONS(3467), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -148971,17 +149043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10312] = 7, - ACTIONS(857), 1, - anon_sym_COLON, - ACTIONS(3526), 1, + [10396] = 6, + ACTIONS(3508), 1, anon_sym_EQ_GT, - ACTIONS(3569), 1, + ACTIONS(3573), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148997,11 +149067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 18, + ACTIONS(3503), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -149020,7 +149091,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_QMARK_QMARK, + [10468] = 6, + ACTIONS(687), 1, + anon_sym_EQ_GT, + ACTIONS(831), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(157), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -149037,17 +149173,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10386] = 3, + [10540] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3465), 22, + ACTIONS(3493), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3469), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -149064,16 +149204,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3467), 35, - sym__automatic_semicolon, + ACTIONS(3471), 32, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -149101,21 +149239,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10452] = 8, - ACTIONS(221), 1, + [10608] = 8, + ACTIONS(833), 1, + anon_sym_COLON, + ACTIONS(841), 1, anon_sym_EQ, - ACTIONS(227), 1, + ACTIONS(851), 1, anon_sym_EQ_GT, - ACTIONS(725), 1, - anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(224), 3, + ACTIONS(892), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(161), 15, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -149131,7 +149269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149151,7 +149289,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -149168,18 +149305,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10528] = 7, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(855), 1, - anon_sym_EQ, - ACTIONS(857), 1, - anon_sym_COLON, + [10684] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3491), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3473), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(3475), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149195,14 +149362,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, - sym__automatic_semicolon, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [10752] = 11, + ACTIONS(833), 1, + anon_sym_COLON, + ACTIONS(841), 1, + anon_sym_EQ, + ACTIONS(851), 1, + anon_sym_EQ_GT, + ACTIONS(1765), 1, + anon_sym_extends, + ACTIONS(3587), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3590), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3678), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149214,19 +149406,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -149235,18 +149440,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10602] = 7, - ACTIONS(869), 1, - anon_sym_COLON, - ACTIONS(3526), 1, - anon_sym_EQ_GT, - ACTIONS(3569), 1, + [10834] = 14, + ACTIONS(3533), 1, anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_LPAREN, + ACTIONS(3537), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_QMARK_DOT, + ACTIONS(3541), 1, + anon_sym_LT, + ACTIONS(3616), 1, + anon_sym_EQ_GT, + STATE(2936), 1, + sym_arguments, + STATE(3032), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3527), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3517), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3503), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149262,30 +149497,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3499), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_QMARK_QMARK, + [10922] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2502), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -149302,16 +149541,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10676] = 6, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(855), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(167), 15, + ACTIONS(2500), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149327,17 +149570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -149347,35 +149579,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10748] = 5, - ACTIONS(3501), 1, + [10988] = 9, + ACTIONS(227), 1, + anon_sym_EQ_GT, + ACTIONS(890), 1, anon_sym_EQ, + ACTIONS(1765), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3587), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3590), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149391,16 +149612,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 20, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149412,19 +149629,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -149434,13 +149648,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10818] = 5, - ACTIONS(3533), 1, + [11066] = 5, + ACTIONS(3515), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149457,15 +149671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, ACTIONS(3503), 20, - sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149481,7 +149695,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -149498,31 +149711,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [10888] = 10, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(831), 1, - anon_sym_EQ, - ACTIONS(833), 1, - anon_sym_COLON, - ACTIONS(3627), 1, + [11136] = 12, + ACTIONS(3552), 1, anon_sym_LBRACK, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_LT, + ACTIONS(3666), 1, + anon_sym_EQ, + ACTIONS(3668), 1, + anon_sym_EQ_GT, + STATE(3035), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1777), 3, + ACTIONS(3567), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(161), 14, + ACTIONS(3558), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3503), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_COLON, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -149533,7 +149751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149549,11 +149767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(3499), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -149565,88 +149782,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10968] = 7, - ACTIONS(687), 1, + [11220] = 8, + ACTIONS(3595), 1, anon_sym_EQ_GT, - ACTIONS(855), 1, + ACTIONS(3597), 1, anon_sym_EQ, - ACTIONS(869), 1, - anon_sym_COLON, + ACTIONS(3603), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11042] = 8, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3621), 1, - anon_sym_EQ_GT, - ACTIONS(3644), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3647), 3, + ACTIONS(3600), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -149666,7 +149815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149686,7 +149835,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -149703,79 +149851,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11118] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2502), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2500), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [11184] = 6, - ACTIONS(3526), 1, - anon_sym_EQ_GT, - ACTIONS(3533), 1, + [11296] = 9, + ACTIONS(939), 1, anon_sym_EQ, + ACTIONS(945), 1, + anon_sym_EQ_GT, + ACTIONS(1765), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3587), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3590), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149791,15 +149886,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 19, - sym__automatic_semicolon, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149811,19 +149902,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + anon_sym_implements, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -149833,15 +149922,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11256] = 6, - ACTIONS(3571), 1, + [11374] = 6, + ACTIONS(3569), 1, anon_sym_EQ, - ACTIONS(3573), 1, + ACTIONS(3571), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149881,7 +149970,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -149898,17 +149986,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [11328] = 3, + [11446] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3495), 22, + ACTIONS(3469), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -149925,8 +150013,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3497), 35, + ACTIONS(3471), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -149962,16 +150051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11394] = 3, + [11512] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3475), 22, + ACTIONS(3473), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -149988,8 +150076,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3477), 35, + ACTIONS(3475), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150025,15 +150114,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11460] = 6, - ACTIONS(3526), 1, - anon_sym_EQ_GT, - ACTIONS(3569), 1, + [11578] = 5, + ACTIONS(3533), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150049,7 +150136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 19, + ACTIONS(3503), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150057,6 +150144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150073,7 +150161,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -150090,17 +150177,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [11532] = 3, + [11648] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2520), 22, + ACTIONS(3487), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -150117,8 +150204,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(2518), 35, + ACTIONS(3489), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150154,20 +150242,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11598] = 4, + [11714] = 12, + ACTIONS(3552), 1, + anon_sym_LBRACK, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_LT, + ACTIONS(3674), 1, + anon_sym_EQ, + ACTIONS(3676), 1, + anon_sym_EQ_GT, + STATE(3035), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3487), 3, + ACTIONS(3567), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3471), 22, + ACTIONS(3558), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3503), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3510), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3499), 17, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11798] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2522), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(2520), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [11864] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3495), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -150184,13 +150402,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3473), 32, + ACTIONS(3497), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150218,34 +150440,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11666] = 12, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3674), 1, + [11930] = 8, + ACTIONS(221), 1, anon_sym_EQ, - ACTIONS(3676), 1, + ACTIONS(227), 1, anon_sym_EQ_GT, - STATE(2995), 1, - sym_type_arguments, + ACTIONS(725), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 2, + ACTIONS(224), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3558), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 14, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -150256,7 +150470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150272,7 +150486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150281,46 +150495,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [11750] = 14, - ACTIONS(3533), 1, + [12006] = 12, + ACTIONS(3515), 1, anon_sym_EQ, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, + ACTIONS(3523), 1, + anon_sym_EQ_GT, + ACTIONS(3555), 1, anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, + ACTIONS(3561), 1, anon_sym_LT, - ACTIONS(3615), 1, - anon_sym_EQ_GT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, + ACTIONS(3567), 1, + anon_sym_extends, + STATE(3035), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, - anon_sym_COMMA, + ACTIONS(3552), 2, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, + ACTIONS(3558), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 11, + ACTIONS(3503), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -150330,7 +150545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150346,7 +150561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3499), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150363,17 +150578,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [11838] = 3, + [12090] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 22, + ACTIONS(3483), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -150390,8 +150605,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3473), 35, + ACTIONS(3485), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150427,45 +150643,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11904] = 12, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3650), 1, + [12156] = 6, + ACTIONS(831), 1, anon_sym_EQ, - ACTIONS(3652), 1, + ACTIONS(881), 1, anon_sym_EQ_GT, - STATE(2995), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3558), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150481,7 +150667,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(157), 19, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150490,24 +150696,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [11988] = 6, - ACTIONS(831), 1, + [12228] = 6, + ACTIONS(875), 1, anon_sym_EQ, ACTIONS(881), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150523,7 +150733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 19, + ACTIONS(157), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -150547,7 +150757,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -150564,79 +150773,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12060] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3479), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3481), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [12126] = 6, - ACTIONS(3533), 1, + [12300] = 9, + ACTIONS(925), 1, anon_sym_EQ, - ACTIONS(3573), 1, + ACTIONS(931), 1, anon_sym_EQ_GT, + ACTIONS(3587), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(1765), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3590), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150652,15 +150808,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 19, + ACTIONS(157), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -150672,19 +150825,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -150694,36 +150844,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12198] = 14, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(3541), 1, - anon_sym_LT, - ACTIONS(3615), 1, + [12378] = 10, + ACTIONS(851), 1, anon_sym_EQ_GT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + ACTIONS(887), 1, + anon_sym_EQ, + ACTIONS(1767), 1, + anon_sym_QMARK, + ACTIONS(3587), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 2, + ACTIONS(3590), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3505), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(1765), 3, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3503), 11, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -150733,7 +150878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150749,11 +150894,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -150765,18 +150909,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [12286] = 6, - ACTIONS(875), 1, + [12458] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3479), 22, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(881), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(3481), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [12524] = 7, + ACTIONS(869), 1, + anon_sym_COLON, + ACTIONS(3508), 1, anon_sym_EQ_GT, + ACTIONS(3573), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150792,14 +151003,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 19, + ACTIONS(3503), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150812,11 +151022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -150833,34 +151042,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [12358] = 12, - ACTIONS(3501), 1, + [12598] = 9, + ACTIONS(841), 1, anon_sym_EQ, - ACTIONS(3511), 1, + ACTIONS(851), 1, anon_sym_EQ_GT, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3567), 1, + ACTIONS(1765), 1, anon_sym_extends, - STATE(2995), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3552), 2, + ACTIONS(3587), 2, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(3558), 2, + ACTIONS(3590), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3503), 14, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -150871,7 +151076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150887,11 +151092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 18, + ACTIONS(122), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -150903,18 +151107,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [12442] = 6, - ACTIONS(687), 1, - anon_sym_EQ_GT, - ACTIONS(831), 1, + [12675] = 6, + ACTIONS(3593), 1, anon_sym_EQ, + ACTIONS(3595), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150930,14 +151136,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 19, - sym__automatic_semicolon, + ACTIONS(3503), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -150950,11 +151155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -150971,35 +151175,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [12514] = 12, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3658), 1, - anon_sym_EQ, - ACTIONS(3660), 1, + [12746] = 10, + ACTIONS(3600), 1, + anon_sym_RBRACK, + ACTIONS(3637), 1, + anon_sym_COMMA, + ACTIONS(3676), 1, anon_sym_EQ_GT, - STATE(2995), 1, - sym_type_arguments, + ACTIONS(3682), 1, + anon_sym_EQ, + ACTIONS(3685), 1, + anon_sym_in, + ACTIONS(3687), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3558), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3503), 14, + ACTIONS(3503), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -151010,7 +151209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151026,35 +151225,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3499), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [12598] = 7, + [12825] = 7, ACTIONS(925), 1, anon_sym_EQ, ACTIONS(931), 1, anon_sym_EQ_GT, - ACTIONS(3682), 1, + ACTIONS(3689), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, + ACTIONS(157), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_LPAREN, @@ -151069,7 +151271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151090,7 +151292,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151107,22 +151308,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [12671] = 4, + [12898] = 5, + ACTIONS(3491), 1, + anon_sym_extends, + ACTIONS(3691), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3479), 22, + ACTIONS(3473), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151139,14 +151341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3481), 32, - sym__automatic_semicolon, + ACTIONS(3475), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -151173,15 +151376,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12738] = 7, - ACTIONS(3501), 1, + [12967] = 7, + ACTIONS(3515), 1, anon_sym_EQ, - ACTIONS(3623), 1, + ACTIONS(3614), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3684), 3, + ACTIONS(3693), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, @@ -151201,7 +151404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151221,7 +151424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151238,16 +151440,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [12811] = 6, - ACTIONS(831), 1, + [13040] = 7, + ACTIONS(925), 1, anon_sym_EQ, - ACTIONS(945), 1, + ACTIONS(931), 1, anon_sym_EQ_GT, + ACTIONS(3477), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(157), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151263,30 +151483,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 21, + ACTIONS(122), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151303,37 +151504,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [12882] = 5, - ACTIONS(3569), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [13113] = 7, + ACTIONS(3515), 1, anon_sym_EQ, + ACTIONS(3523), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3693), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3503), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151346,11 +151536,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + ACTIONS(3510), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151367,87 +151572,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [12951] = 5, - ACTIONS(3487), 1, - anon_sym_extends, - ACTIONS(3687), 1, + [13186] = 7, + ACTIONS(3597), 1, + anon_sym_EQ, + ACTIONS(3603), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3471), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3473), 32, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3600), 3, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [13020] = 10, - ACTIONS(3613), 1, - anon_sym_COMMA, - ACTIONS(3647), 1, - anon_sym_RBRACK, - ACTIONS(3676), 1, - anon_sym_EQ_GT, - ACTIONS(3689), 1, - anon_sym_EQ, - ACTIONS(3692), 1, - anon_sym_in, - ACTIONS(3694), 1, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, ACTIONS(3503), 15, sym__ternary_qmark, anon_sym_as, @@ -151464,7 +151602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151480,10 +151618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 20, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151500,33 +151638,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13099] = 7, - ACTIONS(925), 1, + [13259] = 6, + ACTIONS(3533), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(3595), 1, anon_sym_EQ_GT, - ACTIONS(3463), 1, - sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151542,12 +151664,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 24, - anon_sym_STAR, + ACTIONS(3503), 18, + sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3499), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151564,26 +151703,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [13172] = 7, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3644), 1, + [13330] = 9, + ACTIONS(955), 1, anon_sym_EQ, + ACTIONS(961), 1, + anon_sym_EQ_GT, + ACTIONS(3587), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3647), 3, + ACTIONS(1765), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3503), 15, + anon_sym_extends, + ACTIONS(3590), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -151595,7 +151738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151611,19 +151754,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(122), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -151633,15 +151773,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13245] = 6, - ACTIONS(3533), 1, + [13407] = 8, + ACTIONS(3515), 1, anon_sym_EQ, - ACTIONS(3621), 1, + ACTIONS(3523), 1, anon_sym_EQ_GT, + ACTIONS(3696), 1, + anon_sym_in, + ACTIONS(3699), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151657,13 +151801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 18, + ACTIONS(3503), 17, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151676,11 +151819,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3499), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151697,30 +151838,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13316] = 9, - ACTIONS(955), 1, + [13482] = 12, + ACTIONS(3533), 1, anon_sym_EQ, - ACTIONS(961), 1, - anon_sym_EQ_GT, - ACTIONS(3627), 1, + ACTIONS(3552), 1, anon_sym_LBRACK, + ACTIONS(3555), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_LT, + ACTIONS(3616), 1, + anon_sym_EQ_GT, + STATE(3035), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 2, + ACTIONS(3567), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3630), 3, - anon_sym_GT, + ACTIONS(3558), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(161), 15, + anon_sym_GT, + ACTIONS(3503), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -151731,7 +151877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151747,7 +151893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 18, + ACTIONS(3499), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151762,23 +151908,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13393] = 8, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(3511), 1, + [13565] = 6, + ACTIONS(227), 1, anon_sym_EQ_GT, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3699), 1, - anon_sym_of, + ACTIONS(890), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151794,12 +151935,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 17, + ACTIONS(157), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151812,10 +151954,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 20, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_QMARK_QMARK, + [13636] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3491), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3473), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151832,16 +152004,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13468] = 6, - ACTIONS(227), 1, - anon_sym_EQ_GT, - ACTIONS(890), 1, + ACTIONS(3475), 32, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [13703] = 5, + ACTIONS(3569), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151857,13 +152061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, + ACTIONS(3503), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -151876,11 +152081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151897,8 +152101,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13539] = 9, + [13772] = 9, ACTIONS(128), 1, anon_sym_COMMA, ACTIONS(224), 1, @@ -151912,7 +152117,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -151928,7 +152133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151948,7 +152153,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -151965,26 +152169,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13616] = 7, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(3511), 1, - anon_sym_EQ_GT, + [13849] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3684), 3, + ACTIONS(3493), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3503), 15, + anon_sym_extends, + ACTIONS(3469), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(3471), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -151994,7 +152234,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + [13916] = 8, + ACTIONS(841), 1, + anon_sym_EQ, + ACTIONS(851), 1, + anon_sym_EQ_GT, + ACTIONS(895), 1, + anon_sym_in, + ACTIONS(3701), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152010,11 +152262,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(157), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152031,14 +152299,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13689] = 5, - ACTIONS(3571), 1, + [13991] = 6, + ACTIONS(831), 1, anon_sym_EQ, + ACTIONS(945), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152054,14 +152325,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 19, - sym__automatic_semicolon, + ACTIONS(157), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152074,11 +152343,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + anon_sym_implements, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152095,71 +152364,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13758] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3487), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3471), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3473), 32, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [13825] = 6, + [14062] = 6, ACTIONS(227), 1, anon_sym_EQ_GT, ACTIONS(831), 1, @@ -152167,7 +152374,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152183,7 +152390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, + ACTIONS(157), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -152206,7 +152413,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152223,16 +152429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13896] = 6, - ACTIONS(939), 1, + [14133] = 5, + ACTIONS(3573), 1, anon_sym_EQ, - ACTIONS(945), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152248,12 +152453,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 18, + ACTIONS(3503), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152266,12 +152473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(122), 21, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152288,25 +152493,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [13967] = 9, + [14202] = 9, ACTIONS(913), 1, anon_sym_EQ_GT, ACTIONS(917), 1, anon_sym_EQ, - ACTIONS(3627), 1, + ACTIONS(3587), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 2, + ACTIONS(1765), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3630), 3, - anon_sym_GT, + ACTIONS(3590), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(161), 15, + anon_sym_GT, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152322,7 +152528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152357,74 +152563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14044] = 8, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(851), 1, - anon_sym_EQ_GT, - ACTIONS(895), 1, - anon_sym_in, - ACTIONS(3701), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14119] = 7, + [14279] = 7, ACTIONS(851), 1, anon_sym_EQ_GT, ACTIONS(887), 1, @@ -152436,7 +152575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(161), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152452,7 +152591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152472,7 +152611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152489,25 +152627,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14192] = 9, + [14352] = 9, ACTIONS(969), 1, anon_sym_EQ, ACTIONS(975), 1, anon_sym_EQ_GT, - ACTIONS(3627), 1, + ACTIONS(3587), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 2, + ACTIONS(1765), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3630), 3, - anon_sym_GT, + ACTIONS(3590), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(161), 15, + anon_sym_GT, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -152523,7 +152662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152558,34 +152697,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14269] = 12, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3552), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - anon_sym_DOT, - ACTIONS(3561), 1, - anon_sym_LT, - ACTIONS(3615), 1, - anon_sym_EQ_GT, - STATE(2995), 1, - sym_type_arguments, + [14429] = 5, + ACTIONS(3493), 1, + anon_sym_extends, + ACTIONS(3703), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3558), 3, - anon_sym_GT, + ACTIONS(3469), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(3503), 13, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(3471), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -152595,7 +152761,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + [14498] = 6, + ACTIONS(3630), 1, + anon_sym_EQ, + ACTIONS(3632), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152611,7 +152785,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 17, + ACTIONS(3503), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -152620,24 +152813,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14352] = 6, - ACTIONS(3587), 1, + [14569] = 6, + ACTIONS(3533), 1, anon_sym_EQ, - ACTIONS(3589), 1, + ACTIONS(3632), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152676,7 +152873,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + anon_sym_QMARK_QMARK, + [14640] = 7, + ACTIONS(3523), 1, + anon_sym_EQ_GT, + ACTIONS(3543), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3600), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3503), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3510), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3499), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152693,16 +152955,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14423] = 6, - ACTIONS(3533), 1, + [14713] = 6, + ACTIONS(939), 1, anon_sym_EQ, - ACTIONS(3589), 1, + ACTIONS(945), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152718,7 +152981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 18, + ACTIONS(157), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -152737,11 +153000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - ACTIONS(3499), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152758,16 +153020,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14494] = 7, - ACTIONS(3511), 1, - anon_sym_EQ_GT, + [14784] = 6, ACTIONS(3543), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3647), 3, + ACTIONS(3600), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, @@ -152787,7 +153048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152807,7 +153068,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152824,28 +153084,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14567] = 9, - ACTIONS(841), 1, - anon_sym_EQ, - ACTIONS(851), 1, + [14854] = 8, + ACTIONS(3600), 1, + anon_sym_RBRACK, + ACTIONS(3637), 1, + anon_sym_COMMA, + ACTIONS(3676), 1, anon_sym_EQ_GT, - ACTIONS(1777), 1, - anon_sym_extends, + ACTIONS(3682), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3627), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(161), 15, + ACTIONS(3503), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -152857,7 +153114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152873,17 +153130,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 19, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -152892,16 +153150,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14644] = 6, - ACTIONS(3619), 1, + [14928] = 31, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(3312), 1, + anon_sym_abstract, + ACTIONS(3707), 1, + anon_sym_export, + ACTIONS(3709), 1, + anon_sym_STAR, + ACTIONS(3715), 1, + anon_sym_LBRACK, + ACTIONS(3717), 1, + anon_sym_async, + ACTIONS(3719), 1, + anon_sym_new, + ACTIONS(3723), 1, + anon_sym_static, + ACTIONS(3725), 1, + anon_sym_readonly, + ACTIONS(3731), 1, + anon_sym_override, + STATE(1285), 1, + sym_decorator, + STATE(2786), 1, + sym_accessibility_modifier, + STATE(2806), 1, + sym_override_modifier, + STATE(3317), 1, + sym_formal_parameters, + STATE(4078), 1, + sym__call_signature, + STATE(4391), 1, + aux_sym_export_statement_repeat1, + STATE(5224), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3711), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3713), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3721), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3727), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3729), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3118), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3782), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3705), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [15048] = 7, + ACTIONS(3515), 1, anon_sym_EQ, - ACTIONS(3621), 1, - anon_sym_EQ_GT, + ACTIONS(3696), 1, + anon_sym_in, + ACTIONS(3699), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152917,13 +153267,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 18, + ACTIONS(3503), 17, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -152936,11 +153285,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(3499), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -152957,77 +153304,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14715] = 5, - ACTIONS(3489), 1, - anon_sym_extends, - ACTIONS(3703), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3479), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3481), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [14784] = 31, + [15120] = 31, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -153051,19 +153335,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153071,10 +153355,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3298), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3711), 2, + ACTIONS(3344), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3713), 2, + ACTIONS(3346), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3721), 2, @@ -153087,11 +153371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3855), 6, + STATE(3899), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -153111,7 +153395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14904] = 6, + [15240] = 6, ACTIONS(925), 1, anon_sym_EQ, ACTIONS(931), 1, @@ -153119,7 +153403,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153135,7 +153419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, + ACTIONS(157), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153157,7 +153441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -153174,36 +153457,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [14974] = 5, - ACTIONS(3619), 1, + [15310] = 8, + ACTIONS(128), 1, + anon_sym_COMMA, + ACTIONS(224), 1, + anon_sym_RBRACK, + ACTIONS(904), 1, anon_sym_EQ, + ACTIONS(913), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 18, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153216,11 +153487,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(163), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -153237,25 +153523,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [15042] = 9, - ACTIONS(159), 1, + [15384] = 9, + ACTIONS(155), 1, anon_sym_EQ_GT, ACTIONS(831), 1, anon_sym_EQ, - ACTIONS(3627), 1, + ACTIONS(3587), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 2, + ACTIONS(1765), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3630), 3, - anon_sym_GT, + ACTIONS(3590), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(161), 14, + anon_sym_GT, + ACTIONS(157), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153270,7 +153557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153305,17 +153592,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15118] = 7, - ACTIONS(3501), 1, + [15460] = 6, + ACTIONS(3643), 1, anon_sym_EQ, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3699), 1, - anon_sym_of, + ACTIONS(3645), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153332,9 +153617,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, ACTIONS(3503), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -153349,10 +153634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 20, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -153369,20 +153654,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [15190] = 8, - ACTIONS(3674), 1, - anon_sym_EQ, - ACTIONS(3676), 1, - anon_sym_EQ_GT, - ACTIONS(3692), 1, - anon_sym_in, - ACTIONS(3694), 1, + [15530] = 7, + ACTIONS(909), 1, anon_sym_COLON, + ACTIONS(913), 1, + anon_sym_EQ_GT, + ACTIONS(917), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153398,7 +153682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 16, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153415,10 +153699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 20, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -153435,45 +153719,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [15264] = 4, + [15602] = 5, + ACTIONS(3630), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3487), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3471), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3473), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153489,6 +153743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3503), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -153498,17 +153761,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [15330] = 7, - ACTIONS(909), 1, - anon_sym_COLON, - ACTIONS(913), 1, - anon_sym_EQ_GT, - ACTIONS(917), 1, + anon_sym_implements, + ACTIONS(3499), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [15670] = 8, + ACTIONS(3674), 1, anon_sym_EQ, + ACTIONS(3676), 1, + anon_sym_EQ_GT, + ACTIONS(3685), 1, + anon_sym_in, + ACTIONS(3687), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153524,7 +153812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3503), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153541,11 +153829,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3499), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -153562,13 +153848,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [15402] = 31, + [15744] = 31, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -153592,47 +153879,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(3290), 2, + anon_sym_COMMA, + anon_sym_SEMI, ACTIONS(3298), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3314), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, ACTIONS(3721), 2, sym_number, sym_private_property_identifier, ACTIONS(3727), 2, anon_sym_get, anon_sym_set, - ACTIONS(3733), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3735), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3826), 6, + STATE(3796), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -153652,101 +153939,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15522] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1297), 1, - sym_decorator, - STATE(2787), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3307), 1, - sym_formal_parameters, - STATE(4102), 1, - sym__call_signature, - STATE(4407), 1, - aux_sym_export_statement_repeat1, - STATE(5222), 1, - sym_type_parameters, + [15864] = 8, + ACTIONS(3674), 1, + anon_sym_EQ, + ACTIONS(3676), 1, + anon_sym_EQ_GT, + ACTIONS(3685), 1, + anon_sym_in, + ACTIONS(3733), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3510), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3503), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3499), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3346), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3348), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3902), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [15642] = 31, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [15938] = 31, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -153770,19 +154034,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -153796,21 +154060,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3727), 2, anon_sym_get, anon_sym_set, - ACTIONS(3737), 2, + ACTIONS(3735), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3739), 2, + ACTIONS(3737), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3807), 6, + STATE(3850), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -153830,19 +154094,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [15762] = 4, + [16058] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 2, + ACTIONS(3491), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3479), 22, + ACTIONS(3473), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -153859,8 +154122,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - ACTIONS(3481), 31, + ACTIONS(3475), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -153892,13 +154156,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [15828] = 5, - ACTIONS(3587), 1, + [16124] = 6, + ACTIONS(3533), 1, anon_sym_EQ, + ACTIONS(3645), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153914,12 +154180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 18, + ACTIONS(3503), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -153932,12 +154198,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -153954,16 +154218,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [15896] = 6, - ACTIONS(3633), 1, + [16194] = 6, + ACTIONS(831), 1, anon_sym_EQ, - ACTIONS(3635), 1, + ACTIONS(931), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153979,7 +154244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 17, + ACTIONS(157), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -153997,11 +154262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154018,36 +154282,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [15966] = 8, - ACTIONS(3613), 1, - anon_sym_COMMA, - ACTIONS(3647), 1, - anon_sym_RBRACK, - ACTIONS(3676), 1, + [16264] = 7, + ACTIONS(913), 1, anon_sym_EQ_GT, - ACTIONS(3689), 1, + ACTIONS(917), 1, anon_sym_EQ, + ACTIONS(919), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154063,11 +154310,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(157), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154084,18 +154347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16040] = 7, - ACTIONS(913), 1, - anon_sym_EQ_GT, - ACTIONS(917), 1, + [16336] = 5, + ACTIONS(3593), 1, anon_sym_EQ, - ACTIONS(919), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154111,12 +154371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3503), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154128,11 +154390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154149,36 +154410,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16112] = 8, - ACTIONS(128), 1, + [16404] = 31, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(3312), 1, + anon_sym_abstract, + ACTIONS(3707), 1, + anon_sym_export, + ACTIONS(3709), 1, + anon_sym_STAR, + ACTIONS(3715), 1, + anon_sym_LBRACK, + ACTIONS(3717), 1, + anon_sym_async, + ACTIONS(3719), 1, + anon_sym_new, + ACTIONS(3723), 1, + anon_sym_static, + ACTIONS(3725), 1, + anon_sym_readonly, + ACTIONS(3731), 1, + anon_sym_override, + STATE(1285), 1, + sym_decorator, + STATE(2786), 1, + sym_accessibility_modifier, + STATE(2806), 1, + sym_override_modifier, + STATE(3317), 1, + sym_formal_parameters, + STATE(4078), 1, + sym__call_signature, + STATE(4391), 1, + aux_sym_export_statement_repeat1, + STATE(5224), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3727), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3739), 2, anon_sym_COMMA, - ACTIONS(224), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, - anon_sym_EQ, - ACTIONS(913), 1, - anon_sym_EQ_GT, + anon_sym_SEMI, + ACTIONS(3741), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3729), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3118), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(3831), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3705), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [16524] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3493), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3469), 22, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + ACTIONS(3471), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154194,34 +154554,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [16186] = 31, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [16590] = 31, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -154245,19 +154592,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -154271,21 +154618,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3727), 2, anon_sym_get, anon_sym_set, - ACTIONS(3741), 2, + ACTIONS(3743), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3743), 2, + ACTIONS(3745), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3780), 6, + STATE(3810), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -154305,40 +154652,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16306] = 8, - ACTIONS(3674), 1, + [16710] = 7, + ACTIONS(3600), 1, + anon_sym_RBRACK, + ACTIONS(3637), 1, + anon_sym_COMMA, + ACTIONS(3682), 1, anon_sym_EQ, - ACTIONS(3676), 1, - anon_sym_EQ_GT, - ACTIONS(3692), 1, - anon_sym_in, - ACTIONS(3745), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 16, + ACTIONS(3503), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154350,10 +154678,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 20, + ACTIONS(3510), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154370,16 +154714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16380] = 6, - ACTIONS(3533), 1, + [16781] = 6, + ACTIONS(3666), 1, anon_sym_EQ, - ACTIONS(3635), 1, + ACTIONS(3668), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154395,12 +154740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 17, - sym__automatic_semicolon, + ACTIONS(3503), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -154417,7 +154761,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154434,34 +154777,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16450] = 6, - ACTIONS(3543), 1, + [16850] = 6, + ACTIONS(3674), 1, anon_sym_EQ, + ACTIONS(3676), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3647), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3503), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154477,11 +154803,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3503), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154498,16 +154840,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16520] = 6, + [16919] = 6, ACTIONS(831), 1, anon_sym_EQ, - ACTIONS(931), 1, + ACTIONS(961), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154523,12 +154866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 17, - sym__automatic_semicolon, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -154545,7 +154887,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154562,105 +154903,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16590] = 31, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1297), 1, - sym_decorator, - STATE(2787), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3307), 1, - sym_formal_parameters, - STATE(4102), 1, - sym__call_signature, - STATE(4407), 1, - aux_sym_export_statement_repeat1, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3290), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3314), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3822), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [16710] = 6, - ACTIONS(831), 1, + [16988] = 6, + ACTIONS(3533), 1, anon_sym_EQ, - ACTIONS(913), 1, + ACTIONS(3668), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154676,12 +154929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3503), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154693,11 +154946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154714,16 +154966,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16779] = 6, - ACTIONS(831), 1, + [17057] = 6, + ACTIONS(3533), 1, anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(3676), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154739,12 +154992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3503), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154756,11 +155009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154777,16 +155029,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16848] = 6, - ACTIONS(3658), 1, + [17126] = 6, + ACTIONS(3650), 1, anon_sym_EQ, - ACTIONS(3660), 1, + ACTIONS(3652), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154806,7 +155059,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -154823,7 +155076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154840,16 +155092,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16917] = 6, - ACTIONS(3674), 1, + [17195] = 6, + ACTIONS(3533), 1, anon_sym_EQ, - ACTIONS(3676), 1, + ACTIONS(3652), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154869,8 +155122,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154886,7 +155139,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154903,20 +155155,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [16986] = 8, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(831), 1, + [17264] = 8, + ACTIONS(3533), 1, anon_sym_EQ, - ACTIONS(895), 1, + ACTIONS(3616), 1, + anon_sym_EQ_GT, + ACTIONS(3696), 1, anon_sym_in, - ACTIONS(3701), 1, + ACTIONS(3699), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3503), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -154932,7 +155185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154948,10 +155201,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 20, + ACTIONS(3499), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -154968,16 +155220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17059] = 6, - ACTIONS(3533), 1, + [17337] = 6, + ACTIONS(969), 1, anon_sym_EQ, - ACTIONS(3660), 1, + ACTIONS(975), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154993,11 +155246,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 16, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -155010,11 +155263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155031,16 +155283,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17128] = 6, - ACTIONS(3533), 1, + [17406] = 6, + ACTIONS(831), 1, anon_sym_EQ, - ACTIONS(3676), 1, + ACTIONS(975), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155056,12 +155309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 16, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -155073,11 +155326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155094,16 +155346,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17197] = 6, - ACTIONS(3650), 1, - anon_sym_EQ, - ACTIONS(3652), 1, + [17475] = 6, + ACTIONS(913), 1, anon_sym_EQ_GT, + ACTIONS(917), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155119,12 +155372,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 16, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -155136,11 +155389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155157,16 +155409,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17266] = 6, - ACTIONS(3533), 1, + [17544] = 6, + ACTIONS(955), 1, anon_sym_EQ, - ACTIONS(3652), 1, + ACTIONS(961), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155182,11 +155435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 16, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -155199,11 +155452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3499), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155220,9 +155472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17335] = 7, - ACTIONS(159), 1, + [17613] = 7, + ACTIONS(155), 1, anon_sym_EQ_GT, ACTIONS(831), 1, anon_sym_EQ, @@ -155231,7 +155484,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155247,7 +155500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155267,7 +155520,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155284,80 +155536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17406] = 7, - ACTIONS(3613), 1, - anon_sym_COMMA, - ACTIONS(3647), 1, - anon_sym_RBRACK, - ACTIONS(3689), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3503), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17477] = 6, - ACTIONS(969), 1, + [17684] = 5, + ACTIONS(3643), 1, anon_sym_EQ, - ACTIONS(975), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155373,11 +155560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(3503), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -155390,11 +155578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155411,36 +155598,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17546] = 6, + [17751] = 8, + ACTIONS(155), 1, + anon_sym_EQ_GT, ACTIONS(831), 1, anon_sym_EQ, - ACTIONS(975), 1, - anon_sym_EQ_GT, + ACTIONS(895), 1, + anon_sym_in, + ACTIONS(3701), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -155453,37 +155628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17615] = 6, - ACTIONS(913), 1, - anon_sym_EQ_GT, - ACTIONS(917), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155499,28 +155644,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(122), 21, + ACTIONS(122), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155537,16 +155663,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [17684] = 6, - ACTIONS(955), 1, + [17824] = 6, + ACTIONS(831), 1, anon_sym_EQ, - ACTIONS(961), 1, + ACTIONS(913), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155562,12 +155689,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(161), 16, + ACTIONS(157), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -155583,69 +155710,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17753] = 5, - ACTIONS(3633), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3503), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3499), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155662,78 +155726,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17820] = 8, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3615), 1, - anon_sym_EQ_GT, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3699), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3503), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3515), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 20, - anon_sym_STAR, - anon_sym_BANG, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, [17893] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -155757,19 +155757,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -155790,7 +155790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -155815,14 +155815,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [18009] = 6, - ACTIONS(159), 1, + ACTIONS(3616), 1, anon_sym_EQ_GT, - ACTIONS(985), 1, + ACTIONS(3749), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(3503), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155838,7 +155838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155854,11 +155854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155875,16 +155874,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, [18077] = 6, - ACTIONS(159), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, ACTIONS(1051), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -155900,7 +155900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155920,7 +155920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -155937,95 +155936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [18145] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1297), 1, - sym_decorator, - STATE(2787), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3307), 1, - sym_formal_parameters, - STATE(4102), 1, - sym__call_signature, - STATE(4407), 1, - aux_sym_export_statement_repeat1, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3749), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18261] = 6, - ACTIONS(3615), 1, + [18145] = 6, + ACTIONS(3616), 1, anon_sym_EQ_GT, ACTIONS(3751), 1, anon_sym_EQ, @@ -156048,7 +155962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156068,7 +155982,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -156085,13 +155998,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [18329] = 30, + [18213] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -156115,19 +156029,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156148,93 +156062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18445] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1297), 1, - sym_decorator, - STATE(2787), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3307), 1, - sym_formal_parameters, - STATE(4102), 1, - sym__call_signature, - STATE(4407), 1, - aux_sym_export_statement_repeat1, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3755), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -156258,15 +156086,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18561] = 6, - ACTIONS(159), 1, + [18329] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, ACTIONS(831), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156282,7 +156110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156302,7 +156130,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -156319,16 +156146,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [18629] = 6, - ACTIONS(159), 1, + [18397] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, ACTIONS(987), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156344,7 +156172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156364,7 +156192,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -156381,188 +156208,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [18697] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1297), 1, - sym_decorator, - STATE(2787), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3307), 1, - sym_formal_parameters, - STATE(4102), 1, - sym__call_signature, - STATE(4407), 1, - aux_sym_export_statement_repeat1, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3757), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18813] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1297), 1, - sym_decorator, - STATE(2787), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3307), 1, - sym_formal_parameters, - STATE(4102), 1, - sym__call_signature, - STATE(4407), 1, - aux_sym_export_statement_repeat1, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3759), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18929] = 6, - ACTIONS(159), 1, + [18465] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, ACTIONS(995), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -156578,7 +156234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156598,7 +156254,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -156615,11 +156270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [18997] = 6, - ACTIONS(3615), 1, + [18533] = 6, + ACTIONS(3616), 1, anon_sym_EQ_GT, - ACTIONS(3761), 1, + ACTIONS(3755), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -156640,7 +156296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156660,7 +156316,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -156677,11 +156332,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [19065] = 6, - ACTIONS(3615), 1, + [18601] = 6, + ACTIONS(3616), 1, anon_sym_EQ_GT, - ACTIONS(3763), 1, + ACTIONS(3757), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -156702,7 +156358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156722,7 +156378,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -156739,13 +156394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [19133] = 30, + [18669] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -156769,19 +156425,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156795,14 +156451,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3727), 2, anon_sym_get, anon_sym_set, - ACTIONS(3765), 2, + ACTIONS(3759), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -156826,74 +156482,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19249] = 6, - ACTIONS(159), 1, - anon_sym_EQ_GT, - ACTIONS(991), 1, - anon_sym_EQ, + [18785] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(3312), 1, + anon_sym_abstract, + ACTIONS(3707), 1, + anon_sym_export, + ACTIONS(3709), 1, + anon_sym_STAR, + ACTIONS(3715), 1, + anon_sym_LBRACK, + ACTIONS(3717), 1, + anon_sym_async, + ACTIONS(3719), 1, + anon_sym_new, + ACTIONS(3723), 1, + anon_sym_static, + ACTIONS(3725), 1, + anon_sym_readonly, + ACTIONS(3731), 1, + anon_sym_override, + STATE(1285), 1, + sym_decorator, + STATE(2786), 1, + sym_accessibility_modifier, + STATE(2806), 1, + sym_override_modifier, + STATE(3317), 1, + sym_formal_parameters, + STATE(4078), 1, + sym__call_signature, + STATE(4391), 1, + aux_sym_export_statement_repeat1, + STATE(5224), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(167), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(122), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(3298), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19317] = 30, + ACTIONS(3721), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3727), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3761), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3729), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3118), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4281), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3705), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [18901] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -156917,19 +156597,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -156943,14 +156623,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3727), 2, anon_sym_get, anon_sym_set, - ACTIONS(3767), 2, + ACTIONS(3763), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -156974,12 +156654,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19433] = 30, + [19017] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -157003,19 +156683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -157029,14 +156709,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3727), 2, anon_sym_get, anon_sym_set, - ACTIONS(3769), 2, + ACTIONS(3765), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -157060,15 +156740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19549] = 6, - ACTIONS(159), 1, + [19133] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(981), 1, + ACTIONS(991), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157084,7 +156764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157104,7 +156784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -157121,16 +156800,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [19617] = 6, - ACTIONS(3615), 1, + [19201] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(3312), 1, + anon_sym_abstract, + ACTIONS(3707), 1, + anon_sym_export, + ACTIONS(3709), 1, + anon_sym_STAR, + ACTIONS(3715), 1, + anon_sym_LBRACK, + ACTIONS(3717), 1, + anon_sym_async, + ACTIONS(3719), 1, + anon_sym_new, + ACTIONS(3723), 1, + anon_sym_static, + ACTIONS(3725), 1, + anon_sym_readonly, + ACTIONS(3731), 1, + anon_sym_override, + STATE(1285), 1, + sym_decorator, + STATE(2786), 1, + sym_accessibility_modifier, + STATE(2806), 1, + sym_override_modifier, + STATE(3317), 1, + sym_formal_parameters, + STATE(4078), 1, + sym__call_signature, + STATE(4391), 1, + aux_sym_export_statement_repeat1, + STATE(5224), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3727), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3767), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3729), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3118), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4281), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3705), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [19317] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3771), 1, + ACTIONS(981), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157146,7 +156912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157162,11 +156928,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -157183,11 +156948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [19685] = 6, - ACTIONS(3615), 1, + [19385] = 6, + ACTIONS(3616), 1, anon_sym_EQ_GT, - ACTIONS(3773), 1, + ACTIONS(3769), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -157208,7 +156974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157228,7 +156994,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -157245,13 +157010,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [19753] = 30, + [19453] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -157275,19 +157041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -157301,14 +157067,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3727), 2, anon_sym_get, anon_sym_set, - ACTIONS(3775), 2, + ACTIONS(3771), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -157332,12 +157098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19869] = 30, + [19569] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -157361,19 +157127,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -157387,14 +157153,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3727), 2, anon_sym_get, anon_sym_set, - ACTIONS(3777), 2, + ACTIONS(3773), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -157418,15 +157184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19985] = 6, - ACTIONS(159), 1, + [19685] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(989), 1, + ACTIONS(985), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157442,7 +157208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157462,7 +157228,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -157479,16 +157244,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20053] = 6, - ACTIONS(3615), 1, + [19753] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, - ACTIONS(3779), 1, + ACTIONS(989), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3503), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157504,7 +157270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157520,11 +157286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(122), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -157541,13 +157306,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20121] = 30, + [19821] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -157571,19 +157337,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -157597,14 +157363,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3727), 2, anon_sym_get, anon_sym_set, - ACTIONS(3781), 2, + ACTIONS(3775), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -157628,12 +157394,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20237] = 30, + [19937] = 6, + ACTIONS(3616), 1, + anon_sym_EQ_GT, + ACTIONS(3777), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3503), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(3510), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3499), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_QMARK_QMARK, + [20005] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -157657,19 +157485,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -157683,14 +157511,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3727), 2, anon_sym_get, anon_sym_set, - ACTIONS(3783), 2, + ACTIONS(3779), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -157714,15 +157542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20353] = 6, - ACTIONS(159), 1, + [20121] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, ACTIONS(1049), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -157738,7 +157566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157758,7 +157586,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -157775,11 +157602,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20421] = 6, - ACTIONS(3615), 1, + [20189] = 6, + ACTIONS(3616), 1, anon_sym_EQ_GT, - ACTIONS(3785), 1, + ACTIONS(3781), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -157800,7 +157628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157820,7 +157648,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -157837,11 +157664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20489] = 6, + [20257] = 6, ACTIONS(3533), 1, anon_sym_EQ, - ACTIONS(3623), 1, + ACTIONS(3614), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, @@ -157862,7 +157690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157882,7 +157710,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -157899,14 +157726,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20557] = 7, - ACTIONS(3533), 1, + [20325] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(3312), 1, + anon_sym_abstract, + ACTIONS(3707), 1, + anon_sym_export, + ACTIONS(3709), 1, + anon_sym_STAR, + ACTIONS(3715), 1, + anon_sym_LBRACK, + ACTIONS(3717), 1, + anon_sym_async, + ACTIONS(3719), 1, + anon_sym_new, + ACTIONS(3723), 1, + anon_sym_static, + ACTIONS(3725), 1, + anon_sym_readonly, + ACTIONS(3731), 1, + anon_sym_override, + STATE(1285), 1, + sym_decorator, + STATE(2786), 1, + sym_accessibility_modifier, + STATE(2806), 1, + sym_override_modifier, + STATE(3317), 1, + sym_formal_parameters, + STATE(4078), 1, + sym__call_signature, + STATE(4391), 1, + aux_sym_export_statement_repeat1, + STATE(5224), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3727), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3783), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3729), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3118), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4281), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3705), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [20441] = 6, + ACTIONS(3616), 1, + anon_sym_EQ_GT, + ACTIONS(3785), 1, anon_sym_EQ, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3699), 1, - anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -157926,7 +157838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157942,10 +157854,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 20, + ACTIONS(3499), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -157962,12 +157874,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20627] = 6, - ACTIONS(3615), 1, - anon_sym_EQ_GT, - ACTIONS(3787), 1, + [20509] = 7, + ACTIONS(3533), 1, anon_sym_EQ, + ACTIONS(3696), 1, + anon_sym_in, + ACTIONS(3699), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -157987,7 +157902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158003,11 +157918,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3499), 21, + ACTIONS(3499), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -158024,16 +157937,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20695] = 6, - ACTIONS(159), 1, + [20579] = 6, + ACTIONS(155), 1, anon_sym_EQ_GT, ACTIONS(993), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158049,7 +157963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158069,7 +157983,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -158086,9 +157999,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, + [20647] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(3312), 1, + anon_sym_abstract, + ACTIONS(3707), 1, + anon_sym_export, + ACTIONS(3709), 1, + anon_sym_STAR, + ACTIONS(3715), 1, + anon_sym_LBRACK, + ACTIONS(3717), 1, + anon_sym_async, + ACTIONS(3719), 1, + anon_sym_new, + ACTIONS(3723), 1, + anon_sym_static, + ACTIONS(3725), 1, + anon_sym_readonly, + ACTIONS(3731), 1, + anon_sym_override, + STATE(1285), 1, + sym_decorator, + STATE(2786), 1, + sym_accessibility_modifier, + STATE(2806), 1, + sym_override_modifier, + STATE(3317), 1, + sym_formal_parameters, + STATE(4078), 1, + sym__call_signature, + STATE(4391), 1, + aux_sym_export_statement_repeat1, + STATE(5224), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3727), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3787), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3729), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3118), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4281), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3705), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, [20763] = 6, - ACTIONS(3615), 1, + ACTIONS(3616), 1, anon_sym_EQ_GT, ACTIONS(3789), 1, anon_sym_EQ, @@ -158111,7 +158111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158131,7 +158131,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -158148,16 +158147,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, [20831] = 6, - ACTIONS(159), 1, + ACTIONS(155), 1, anon_sym_EQ_GT, ACTIONS(983), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(161), 15, + ACTIONS(157), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -158173,7 +158173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(167), 15, + ACTIONS(163), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158193,7 +158193,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -158210,9 +158209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, [20899] = 6, - ACTIONS(3615), 1, + ACTIONS(3616), 1, anon_sym_EQ_GT, ACTIONS(3791), 1, anon_sym_EQ, @@ -158235,7 +158235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158255,7 +158255,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -158272,186 +158271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [20967] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1297), 1, - sym_decorator, - STATE(2787), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3307), 1, - sym_formal_parameters, - STATE(4102), 1, - sym__call_signature, - STATE(4407), 1, - aux_sym_export_statement_repeat1, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3793), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [21083] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1297), 1, - sym_decorator, - STATE(2787), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3307), 1, - sym_formal_parameters, - STATE(4102), 1, - sym__call_signature, - STATE(4407), 1, - aux_sym_export_statement_repeat1, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3795), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [21199] = 5, - ACTIONS(3658), 1, + [20967] = 5, + ACTIONS(3666), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158488,7 +158316,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -158505,100 +158332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [21265] = 30, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_abstract, - ACTIONS(3707), 1, - anon_sym_export, - ACTIONS(3709), 1, - anon_sym_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_async, - ACTIONS(3719), 1, - anon_sym_new, - ACTIONS(3723), 1, - anon_sym_static, - ACTIONS(3725), 1, - anon_sym_readonly, - ACTIONS(3731), 1, - anon_sym_override, - STATE(1297), 1, - sym_decorator, - STATE(2787), 1, - sym_accessibility_modifier, - STATE(2800), 1, - sym_override_modifier, - STATE(3307), 1, - sym_formal_parameters, - STATE(4102), 1, - sym__call_signature, - STATE(4407), 1, - aux_sym_export_statement_repeat1, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3721), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3727), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3797), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3135), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4281), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3705), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [21381] = 5, + [21033] = 5, ACTIONS(3674), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158635,7 +158377,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -158652,11 +158393,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [21447] = 6, + [21099] = 6, ACTIONS(3533), 1, anon_sym_EQ, - ACTIONS(3615), 1, + ACTIONS(3616), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, @@ -158677,7 +158419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158697,7 +158439,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -158714,14 +158455,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [21515] = 5, + [21167] = 5, ACTIONS(3650), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158758,7 +158500,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -158775,13 +158516,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, - [21581] = 30, + [21233] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -158805,19 +158547,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3727), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3793), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3729), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3118), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4281), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3705), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21349] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(3312), 1, + anon_sym_abstract, + ACTIONS(3707), 1, + anon_sym_export, + ACTIONS(3709), 1, + anon_sym_STAR, + ACTIONS(3715), 1, + anon_sym_LBRACK, + ACTIONS(3717), 1, + anon_sym_async, + ACTIONS(3719), 1, + anon_sym_new, + ACTIONS(3723), 1, + anon_sym_static, + ACTIONS(3725), 1, + anon_sym_readonly, + ACTIONS(3731), 1, + anon_sym_override, + STATE(1285), 1, + sym_decorator, + STATE(2786), 1, + sym_accessibility_modifier, + STATE(2806), 1, + sym_override_modifier, + STATE(3317), 1, + sym_formal_parameters, + STATE(4078), 1, + sym__call_signature, + STATE(4391), 1, + aux_sym_export_statement_repeat1, + STATE(5224), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3727), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3795), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3729), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3118), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4281), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3705), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21465] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(3312), 1, + anon_sym_abstract, + ACTIONS(3707), 1, + anon_sym_export, + ACTIONS(3709), 1, + anon_sym_STAR, + ACTIONS(3715), 1, + anon_sym_LBRACK, + ACTIONS(3717), 1, + anon_sym_async, + ACTIONS(3719), 1, + anon_sym_new, + ACTIONS(3723), 1, + anon_sym_static, + ACTIONS(3725), 1, + anon_sym_readonly, + ACTIONS(3731), 1, + anon_sym_override, + STATE(1285), 1, + sym_decorator, + STATE(2786), 1, + sym_accessibility_modifier, + STATE(2806), 1, + sym_override_modifier, + STATE(3317), 1, + sym_formal_parameters, + STATE(4078), 1, + sym__call_signature, + STATE(4391), 1, + aux_sym_export_statement_repeat1, + STATE(5224), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3727), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3797), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(3729), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3118), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4281), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3705), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21581] = 30, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(3312), 1, + anon_sym_abstract, + ACTIONS(3707), 1, + anon_sym_export, + ACTIONS(3709), 1, + anon_sym_STAR, + ACTIONS(3715), 1, + anon_sym_LBRACK, + ACTIONS(3717), 1, + anon_sym_async, + ACTIONS(3719), 1, + anon_sym_new, + ACTIONS(3723), 1, + anon_sym_static, + ACTIONS(3725), 1, + anon_sym_readonly, + ACTIONS(3731), 1, + anon_sym_override, + STATE(1285), 1, + sym_decorator, + STATE(2786), 1, + sym_accessibility_modifier, + STATE(2806), 1, + sym_override_modifier, + STATE(3317), 1, + sym_formal_parameters, + STATE(4078), 1, + sym__call_signature, + STATE(4391), 1, + aux_sym_export_statement_repeat1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -158838,7 +158838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -158865,9 +158865,9 @@ static const uint16_t ts_small_parse_table[] = { [21697] = 30, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -158891,19 +158891,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -158924,7 +158924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -158949,7 +158949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [21813] = 5, - ACTIONS(3773), 1, + ACTIONS(3757), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -158970,7 +158970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158990,7 +158990,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159007,9 +159006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, [21878] = 5, - ACTIONS(3751), 1, + ACTIONS(3777), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -159030,7 +159030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159050,7 +159050,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159067,9 +159066,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, [21943] = 5, - ACTIONS(3763), 1, + ACTIONS(3749), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -159090,7 +159090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159110,7 +159110,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159127,9 +159126,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, [22008] = 5, - ACTIONS(3787), 1, + ACTIONS(3789), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -159150,7 +159150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159170,7 +159170,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159187,9 +159186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, [22073] = 5, - ACTIONS(3771), 1, + ACTIONS(3791), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -159210,7 +159210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159230,7 +159230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159247,9 +159246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, [22138] = 5, - ACTIONS(3761), 1, + ACTIONS(3781), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -159270,7 +159270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159290,7 +159290,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159307,9 +159306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, [22203] = 5, - ACTIONS(3789), 1, + ACTIONS(3769), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -159330,7 +159330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159350,7 +159350,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159367,9 +159366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, [22268] = 5, - ACTIONS(3785), 1, + ACTIONS(3755), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -159390,7 +159390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159410,7 +159410,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159427,9 +159426,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, [22333] = 5, - ACTIONS(3779), 1, + ACTIONS(3751), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -159450,7 +159450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159470,7 +159470,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159487,9 +159486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, [22398] = 5, - ACTIONS(3791), 1, + ACTIONS(3785), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -159510,7 +159510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3515), 15, + ACTIONS(3510), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159530,7 +159530,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -159547,13 +159546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK_QMARK, [22463] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -159577,19 +159577,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -159607,11 +159607,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3767), 6, + STATE(3785), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -159634,9 +159634,9 @@ static const uint16_t ts_small_parse_table[] = { [22575] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -159660,19 +159660,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -159690,11 +159690,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3809), 6, + STATE(3768), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -159717,9 +159717,9 @@ static const uint16_t ts_small_parse_table[] = { [22687] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -159743,19 +159743,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -159773,11 +159773,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3783), 6, + STATE(3813), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -159800,9 +159800,9 @@ static const uint16_t ts_small_parse_table[] = { [22799] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -159826,19 +159826,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -159856,11 +159856,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3763), 6, + STATE(3757), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -159883,9 +159883,9 @@ static const uint16_t ts_small_parse_table[] = { [22911] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -159909,19 +159909,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -159939,11 +159939,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3831), 6, + STATE(3835), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -159966,9 +159966,9 @@ static const uint16_t ts_small_parse_table[] = { [23023] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -159992,19 +159992,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -160022,11 +160022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4281), 6, + STATE(3906), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -160049,9 +160049,9 @@ static const uint16_t ts_small_parse_table[] = { [23135] = 29, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(2570), 1, anon_sym_LT, @@ -160075,19 +160075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3731), 1, anon_sym_override, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(2787), 1, + STATE(2786), 1, sym_accessibility_modifier, - STATE(2800), 1, + STATE(2806), 1, sym_override_modifier, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4102), 1, + STATE(4078), 1, sym__call_signature, - STATE(4407), 1, + STATE(4391), 1, aux_sym_export_statement_repeat1, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -160105,11 +160105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3135), 3, + STATE(3118), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(3756), 6, + STATE(4281), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -160129,89 +160129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23247] = 29, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(3803), 1, - anon_sym_STAR, - ACTIONS(3805), 1, - anon_sym_RBRACE, - ACTIONS(3807), 1, - anon_sym_SEMI, - ACTIONS(3809), 1, - anon_sym_async, - ACTIONS(3813), 1, - anon_sym_AT, - ACTIONS(3815), 1, - anon_sym_static, - ACTIONS(3817), 1, - anon_sym_readonly, - ACTIONS(3821), 1, - anon_sym_declare, - ACTIONS(3823), 1, - anon_sym_abstract, - ACTIONS(3825), 1, - anon_sym_accessor, - STATE(2421), 1, - aux_sym_export_statement_repeat1, - STATE(2709), 1, - sym_method_definition, - STATE(2732), 1, - sym_accessibility_modifier, - STATE(2808), 1, - sym_decorator, - STATE(2810), 1, - sym_override_modifier, - STATE(4485), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3819), 2, - anon_sym_get, - anon_sym_set, - STATE(1491), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3059), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4765), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3705), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [23358] = 33, + [23247] = 33, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2292), 1, @@ -160240,42 +160158,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2420), 1, anon_sym_enum, - ACTIONS(3827), 1, + ACTIONS(3803), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3805), 1, anon_sym_default, - ACTIONS(3831), 1, + ACTIONS(3807), 1, anon_sym_type, - ACTIONS(3833), 1, + ACTIONS(3809), 1, anon_sym_EQ, - ACTIONS(3835), 1, + ACTIONS(3811), 1, anon_sym_as, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3840), 1, + ACTIONS(3816), 1, anon_sym_RBRACE, - ACTIONS(3845), 1, + ACTIONS(3821), 1, anon_sym_module, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, STATE(3915), 1, sym_declaration, STATE(3916), 1, sym_internal_module, - STATE(4322), 1, + STATE(4323), 1, aux_sym_export_statement_repeat1, - STATE(4515), 1, + STATE(4452), 1, sym_export_clause, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4823), 1, aux_sym_object_repeat1, - STATE(5240), 1, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(5246), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -160297,93 +160215,89 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23477] = 33, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2292), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, - anon_sym_namespace, - ACTIONS(2396), 1, - anon_sym_import, - ACTIONS(2398), 1, - anon_sym_var, - ACTIONS(2400), 1, - anon_sym_let, - ACTIONS(2402), 1, - anon_sym_const, - ACTIONS(2404), 1, - anon_sym_class, - ACTIONS(2406), 1, - anon_sym_async, - ACTIONS(2408), 1, - anon_sym_function, - ACTIONS(2410), 1, - anon_sym_declare, - ACTIONS(2414), 1, - anon_sym_abstract, - ACTIONS(2418), 1, - anon_sym_interface, - ACTIONS(2420), 1, - anon_sym_enum, - ACTIONS(3827), 1, + [23366] = 29, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(3715), 1, + anon_sym_LBRACK, + ACTIONS(3731), 1, + anon_sym_override, + ACTIONS(3823), 1, anon_sym_STAR, + ACTIONS(3825), 1, + anon_sym_RBRACE, + ACTIONS(3827), 1, + anon_sym_SEMI, ACTIONS(3829), 1, - anon_sym_default, - ACTIONS(3831), 1, - anon_sym_type, + anon_sym_async, ACTIONS(3833), 1, - anon_sym_EQ, + anon_sym_AT, ACTIONS(3835), 1, - anon_sym_as, + anon_sym_static, ACTIONS(3837), 1, - anon_sym_COMMA, + anon_sym_readonly, + ACTIONS(3841), 1, + anon_sym_declare, + ACTIONS(3843), 1, + anon_sym_abstract, ACTIONS(3845), 1, - anon_sym_module, - ACTIONS(3847), 1, - anon_sym_RBRACE, - STATE(1297), 1, - sym_decorator, - STATE(3915), 1, - sym_declaration, - STATE(3916), 1, - sym_internal_module, - STATE(4322), 1, + anon_sym_accessor, + STATE(2424), 1, aux_sym_export_statement_repeat1, - STATE(4515), 1, - sym_export_clause, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - STATE(5240), 1, - sym_namespace_export, + STATE(2674), 1, + sym_method_definition, + STATE(2733), 1, + sym_accessibility_modifier, + STATE(2815), 1, + sym_decorator, + STATE(2817), 1, + sym_override_modifier, + STATE(4444), 1, + sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3912), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [23596] = 33, + ACTIONS(3298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3831), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3839), 2, + anon_sym_get, + anon_sym_set, + STATE(1489), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3729), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3060), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4675), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3705), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23477] = 33, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2292), 1, @@ -160412,42 +160326,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2420), 1, anon_sym_enum, - ACTIONS(3827), 1, + ACTIONS(3803), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3805), 1, anon_sym_default, - ACTIONS(3831), 1, + ACTIONS(3807), 1, anon_sym_type, - ACTIONS(3833), 1, + ACTIONS(3809), 1, anon_sym_EQ, - ACTIONS(3835), 1, + ACTIONS(3811), 1, anon_sym_as, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3845), 1, + ACTIONS(3821), 1, anon_sym_module, - ACTIONS(3850), 1, + ACTIONS(3847), 1, anon_sym_RBRACE, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, STATE(3915), 1, sym_declaration, STATE(3916), 1, sym_internal_module, - STATE(4322), 1, + STATE(4323), 1, aux_sym_export_statement_repeat1, - STATE(4515), 1, + STATE(4452), 1, sym_export_clause, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, - STATE(5240), 1, + STATE(5246), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -160469,75 +160383,239 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23715] = 29, - ACTIONS(3856), 1, + [23596] = 29, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(3715), 1, + anon_sym_LBRACK, + ACTIONS(3731), 1, + anon_sym_override, + ACTIONS(3823), 1, anon_sym_STAR, - ACTIONS(3859), 1, + ACTIONS(3829), 1, + anon_sym_async, + ACTIONS(3833), 1, + anon_sym_AT, + ACTIONS(3835), 1, + anon_sym_static, + ACTIONS(3837), 1, + anon_sym_readonly, + ACTIONS(3841), 1, + anon_sym_declare, + ACTIONS(3843), 1, + anon_sym_abstract, + ACTIONS(3845), 1, + anon_sym_accessor, + ACTIONS(3850), 1, anon_sym_RBRACE, - ACTIONS(3861), 1, + ACTIONS(3852), 1, anon_sym_SEMI, - ACTIONS(3864), 1, - anon_sym_LBRACK, - ACTIONS(3867), 1, + STATE(2424), 1, + aux_sym_export_statement_repeat1, + STATE(2674), 1, + sym_method_definition, + STATE(2733), 1, + sym_accessibility_modifier, + STATE(2815), 1, + sym_decorator, + STATE(2817), 1, + sym_override_modifier, + STATE(4444), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3831), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3839), 2, + anon_sym_get, + anon_sym_set, + STATE(1496), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3729), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3060), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4675), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3705), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23707] = 29, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(3870), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(3873), 1, + ACTIONS(3715), 1, + anon_sym_LBRACK, + ACTIONS(3731), 1, + anon_sym_override, + ACTIONS(3823), 1, + anon_sym_STAR, + ACTIONS(3829), 1, anon_sym_async, - ACTIONS(3882), 1, + ACTIONS(3833), 1, anon_sym_AT, - ACTIONS(3885), 1, + ACTIONS(3835), 1, anon_sym_static, - ACTIONS(3888), 1, + ACTIONS(3837), 1, anon_sym_readonly, - ACTIONS(3894), 1, + ACTIONS(3841), 1, anon_sym_declare, - ACTIONS(3900), 1, + ACTIONS(3843), 1, + anon_sym_abstract, + ACTIONS(3845), 1, + anon_sym_accessor, + ACTIONS(3854), 1, + anon_sym_RBRACE, + ACTIONS(3856), 1, + anon_sym_SEMI, + STATE(2424), 1, + aux_sym_export_statement_repeat1, + STATE(2674), 1, + sym_method_definition, + STATE(2733), 1, + sym_accessibility_modifier, + STATE(2815), 1, + sym_decorator, + STATE(2817), 1, + sym_override_modifier, + STATE(4444), 1, + sym_method_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3298), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3831), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3839), 2, + anon_sym_get, + anon_sym_set, + STATE(1491), 2, + sym_class_static_block, + aux_sym_class_body_repeat1, + ACTIONS(3729), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3060), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4675), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3705), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23818] = 29, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(3715), 1, + anon_sym_LBRACK, + ACTIONS(3731), 1, anon_sym_override, - ACTIONS(3903), 1, + ACTIONS(3823), 1, + anon_sym_STAR, + ACTIONS(3829), 1, + anon_sym_async, + ACTIONS(3833), 1, + anon_sym_AT, + ACTIONS(3835), 1, + anon_sym_static, + ACTIONS(3837), 1, + anon_sym_readonly, + ACTIONS(3841), 1, + anon_sym_declare, + ACTIONS(3843), 1, anon_sym_abstract, - ACTIONS(3906), 1, + ACTIONS(3845), 1, anon_sym_accessor, - STATE(2421), 1, + ACTIONS(3858), 1, + anon_sym_RBRACE, + ACTIONS(3860), 1, + anon_sym_SEMI, + STATE(2424), 1, aux_sym_export_statement_repeat1, - STATE(2709), 1, + STATE(2674), 1, sym_method_definition, - STATE(2732), 1, + STATE(2733), 1, sym_accessibility_modifier, - STATE(2808), 1, + STATE(2815), 1, sym_decorator, - STATE(2810), 1, + STATE(2817), 1, sym_override_modifier, - STATE(4485), 1, + STATE(4444), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3876), 2, + ACTIONS(3298), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3879), 2, + ACTIONS(3831), 2, sym_number, sym_private_property_identifier, - ACTIONS(3891), 2, + ACTIONS(3839), 2, anon_sym_get, anon_sym_set, - STATE(1485), 2, + STATE(1492), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3897), 3, + ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3059), 3, + STATE(3060), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4765), 3, + STATE(4675), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3853), 13, + ACTIONS(3705), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160551,7 +160629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23826] = 33, + [23929] = 33, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2292), 1, @@ -160580,42 +160658,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2420), 1, anon_sym_enum, - ACTIONS(3827), 1, + ACTIONS(3803), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3805), 1, anon_sym_default, - ACTIONS(3831), 1, + ACTIONS(3807), 1, anon_sym_type, - ACTIONS(3833), 1, + ACTIONS(3809), 1, anon_sym_EQ, - ACTIONS(3835), 1, + ACTIONS(3811), 1, anon_sym_as, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3845), 1, + ACTIONS(3821), 1, anon_sym_module, - ACTIONS(3909), 1, + ACTIONS(3862), 1, anon_sym_RBRACE, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, STATE(3915), 1, sym_declaration, STATE(3916), 1, sym_internal_module, - STATE(4322), 1, + STATE(4323), 1, aux_sym_export_statement_repeat1, - STATE(4515), 1, + STATE(4452), 1, sym_export_clause, - STATE(4824), 1, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(5246), 1, + sym_namespace_export, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3819), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(3912), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [24048] = 33, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2292), 1, + anon_sym_LBRACE, + ACTIONS(2394), 1, + anon_sym_namespace, + ACTIONS(2396), 1, + anon_sym_import, + ACTIONS(2398), 1, + anon_sym_var, + ACTIONS(2400), 1, + anon_sym_let, + ACTIONS(2402), 1, + anon_sym_const, + ACTIONS(2404), 1, + anon_sym_class, + ACTIONS(2406), 1, + anon_sym_async, + ACTIONS(2408), 1, + anon_sym_function, + ACTIONS(2410), 1, + anon_sym_declare, + ACTIONS(2414), 1, + anon_sym_abstract, + ACTIONS(2418), 1, + anon_sym_interface, + ACTIONS(2420), 1, + anon_sym_enum, + ACTIONS(3803), 1, + anon_sym_STAR, + ACTIONS(3805), 1, + anon_sym_default, + ACTIONS(3807), 1, + anon_sym_type, + ACTIONS(3809), 1, + anon_sym_EQ, + ACTIONS(3811), 1, + anon_sym_as, + ACTIONS(3813), 1, + anon_sym_COMMA, + ACTIONS(3821), 1, + anon_sym_module, + ACTIONS(3865), 1, + anon_sym_RBRACE, + STATE(1285), 1, + sym_decorator, + STATE(3915), 1, + sym_declaration, + STATE(3916), 1, + sym_internal_module, + STATE(4323), 1, + aux_sym_export_statement_repeat1, + STATE(4452), 1, + sym_export_clause, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(5240), 1, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(5246), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -160637,46 +160801,46 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [23945] = 29, - ACTIONS(1635), 1, + [24167] = 29, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3715), 1, anon_sym_LBRACK, ACTIONS(3731), 1, anon_sym_override, - ACTIONS(3803), 1, + ACTIONS(3823), 1, anon_sym_STAR, - ACTIONS(3809), 1, + ACTIONS(3829), 1, anon_sym_async, - ACTIONS(3813), 1, + ACTIONS(3833), 1, anon_sym_AT, - ACTIONS(3815), 1, + ACTIONS(3835), 1, anon_sym_static, - ACTIONS(3817), 1, + ACTIONS(3837), 1, anon_sym_readonly, - ACTIONS(3821), 1, + ACTIONS(3841), 1, anon_sym_declare, - ACTIONS(3823), 1, + ACTIONS(3843), 1, anon_sym_abstract, - ACTIONS(3825), 1, + ACTIONS(3845), 1, anon_sym_accessor, - ACTIONS(3912), 1, - anon_sym_RBRACE, - ACTIONS(3914), 1, + ACTIONS(3856), 1, anon_sym_SEMI, - STATE(2421), 1, + ACTIONS(3868), 1, + anon_sym_RBRACE, + STATE(2424), 1, aux_sym_export_statement_repeat1, - STATE(2709), 1, + STATE(2674), 1, sym_method_definition, - STATE(2732), 1, + STATE(2733), 1, sym_accessibility_modifier, - STATE(2808), 1, + STATE(2815), 1, sym_decorator, - STATE(2810), 1, + STATE(2817), 1, sym_override_modifier, - STATE(4485), 1, + STATE(4444), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -160684,24 +160848,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3298), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3831), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 2, + ACTIONS(3839), 2, anon_sym_get, anon_sym_set, - STATE(1485), 2, + STATE(1491), 2, sym_class_static_block, aux_sym_class_body_repeat1, ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3059), 3, + STATE(3060), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4765), 3, + STATE(4675), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -160719,46 +160883,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24056] = 29, - ACTIONS(1635), 1, + [24278] = 29, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3715), 1, anon_sym_LBRACK, ACTIONS(3731), 1, anon_sym_override, - ACTIONS(3803), 1, + ACTIONS(3823), 1, anon_sym_STAR, - ACTIONS(3809), 1, + ACTIONS(3829), 1, anon_sym_async, - ACTIONS(3813), 1, + ACTIONS(3833), 1, anon_sym_AT, - ACTIONS(3815), 1, + ACTIONS(3835), 1, anon_sym_static, - ACTIONS(3817), 1, + ACTIONS(3837), 1, anon_sym_readonly, - ACTIONS(3821), 1, + ACTIONS(3841), 1, anon_sym_declare, - ACTIONS(3823), 1, + ACTIONS(3843), 1, anon_sym_abstract, - ACTIONS(3825), 1, + ACTIONS(3845), 1, anon_sym_accessor, - ACTIONS(3914), 1, - anon_sym_SEMI, - ACTIONS(3916), 1, + ACTIONS(3870), 1, anon_sym_RBRACE, - STATE(2421), 1, + ACTIONS(3872), 1, + anon_sym_SEMI, + STATE(2424), 1, aux_sym_export_statement_repeat1, - STATE(2709), 1, + STATE(2674), 1, sym_method_definition, - STATE(2732), 1, + STATE(2733), 1, sym_accessibility_modifier, - STATE(2808), 1, + STATE(2815), 1, sym_decorator, - STATE(2810), 1, + STATE(2817), 1, sym_override_modifier, - STATE(4485), 1, + STATE(4444), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -160766,10 +160930,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3298), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3831), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 2, + ACTIONS(3839), 2, anon_sym_get, anon_sym_set, STATE(1485), 2, @@ -160779,11 +160943,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3059), 3, + STATE(3060), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4765), 3, + STATE(4675), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -160801,75 +160965,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24167] = 29, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(3803), 1, + [24389] = 29, + ACTIONS(3877), 1, anon_sym_STAR, - ACTIONS(3809), 1, + ACTIONS(3880), 1, + anon_sym_RBRACE, + ACTIONS(3882), 1, + anon_sym_SEMI, + ACTIONS(3885), 1, + anon_sym_LBRACK, + ACTIONS(3888), 1, anon_sym_async, - ACTIONS(3813), 1, + ACTIONS(3894), 1, + anon_sym_DQUOTE, + ACTIONS(3897), 1, + anon_sym_SQUOTE, + ACTIONS(3903), 1, anon_sym_AT, - ACTIONS(3815), 1, + ACTIONS(3906), 1, anon_sym_static, - ACTIONS(3817), 1, + ACTIONS(3909), 1, anon_sym_readonly, - ACTIONS(3821), 1, + ACTIONS(3915), 1, anon_sym_declare, - ACTIONS(3823), 1, + ACTIONS(3921), 1, + anon_sym_override, + ACTIONS(3924), 1, anon_sym_abstract, - ACTIONS(3825), 1, + ACTIONS(3927), 1, anon_sym_accessor, - ACTIONS(3918), 1, - anon_sym_RBRACE, - ACTIONS(3920), 1, - anon_sym_SEMI, - STATE(2421), 1, + STATE(2424), 1, aux_sym_export_statement_repeat1, - STATE(2709), 1, + STATE(2674), 1, sym_method_definition, - STATE(2732), 1, + STATE(2733), 1, sym_accessibility_modifier, - STATE(2808), 1, + STATE(2815), 1, sym_decorator, - STATE(2810), 1, + STATE(2817), 1, sym_override_modifier, - STATE(4485), 1, + STATE(4444), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3298), 2, + ACTIONS(3891), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3900), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 2, + ACTIONS(3912), 2, anon_sym_get, anon_sym_set, - STATE(1487), 2, + STATE(1491), 2, sym_class_static_block, aux_sym_class_body_repeat1, - ACTIONS(3729), 3, + ACTIONS(3918), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3059), 3, + STATE(3060), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4765), 3, + STATE(4675), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(3705), 13, + ACTIONS(3874), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -160883,46 +161047,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24278] = 29, - ACTIONS(1635), 1, + [24500] = 29, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3715), 1, anon_sym_LBRACK, ACTIONS(3731), 1, anon_sym_override, - ACTIONS(3803), 1, + ACTIONS(3823), 1, anon_sym_STAR, - ACTIONS(3809), 1, + ACTIONS(3829), 1, anon_sym_async, - ACTIONS(3813), 1, + ACTIONS(3833), 1, anon_sym_AT, - ACTIONS(3815), 1, + ACTIONS(3835), 1, anon_sym_static, - ACTIONS(3817), 1, + ACTIONS(3837), 1, anon_sym_readonly, - ACTIONS(3821), 1, + ACTIONS(3841), 1, anon_sym_declare, - ACTIONS(3823), 1, + ACTIONS(3843), 1, anon_sym_abstract, - ACTIONS(3825), 1, + ACTIONS(3845), 1, anon_sym_accessor, - ACTIONS(3914), 1, + ACTIONS(3856), 1, anon_sym_SEMI, - ACTIONS(3922), 1, + ACTIONS(3930), 1, anon_sym_RBRACE, - STATE(2421), 1, + STATE(2424), 1, aux_sym_export_statement_repeat1, - STATE(2709), 1, + STATE(2674), 1, sym_method_definition, - STATE(2732), 1, + STATE(2733), 1, sym_accessibility_modifier, - STATE(2808), 1, + STATE(2815), 1, sym_decorator, - STATE(2810), 1, + STATE(2817), 1, sym_override_modifier, - STATE(4485), 1, + STATE(4444), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -160930,24 +161094,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3298), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3831), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 2, + ACTIONS(3839), 2, anon_sym_get, anon_sym_set, - STATE(1485), 2, + STATE(1491), 2, sym_class_static_block, aux_sym_class_body_repeat1, ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3059), 3, + STATE(3060), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4765), 3, + STATE(4675), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -160965,46 +161129,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24389] = 29, - ACTIONS(1635), 1, + [24611] = 29, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3715), 1, anon_sym_LBRACK, ACTIONS(3731), 1, anon_sym_override, - ACTIONS(3803), 1, + ACTIONS(3823), 1, anon_sym_STAR, - ACTIONS(3809), 1, + ACTIONS(3829), 1, anon_sym_async, - ACTIONS(3813), 1, + ACTIONS(3833), 1, anon_sym_AT, - ACTIONS(3815), 1, + ACTIONS(3835), 1, anon_sym_static, - ACTIONS(3817), 1, + ACTIONS(3837), 1, anon_sym_readonly, - ACTIONS(3821), 1, + ACTIONS(3841), 1, anon_sym_declare, - ACTIONS(3823), 1, + ACTIONS(3843), 1, anon_sym_abstract, - ACTIONS(3825), 1, + ACTIONS(3845), 1, anon_sym_accessor, - ACTIONS(3914), 1, - anon_sym_SEMI, - ACTIONS(3924), 1, + ACTIONS(3932), 1, anon_sym_RBRACE, - STATE(2421), 1, + ACTIONS(3934), 1, + anon_sym_SEMI, + STATE(2424), 1, aux_sym_export_statement_repeat1, - STATE(2709), 1, + STATE(2674), 1, sym_method_definition, - STATE(2732), 1, + STATE(2733), 1, sym_accessibility_modifier, - STATE(2808), 1, + STATE(2815), 1, sym_decorator, - STATE(2810), 1, + STATE(2817), 1, sym_override_modifier, - STATE(4485), 1, + STATE(4444), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -161012,24 +161176,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3298), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3831), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 2, + ACTIONS(3839), 2, anon_sym_get, anon_sym_set, - STATE(1485), 2, + STATE(1494), 2, sym_class_static_block, aux_sym_class_body_repeat1, ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3059), 3, + STATE(3060), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4765), 3, + STATE(4675), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -161047,46 +161211,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24500] = 29, - ACTIONS(1635), 1, + [24722] = 29, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3715), 1, anon_sym_LBRACK, ACTIONS(3731), 1, anon_sym_override, - ACTIONS(3803), 1, + ACTIONS(3823), 1, anon_sym_STAR, - ACTIONS(3809), 1, + ACTIONS(3829), 1, anon_sym_async, - ACTIONS(3813), 1, + ACTIONS(3833), 1, anon_sym_AT, - ACTIONS(3815), 1, + ACTIONS(3835), 1, anon_sym_static, - ACTIONS(3817), 1, + ACTIONS(3837), 1, anon_sym_readonly, - ACTIONS(3821), 1, + ACTIONS(3841), 1, anon_sym_declare, - ACTIONS(3823), 1, + ACTIONS(3843), 1, anon_sym_abstract, - ACTIONS(3825), 1, + ACTIONS(3845), 1, anon_sym_accessor, - ACTIONS(3926), 1, - anon_sym_RBRACE, - ACTIONS(3928), 1, + ACTIONS(3856), 1, anon_sym_SEMI, - STATE(2421), 1, + ACTIONS(3936), 1, + anon_sym_RBRACE, + STATE(2424), 1, aux_sym_export_statement_repeat1, - STATE(2709), 1, + STATE(2674), 1, sym_method_definition, - STATE(2732), 1, + STATE(2733), 1, sym_accessibility_modifier, - STATE(2808), 1, + STATE(2815), 1, sym_decorator, - STATE(2810), 1, + STATE(2817), 1, sym_override_modifier, - STATE(4485), 1, + STATE(4444), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -161094,24 +161258,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3298), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3831), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 2, + ACTIONS(3839), 2, anon_sym_get, anon_sym_set, - STATE(1490), 2, + STATE(1491), 2, sym_class_static_block, aux_sym_class_body_repeat1, ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3059), 3, + STATE(3060), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4765), 3, + STATE(4675), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -161129,7 +161293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24611] = 33, + [24833] = 33, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2292), 1, @@ -161158,42 +161322,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2420), 1, anon_sym_enum, - ACTIONS(3827), 1, + ACTIONS(3803), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3805), 1, anon_sym_default, - ACTIONS(3831), 1, + ACTIONS(3807), 1, anon_sym_type, - ACTIONS(3833), 1, + ACTIONS(3809), 1, anon_sym_EQ, - ACTIONS(3835), 1, + ACTIONS(3811), 1, anon_sym_as, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3845), 1, + ACTIONS(3821), 1, anon_sym_module, - ACTIONS(3930), 1, + ACTIONS(3938), 1, anon_sym_RBRACE, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, STATE(3915), 1, sym_declaration, STATE(3916), 1, sym_internal_module, - STATE(4322), 1, + STATE(4323), 1, aux_sym_export_statement_repeat1, - STATE(4515), 1, + STATE(4452), 1, sym_export_clause, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, - STATE(5240), 1, + STATE(5246), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -161215,210 +161379,46 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [24730] = 29, - ACTIONS(1635), 1, + [24952] = 29, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3715), 1, anon_sym_LBRACK, ACTIONS(3731), 1, anon_sym_override, - ACTIONS(3803), 1, - anon_sym_STAR, - ACTIONS(3809), 1, - anon_sym_async, - ACTIONS(3813), 1, - anon_sym_AT, - ACTIONS(3815), 1, - anon_sym_static, - ACTIONS(3817), 1, - anon_sym_readonly, - ACTIONS(3821), 1, - anon_sym_declare, ACTIONS(3823), 1, - anon_sym_abstract, - ACTIONS(3825), 1, - anon_sym_accessor, - ACTIONS(3914), 1, - anon_sym_SEMI, - ACTIONS(3933), 1, - anon_sym_RBRACE, - STATE(2421), 1, - aux_sym_export_statement_repeat1, - STATE(2709), 1, - sym_method_definition, - STATE(2732), 1, - sym_accessibility_modifier, - STATE(2808), 1, - sym_decorator, - STATE(2810), 1, - sym_override_modifier, - STATE(4485), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3819), 2, - anon_sym_get, - anon_sym_set, - STATE(1485), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3059), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4765), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3705), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [24841] = 29, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(3803), 1, anon_sym_STAR, - ACTIONS(3809), 1, + ACTIONS(3829), 1, anon_sym_async, - ACTIONS(3813), 1, + ACTIONS(3833), 1, anon_sym_AT, - ACTIONS(3815), 1, + ACTIONS(3835), 1, anon_sym_static, - ACTIONS(3817), 1, + ACTIONS(3837), 1, anon_sym_readonly, - ACTIONS(3821), 1, + ACTIONS(3841), 1, anon_sym_declare, - ACTIONS(3823), 1, + ACTIONS(3843), 1, anon_sym_abstract, - ACTIONS(3825), 1, + ACTIONS(3845), 1, anon_sym_accessor, - ACTIONS(3935), 1, - anon_sym_RBRACE, - ACTIONS(3937), 1, + ACTIONS(3856), 1, anon_sym_SEMI, - STATE(2421), 1, - aux_sym_export_statement_repeat1, - STATE(2709), 1, - sym_method_definition, - STATE(2732), 1, - sym_accessibility_modifier, - STATE(2808), 1, - sym_decorator, - STATE(2810), 1, - sym_override_modifier, - STATE(4485), 1, - sym_method_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3811), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3819), 2, - anon_sym_get, - anon_sym_set, - STATE(1488), 2, - sym_class_static_block, - aux_sym_class_body_repeat1, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3059), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4765), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3705), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [24952] = 29, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3715), 1, - anon_sym_LBRACK, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(3803), 1, - anon_sym_STAR, - ACTIONS(3809), 1, - anon_sym_async, - ACTIONS(3813), 1, - anon_sym_AT, - ACTIONS(3815), 1, - anon_sym_static, - ACTIONS(3817), 1, - anon_sym_readonly, - ACTIONS(3821), 1, - anon_sym_declare, - ACTIONS(3823), 1, - anon_sym_abstract, - ACTIONS(3825), 1, - anon_sym_accessor, - ACTIONS(3939), 1, - anon_sym_RBRACE, ACTIONS(3941), 1, - anon_sym_SEMI, - STATE(2421), 1, + anon_sym_RBRACE, + STATE(2424), 1, aux_sym_export_statement_repeat1, - STATE(2709), 1, + STATE(2674), 1, sym_method_definition, - STATE(2732), 1, + STATE(2733), 1, sym_accessibility_modifier, - STATE(2808), 1, + STATE(2815), 1, sym_decorator, - STATE(2810), 1, + STATE(2817), 1, sym_override_modifier, - STATE(4485), 1, + STATE(4444), 1, sym_method_signature, ACTIONS(5), 2, sym_html_comment, @@ -161426,24 +161426,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3298), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3811), 2, + ACTIONS(3831), 2, sym_number, sym_private_property_identifier, - ACTIONS(3819), 2, + ACTIONS(3839), 2, anon_sym_get, anon_sym_set, - STATE(1494), 2, + STATE(1491), 2, sym_class_static_block, aux_sym_class_body_repeat1, ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3059), 3, + STATE(3060), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4765), 3, + STATE(4675), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, @@ -161468,9 +161468,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(251), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(3282), 1, anon_sym_LBRACE, @@ -161486,13 +161486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(3961), 1, anon_sym_override, - STATE(2781), 1, + STATE(2785), 1, sym_accessibility_modifier, - STATE(2816), 1, + STATE(2801), 1, sym_override_modifier, - STATE(4526), 1, + STATE(4524), 1, aux_sym_object_repeat1, - STATE(4878), 1, + STATE(4884), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -161511,15 +161511,15 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym__property_name, sym_computed_property_name, - STATE(4567), 3, + STATE(4562), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5136), 3, + STATE(5127), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5595), 3, + STATE(5589), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -161538,38 +161538,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25165] = 25, + [25165] = 13, + ACTIONS(827), 1, + anon_sym_BQUOTE, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(3973), 1, + anon_sym_QMARK_DOT, + ACTIONS(3975), 1, + anon_sym_LT, + STATE(1638), 1, + sym_type_arguments, + STATE(1658), 1, + sym_template_string, + STATE(1668), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3963), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3965), 27, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + anon_sym_implements, + [25243] = 25, ACTIONS(233), 1, anon_sym_STAR, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(251), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(3282), 1, anon_sym_LBRACE, ACTIONS(3947), 1, anon_sym_LBRACK, - ACTIONS(3965), 1, + ACTIONS(3979), 1, anon_sym_RBRACE, - ACTIONS(3967), 1, + ACTIONS(3981), 1, anon_sym_async, - ACTIONS(3969), 1, + ACTIONS(3983), 1, anon_sym_static, - ACTIONS(3971), 1, + ACTIONS(3985), 1, anon_sym_readonly, - ACTIONS(3977), 1, + ACTIONS(3991), 1, anon_sym_override, - STATE(2781), 1, + STATE(2785), 1, sym_accessibility_modifier, - STATE(2816), 1, + STATE(2801), 1, sym_override_modifier, - STATE(4526), 1, + STATE(4524), 1, aux_sym_object_repeat1, - STATE(4878), 1, + STATE(4884), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -161577,10 +161642,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3951), 2, sym_number, sym_private_property_identifier, - ACTIONS(3973), 2, + ACTIONS(3987), 2, anon_sym_get, anon_sym_set, - ACTIONS(3975), 3, + ACTIONS(3989), 3, anon_sym_public, anon_sym_private, anon_sym_protected, @@ -161588,19 +161653,19 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym__property_name, sym_computed_property_name, - STATE(4567), 3, + STATE(4562), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5136), 3, + STATE(5127), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5595), 3, + STATE(5589), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3963), 14, + ACTIONS(3977), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161615,38 +161680,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25267] = 25, + [25345] = 25, ACTIONS(233), 1, anon_sym_STAR, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(251), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(3282), 1, anon_sym_LBRACE, ACTIONS(3947), 1, anon_sym_LBRACK, - ACTIONS(3981), 1, + ACTIONS(3995), 1, anon_sym_RBRACE, - ACTIONS(3983), 1, + ACTIONS(3997), 1, anon_sym_async, - ACTIONS(3985), 1, + ACTIONS(3999), 1, anon_sym_static, - ACTIONS(3987), 1, + ACTIONS(4001), 1, anon_sym_readonly, - ACTIONS(3993), 1, + ACTIONS(4007), 1, anon_sym_override, - STATE(2781), 1, + STATE(2785), 1, sym_accessibility_modifier, - STATE(2816), 1, + STATE(2801), 1, sym_override_modifier, - STATE(4526), 1, + STATE(4524), 1, aux_sym_object_repeat1, - STATE(4878), 1, + STATE(4884), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -161654,10 +161719,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3951), 2, sym_number, sym_private_property_identifier, - ACTIONS(3989), 2, + ACTIONS(4003), 2, anon_sym_get, anon_sym_set, - ACTIONS(3991), 3, + ACTIONS(4005), 3, anon_sym_public, anon_sym_private, anon_sym_protected, @@ -161665,19 +161730,19 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym__property_name, sym_computed_property_name, - STATE(4567), 3, + STATE(4562), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5136), 3, + STATE(5127), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5595), 3, + STATE(5589), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3979), 14, + ACTIONS(3993), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161692,38 +161757,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25369] = 25, + [25447] = 25, ACTIONS(233), 1, anon_sym_STAR, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(251), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(3282), 1, anon_sym_LBRACE, ACTIONS(3947), 1, anon_sym_LBRACK, - ACTIONS(3997), 1, + ACTIONS(4011), 1, anon_sym_RBRACE, - ACTIONS(3999), 1, + ACTIONS(4013), 1, anon_sym_async, - ACTIONS(4001), 1, + ACTIONS(4015), 1, anon_sym_static, - ACTIONS(4003), 1, + ACTIONS(4017), 1, anon_sym_readonly, - ACTIONS(4009), 1, + ACTIONS(4023), 1, anon_sym_override, - STATE(2781), 1, + STATE(2785), 1, sym_accessibility_modifier, - STATE(2816), 1, + STATE(2801), 1, sym_override_modifier, - STATE(4526), 1, + STATE(4524), 1, aux_sym_object_repeat1, - STATE(4878), 1, + STATE(4884), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -161731,10 +161796,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3951), 2, sym_number, sym_private_property_identifier, - ACTIONS(4005), 2, + ACTIONS(4019), 2, anon_sym_get, anon_sym_set, - ACTIONS(4007), 3, + ACTIONS(4021), 3, anon_sym_public, anon_sym_private, anon_sym_protected, @@ -161742,19 +161807,19 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym__property_name, sym_computed_property_name, - STATE(4567), 3, + STATE(4562), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5136), 3, + STATE(5127), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5595), 3, + STATE(5589), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(3995), 14, + ACTIONS(4009), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161769,38 +161834,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25471] = 25, + [25549] = 25, ACTIONS(233), 1, anon_sym_STAR, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(251), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(3282), 1, anon_sym_LBRACE, ACTIONS(3947), 1, anon_sym_LBRACK, - ACTIONS(4013), 1, + ACTIONS(4027), 1, anon_sym_RBRACE, - ACTIONS(4015), 1, + ACTIONS(4029), 1, anon_sym_async, - ACTIONS(4017), 1, + ACTIONS(4031), 1, anon_sym_static, - ACTIONS(4019), 1, + ACTIONS(4033), 1, anon_sym_readonly, - ACTIONS(4025), 1, + ACTIONS(4039), 1, anon_sym_override, - STATE(2781), 1, + STATE(2785), 1, sym_accessibility_modifier, - STATE(2816), 1, + STATE(2801), 1, sym_override_modifier, - STATE(4526), 1, + STATE(4524), 1, aux_sym_object_repeat1, - STATE(4878), 1, + STATE(4884), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -161808,10 +161873,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3951), 2, sym_number, sym_private_property_identifier, - ACTIONS(4021), 2, + ACTIONS(4035), 2, anon_sym_get, anon_sym_set, - ACTIONS(4023), 3, + ACTIONS(4037), 3, anon_sym_public, anon_sym_private, anon_sym_protected, @@ -161819,19 +161884,19 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym__property_name, sym_computed_property_name, - STATE(4567), 3, + STATE(4562), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5136), 3, + STATE(5127), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5595), 3, + STATE(5589), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(4011), 14, + ACTIONS(4025), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -161846,71 +161911,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25573] = 13, - ACTIONS(827), 1, - anon_sym_BQUOTE, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4037), 1, - anon_sym_QMARK_DOT, - ACTIONS(4039), 1, - anon_sym_LT, - STATE(1646), 1, - sym_type_arguments, - STATE(1658), 1, - sym_template_string, - STATE(1668), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4027), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4029), 27, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - anon_sym_implements, [25651] = 25, ACTIONS(233), 1, anon_sym_STAR, @@ -161918,9 +161918,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(251), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(3282), 1, anon_sym_LBRACE, @@ -161936,13 +161936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(4055), 1, anon_sym_override, - STATE(2781), 1, + STATE(2785), 1, sym_accessibility_modifier, - STATE(2816), 1, + STATE(2801), 1, sym_override_modifier, - STATE(4657), 1, + STATE(4653), 1, aux_sym_object_repeat1, - STATE(4878), 1, + STATE(4884), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -161961,15 +161961,15 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym__property_name, sym_computed_property_name, - STATE(4567), 3, + STATE(4562), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(4704), 3, + STATE(4699), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5595), 3, + STATE(5589), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, @@ -161988,71 +161988,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25753] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1923), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1921), 34, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [25810] = 8, - ACTIONS(4031), 1, + [25753] = 8, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4039), 1, + ACTIONS(3975), 1, anon_sym_LT, ACTIONS(4061), 1, anon_sym_DOT, - STATE(1623), 1, - sym_arguments, - STATE(1629), 1, + STATE(1552), 1, sym_type_arguments, + STATE(1592), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -162060,7 +162006,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162069,6 +162014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4059), 31, sym__ternary_qmark, anon_sym_as, @@ -162101,25 +162047,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25877] = 8, - ACTIONS(4031), 1, + [25820] = 8, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4039), 1, + ACTIONS(3975), 1, anon_sym_LT, - ACTIONS(4067), 1, + ACTIONS(4063), 1, anon_sym_DOT, - STATE(1591), 1, + STATE(1643), 1, sym_arguments, - STATE(1608), 1, + STATE(1648), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4063), 12, + ACTIONS(3527), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162128,7 +162073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4065), 31, + anon_sym_GT, + ACTIONS(3517), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162160,7 +162106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [25944] = 29, + [25887] = 30, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2292), 1, @@ -162189,37 +162135,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2420), 1, anon_sym_enum, - ACTIONS(3827), 1, + ACTIONS(3803), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3805), 1, anon_sym_default, - ACTIONS(3831), 1, + ACTIONS(3807), 1, anon_sym_type, - ACTIONS(3835), 1, + ACTIONS(3809), 1, + anon_sym_EQ, + ACTIONS(3811), 1, anon_sym_as, - ACTIONS(3845), 1, + ACTIONS(3821), 1, anon_sym_module, - ACTIONS(4069), 1, - anon_sym_EQ, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, STATE(3915), 1, sym_declaration, STATE(3916), 1, sym_internal_module, - STATE(4322), 1, + STATE(4323), 1, aux_sym_export_statement_repeat1, - STATE(4515), 1, + STATE(4452), 1, sym_export_clause, - STATE(5240), 1, + STATE(5246), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 9, - sym__automatic_semicolon, + ACTIONS(4065), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3819), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -162240,7 +162187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [26053] = 30, + [25998] = 29, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2292), 1, @@ -162269,38 +162216,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2420), 1, anon_sym_enum, - ACTIONS(3827), 1, + ACTIONS(3803), 1, anon_sym_STAR, - ACTIONS(3829), 1, + ACTIONS(3805), 1, anon_sym_default, - ACTIONS(3831), 1, + ACTIONS(3807), 1, anon_sym_type, - ACTIONS(3833), 1, - anon_sym_EQ, - ACTIONS(3835), 1, + ACTIONS(3811), 1, anon_sym_as, - ACTIONS(3845), 1, + ACTIONS(3821), 1, anon_sym_module, - STATE(1297), 1, + ACTIONS(4069), 1, + anon_sym_EQ, + STATE(1285), 1, sym_decorator, STATE(3915), 1, sym_declaration, STATE(3916), 1, sym_internal_module, - STATE(4322), 1, + STATE(4323), 1, aux_sym_export_statement_repeat1, - STATE(4515), 1, + STATE(4452), 1, sym_export_clause, - STATE(5240), 1, + STATE(5246), 1, sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 2, + ACTIONS(3819), 9, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3843), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -162321,25 +162267,24 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [26164] = 8, - ACTIONS(4031), 1, + [26107] = 8, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4039), 1, + ACTIONS(3975), 1, anon_sym_LT, ACTIONS(4075), 1, anon_sym_DOT, - STATE(1580), 1, + STATE(1562), 1, sym_arguments, - STATE(1587), 1, + STATE(1594), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 12, + ACTIONS(4071), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162348,7 +162293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 31, + anon_sym_GT, + ACTIONS(4073), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162380,44 +162326,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26231] = 7, - ACTIONS(4039), 1, - anon_sym_LT, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(4081), 1, - anon_sym_is, - STATE(1548), 1, - sym_type_arguments, + [26174] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 12, + ACTIONS(1749), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3567), 32, + anon_sym_GT, + anon_sym_QMARK, + ACTIONS(1747), 34, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162437,16 +162379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_implements, - [26296] = 3, + anon_sym_PIPE_RBRACE, + [26231] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1927), 14, + ACTIONS(1745), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162456,8 +162397,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(1925), 34, + ACTIONS(1743), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -162492,37 +162434,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [26353] = 9, - ACTIONS(827), 1, - anon_sym_BQUOTE, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, + [26288] = 7, + ACTIONS(3975), 1, + anon_sym_LT, + ACTIONS(4079), 1, anon_sym_DOT, - ACTIONS(4037), 1, - anon_sym_QMARK_DOT, - STATE(1658), 1, - sym_template_string, - STATE(4822), 1, - sym_optional_chain, + ACTIONS(4081), 1, + anon_sym_is, + STATE(1542), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 13, + ACTIONS(4077), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 28, + anon_sym_GT, + ACTIONS(3567), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162533,7 +162470,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -162549,19 +162488,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [26421] = 4, - ACTIONS(4081), 1, - anon_sym_is, + [26353] = 9, + ACTIONS(827), 1, + anon_sym_BQUOTE, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(3973), 1, + anon_sym_QMARK_DOT, + STATE(1658), 1, + sym_template_string, + STATE(4828), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 13, + ACTIONS(1883), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162571,7 +162521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4085), 33, + anon_sym_GT, + ACTIONS(1885), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162582,10 +162533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -162601,21 +162549,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26479] = 4, - ACTIONS(4091), 1, - anon_sym_is, + [26421] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 13, + ACTIONS(1749), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162625,7 +162568,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4089), 33, + anon_sym_GT, + anon_sym_QMARK, + ACTIONS(1747), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162659,19 +162604,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26537] = 5, - ACTIONS(1709), 1, - anon_sym_EQ, - ACTIONS(4093), 1, - sym__automatic_semicolon, + [26477] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1705), 13, + ACTIONS(3212), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162681,7 +162621,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1703), 32, + anon_sym_GT, + anon_sym_QMARK, + ACTIONS(3214), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162713,16 +162655,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [26597] = 3, + [26533] = 5, + ACTIONS(1709), 1, + anon_sym_EQ, + ACTIONS(4083), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3216), 14, + ACTIONS(1705), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162732,8 +162678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3218), 33, + anon_sym_GT, + ACTIONS(1703), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162765,32 +162711,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [26653] = 6, - ACTIONS(4039), 1, - anon_sym_LT, - ACTIONS(4079), 1, - anon_sym_DOT, - STATE(1548), 1, - sym_type_arguments, + [26593] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4077), 12, + ACTIONS(3208), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3567), 32, + anon_sym_GT, + anon_sym_QMARK, + ACTIONS(3210), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162803,6 +162744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -162823,15 +162765,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26715] = 3, + [26649] = 4, + ACTIONS(4089), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1923), 14, + ACTIONS(4085), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162841,8 +162784,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1921), 33, + anon_sym_GT, + ACTIONS(4087), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162876,17 +162819,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26771] = 4, + [26707] = 4, ACTIONS(4081), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 13, + ACTIONS(4091), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162896,7 +162838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4097), 33, + anon_sym_GT, + ACTIONS(4093), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162930,15 +162873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26829] = 3, + [26765] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 13, + ACTIONS(1745), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -162948,7 +162890,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4101), 34, + anon_sym_GT, + anon_sym_QMARK, + ACTIONS(1743), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -162982,20 +162926,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [26885] = 5, - ACTIONS(4039), 1, + [26821] = 6, + ACTIONS(3975), 1, anon_sym_LT, - STATE(1596), 1, + ACTIONS(4079), 1, + anon_sym_DOT, + STATE(1542), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 12, + ACTIONS(4077), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163004,7 +162948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4089), 33, + anon_sym_GT, + ACTIONS(3567), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163017,7 +162962,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163038,15 +162982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [26945] = 3, + [26883] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1779), 13, + ACTIONS(3216), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163056,7 +162999,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 34, + anon_sym_GT, + anon_sym_QMARK, + ACTIONS(3218), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163090,31 +163035,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [27001] = 22, + [26939] = 22, ACTIONS(233), 1, anon_sym_STAR, ACTIONS(251), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(3282), 1, anon_sym_LBRACE, ACTIONS(3947), 1, anon_sym_LBRACK, - ACTIONS(4105), 1, + ACTIONS(4097), 1, anon_sym_async, - ACTIONS(4107), 1, + ACTIONS(4099), 1, anon_sym_static, - ACTIONS(4109), 1, + ACTIONS(4101), 1, anon_sym_readonly, - ACTIONS(4115), 1, + ACTIONS(4107), 1, anon_sym_override, - STATE(2781), 1, + STATE(2785), 1, sym_accessibility_modifier, - STATE(2816), 1, + STATE(2801), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, @@ -163125,10 +163069,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3951), 2, sym_number, sym_private_property_identifier, - ACTIONS(4111), 2, + ACTIONS(4103), 2, anon_sym_get, anon_sym_set, - ACTIONS(4113), 3, + ACTIONS(4105), 3, anon_sym_public, anon_sym_private, anon_sym_protected, @@ -163136,19 +163080,19 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym__property_name, sym_computed_property_name, - STATE(5247), 3, + STATE(5249), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5250), 3, + STATE(5253), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5595), 3, + STATE(5589), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(4103), 14, + ACTIONS(4095), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -163163,15 +163107,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27095] = 3, + [27033] = 4, + ACTIONS(4081), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3212), 14, + ACTIONS(4109), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163181,8 +163126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3214), 33, + anon_sym_GT, + ACTIONS(4111), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163216,15 +163161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27151] = 3, + [27091] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1927), 14, + ACTIONS(1767), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163234,8 +163178,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1925), 33, + anon_sym_GT, + ACTIONS(1765), 34, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163269,21 +163213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27207] = 6, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4121), 1, - anon_sym_DOT, - STATE(1600), 1, - sym_arguments, + anon_sym_is, + [27147] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4117), 13, + ACTIONS(4113), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163293,18 +163231,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4119), 31, + anon_sym_GT, + ACTIONS(4115), 34, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -163325,26 +163266,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27269] = 3, + anon_sym_is, + [27203] = 5, + ACTIONS(3975), 1, + anon_sym_LT, + STATE(1576), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3208), 14, + ACTIONS(4085), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(3210), 33, + anon_sym_GT, + ACTIONS(4087), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163378,6 +163322,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, + [27263] = 6, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(4121), 1, + anon_sym_DOT, + STATE(1577), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4117), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4119), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, [27325] = 3, ACTIONS(5), 2, sym_html_comment, @@ -163386,7 +163386,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163396,6 +163395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4125), 33, sym__ternary_qmark, anon_sym_as, @@ -163430,15 +163430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27380] = 3, + [27380] = 5, + ACTIONS(4133), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(4131), 2, + anon_sym_RPAREN, + anon_sym_extends, ACTIONS(4127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163448,7 +163452,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4129), 33, + anon_sym_GT, + ACTIONS(4129), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163456,8 +163461,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -163480,17 +163483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [27435] = 3, + [27439] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163500,7 +163501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4133), 33, + anon_sym_GT, + ACTIONS(4137), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163534,15 +163536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27490] = 3, + [27494] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 13, + ACTIONS(4139), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163552,7 +163553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4137), 33, + anon_sym_GT, + ACTIONS(4141), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163586,22 +163588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [27545] = 7, - ACTIONS(1709), 1, - anon_sym_EQ, - ACTIONS(2372), 1, - anon_sym_extends, + [27549] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 2, + ACTIONS(4143), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4142), 3, - anon_sym_GT, + anon_sym_extends, + ACTIONS(4145), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1707), 10, + anon_sym_GT, + ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -163612,7 +163611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 29, + ACTIONS(3503), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163620,6 +163619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_RBRACK, anon_sym_DOT, @@ -163646,11 +163646,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 13, + ACTIONS(4147), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163660,7 +163659,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4129), 33, + anon_sym_GT, + ACTIONS(4149), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163698,11 +163698,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4145), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163712,7 +163711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4147), 33, + anon_sym_GT, + ACTIONS(4137), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163750,11 +163750,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4149), 13, + ACTIONS(4151), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163764,7 +163763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4151), 33, + anon_sym_GT, + ACTIONS(4153), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163802,11 +163802,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 13, + ACTIONS(4155), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163816,7 +163815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4155), 33, + anon_sym_GT, + ACTIONS(4157), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163851,16 +163851,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_implements, [27828] = 4, - ACTIONS(4161), 1, + ACTIONS(4163), 1, anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4157), 12, + ACTIONS(4159), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PLUS, @@ -163869,7 +163868,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4159), 33, + anon_sym_GT, + ACTIONS(4161), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163907,11 +163907,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3398), 13, + ACTIONS(4145), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163921,7 +163920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3400), 33, + anon_sym_GT, + ACTIONS(4143), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -163959,11 +163959,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 13, + ACTIONS(4165), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -163973,7 +163972,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4165), 33, + anon_sym_GT, + ACTIONS(4167), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164011,11 +164011,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4145), 13, + ACTIONS(4169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164025,7 +164024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4147), 33, + anon_sym_GT, + ACTIONS(4171), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164063,11 +164063,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 13, + ACTIONS(4151), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164077,7 +164076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4169), 33, + anon_sym_GT, + ACTIONS(4153), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164115,11 +164115,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4171), 13, + ACTIONS(4173), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164129,7 +164128,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4173), 33, + anon_sym_GT, + ACTIONS(4175), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164163,15 +164163,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28160] = 3, + [28160] = 6, + ACTIONS(4163), 1, + anon_sym_AMP, + ACTIONS(4181), 1, + anon_sym_PIPE, + ACTIONS(4183), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 13, + ACTIONS(4177), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + ACTIONS(4179), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [28221] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4169), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164181,7 +164235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4165), 33, + anon_sym_GT, + ACTIONS(4171), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164215,15 +164270,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28215] = 3, + [28276] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164233,7 +164287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4177), 33, + anon_sym_GT, + ACTIONS(3402), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164267,30 +164322,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28270] = 5, - ACTIONS(4185), 1, - anon_sym_QMARK, + [28331] = 6, + ACTIONS(4163), 1, + anon_sym_AMP, + ACTIONS(4181), 1, + anon_sym_PIPE, + ACTIONS(4183), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4179), 13, + ACTIONS(4185), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 30, + anon_sym_GT, + ACTIONS(4187), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164298,6 +164352,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -164321,15 +164377,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28329] = 3, + [28392] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4187), 13, + ACTIONS(4189), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164339,7 +164394,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4189), 33, + anon_sym_GT, + ACTIONS(4191), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164373,25 +164429,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28384] = 3, + [28447] = 6, + ACTIONS(4197), 1, + anon_sym_LBRACK, + ACTIONS(4201), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4191), 13, + ACTIONS(4199), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4193), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4193), 33, + anon_sym_GT, + ACTIONS(4195), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164402,7 +164463,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -164423,17 +164483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28439] = 3, + [28508] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 13, + ACTIONS(4203), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164443,7 +164501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4197), 33, + anon_sym_GT, + ACTIONS(4205), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164477,15 +164536,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28494] = 3, + [28563] = 4, + ACTIONS(4211), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2374), 13, + ACTIONS(4207), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164495,7 +164555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2372), 33, + anon_sym_GT, + ACTIONS(4209), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164527,17 +164588,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28549] = 3, + [28620] = 5, + ACTIONS(4215), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4199), 13, + ACTIONS(4213), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164547,7 +164611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4201), 33, + anon_sym_GT, + ACTIONS(4129), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164555,8 +164620,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -164579,19 +164642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [28604] = 4, - ACTIONS(4207), 1, - anon_sym_DOT, + [28679] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 13, + ACTIONS(4217), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164601,7 +164660,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4205), 32, + anon_sym_GT, + ACTIONS(4219), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164614,6 +164674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -164634,29 +164695,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28661] = 6, - ACTIONS(4161), 1, - anon_sym_AMP, - ACTIONS(4214), 1, - anon_sym_PIPE, - ACTIONS(4216), 1, - anon_sym_extends, + [28734] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4210), 11, + ACTIONS(3703), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4212), 32, + anon_sym_GT, + ACTIONS(3493), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164688,22 +164745,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [28722] = 6, - ACTIONS(4161), 1, + [28789] = 6, + ACTIONS(4163), 1, anon_sym_AMP, - ACTIONS(4214), 1, + ACTIONS(4181), 1, anon_sym_PIPE, - ACTIONS(4216), 1, + ACTIONS(4183), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4218), 11, + ACTIONS(4221), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -164711,7 +164768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4220), 32, + anon_sym_GT, + ACTIONS(4223), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164744,15 +164802,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28783] = 3, + [28850] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164762,7 +164819,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4224), 33, + anon_sym_GT, + ACTIONS(4227), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164796,15 +164854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28838] = 3, + [28905] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 13, + ACTIONS(4229), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164814,7 +164871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4228), 33, + anon_sym_GT, + ACTIONS(4231), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164848,21 +164906,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [28893] = 6, - ACTIONS(4161), 1, + [28960] = 6, + ACTIONS(4163), 1, anon_sym_AMP, - ACTIONS(4214), 1, + ACTIONS(4181), 1, anon_sym_PIPE, - ACTIONS(4216), 1, + ACTIONS(4183), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 11, + ACTIONS(4229), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -164870,7 +164927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4228), 32, + anon_sym_GT, + ACTIONS(4231), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164903,15 +164961,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [28954] = 3, + [29021] = 4, + ACTIONS(4197), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2386), 13, + ACTIONS(4233), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + ACTIONS(4235), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [29078] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2386), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -164921,6 +165031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(2384), 33, sym__ternary_qmark, anon_sym_as, @@ -164955,30 +165066,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29009] = 6, - ACTIONS(4234), 1, - anon_sym_LBRACK, - ACTIONS(4238), 1, - anon_sym_extends, + [29133] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4230), 11, + ACTIONS(4237), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4232), 31, + anon_sym_GT, + ACTIONS(4239), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -164989,6 +165095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165009,16 +165116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [29070] = 3, + [29188] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 13, + ACTIONS(4241), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165028,7 +165135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 33, + anon_sym_GT, + ACTIONS(4243), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165062,15 +165170,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29125] = 3, + [29243] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 13, + ACTIONS(4245), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165080,7 +165187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4246), 33, + anon_sym_GT, + ACTIONS(4247), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165114,15 +165222,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29180] = 3, + [29298] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 13, + ACTIONS(4215), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165132,7 +165239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4246), 33, + anon_sym_GT, + ACTIONS(4213), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165166,17 +165274,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29235] = 4, - ACTIONS(4252), 1, - anon_sym_extends, + [29353] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 13, + ACTIONS(4241), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165186,7 +165291,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4250), 32, + anon_sym_GT, + ACTIONS(4243), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165218,18 +165324,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [29292] = 4, - ACTIONS(4234), 1, - anon_sym_LBRACK, + [29408] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4254), 13, + ACTIONS(4241), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165239,7 +165343,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4256), 32, + anon_sym_GT, + ACTIONS(4243), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165250,6 +165355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -165272,15 +165378,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29349] = 3, + [29463] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 13, + ACTIONS(4249), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165290,7 +165395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4246), 33, + anon_sym_GT, + ACTIONS(4251), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165324,15 +165430,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29404] = 3, + [29518] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 13, + ACTIONS(4249), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165342,7 +165447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4260), 33, + anon_sym_GT, + ACTIONS(4251), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165376,15 +165482,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29459] = 3, + [29573] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 13, + ACTIONS(4249), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165394,7 +165499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4260), 33, + anon_sym_GT, + ACTIONS(4251), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165428,15 +165534,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29514] = 3, + [29628] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 13, + ACTIONS(4253), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165446,7 +165551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4260), 33, + anon_sym_GT, + ACTIONS(4255), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165480,15 +165586,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29569] = 3, + [29683] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 13, + ACTIONS(4253), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165498,7 +165603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 33, + anon_sym_GT, + ACTIONS(4255), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165532,15 +165638,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29624] = 3, + [29738] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 13, + ACTIONS(4253), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165550,7 +165655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 33, + anon_sym_GT, + ACTIONS(4255), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165584,15 +165690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29679] = 3, + [29793] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2378), 13, + ACTIONS(4257), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165602,7 +165707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2376), 33, + anon_sym_GT, + ACTIONS(4259), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165636,15 +165742,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29734] = 3, + [29848] = 4, + ACTIONS(4265), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 13, + ACTIONS(4261), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165654,7 +165761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4264), 33, + anon_sym_GT, + ACTIONS(4263), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165667,7 +165775,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -165688,15 +165795,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29789] = 3, + [29905] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4266), 13, + ACTIONS(3691), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165706,7 +165812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4268), 33, + anon_sym_GT, + ACTIONS(3491), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165740,15 +165847,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29844] = 3, + [29960] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4270), 13, + ACTIONS(4267), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165758,7 +165864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4272), 33, + anon_sym_GT, + ACTIONS(4269), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165792,15 +165899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29899] = 3, + [30015] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3687), 13, + ACTIONS(4271), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165810,7 +165916,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3487), 33, + anon_sym_GT, + ACTIONS(4273), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165844,15 +165951,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [29954] = 3, + [30070] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3703), 13, + ACTIONS(4275), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165862,7 +165968,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3489), 33, + anon_sym_GT, + ACTIONS(4277), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165896,15 +166003,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30009] = 3, + [30125] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2390), 13, + ACTIONS(2382), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165914,7 +166020,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2388), 33, + anon_sym_GT, + ACTIONS(2380), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165948,15 +166055,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30064] = 3, + [30180] = 4, + ACTIONS(4279), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 13, + ACTIONS(1791), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -165966,7 +166074,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4276), 33, + anon_sym_GT, + ACTIONS(1789), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -165998,17 +166107,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30119] = 3, + [30237] = 5, + ACTIONS(3967), 1, + anon_sym_LPAREN, + STATE(1671), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 13, + ACTIONS(4281), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + ACTIONS(4283), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [30296] = 4, + ACTIONS(4289), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4285), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166018,7 +166181,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 33, + anon_sym_GT, + ACTIONS(4287), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166031,7 +166195,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -166052,17 +166215,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30174] = 4, - ACTIONS(4282), 1, - sym__automatic_semicolon, + [30353] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 13, + ACTIONS(4292), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166072,7 +166232,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 32, + anon_sym_GT, + ACTIONS(4294), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166104,16 +166265,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30231] = 3, + [30408] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 13, + ACTIONS(4296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166123,7 +166284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4286), 33, + anon_sym_GT, + ACTIONS(4298), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166157,15 +166319,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30286] = 3, + [30463] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 13, + ACTIONS(4296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166175,7 +166336,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4183), 33, + anon_sym_GT, + ACTIONS(4298), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166209,15 +166371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30341] = 3, + [30518] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 13, + ACTIONS(4296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166227,7 +166388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 33, + anon_sym_GT, + ACTIONS(4298), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166261,15 +166423,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30396] = 3, + [30573] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 13, + ACTIONS(4300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166279,7 +166440,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 33, + anon_sym_GT, + ACTIONS(4302), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166313,15 +166475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30451] = 3, + [30628] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(4300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166331,7 +166492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4290), 33, + anon_sym_GT, + ACTIONS(4302), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166365,15 +166527,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30506] = 3, + [30683] = 4, + ACTIONS(3533), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(3499), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166383,7 +166546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4290), 33, + anon_sym_GT, + ACTIONS(3503), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166415,17 +166579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30561] = 3, + [30740] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(4300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166435,7 +166597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4290), 33, + anon_sym_GT, + ACTIONS(4302), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166469,15 +166632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30616] = 3, + [30795] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4292), 13, + ACTIONS(4304), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166487,7 +166649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4294), 33, + anon_sym_GT, + ACTIONS(4306), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166521,17 +166684,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30671] = 4, - ACTIONS(3533), 1, - anon_sym_EQ, + [30850] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166541,7 +166701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 32, + anon_sym_GT, + ACTIONS(4310), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166573,16 +166734,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30728] = 3, + [30905] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4312), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166592,7 +166753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4298), 33, + anon_sym_GT, + ACTIONS(4314), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166626,25 +166788,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30783] = 3, + [30960] = 6, + ACTIONS(4163), 1, + anon_sym_AMP, + ACTIONS(4181), 1, + anon_sym_PIPE, + ACTIONS(4183), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4304), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4298), 33, + anon_sym_GT, + ACTIONS(4306), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166676,17 +166842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [30838] = 3, + [31021] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 13, + ACTIONS(4316), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166696,7 +166860,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4302), 33, + anon_sym_GT, + ACTIONS(4318), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166730,39 +166895,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [30893] = 5, + [31076] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 3, - anon_sym_GT, + ACTIONS(4308), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4169), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4310), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, anon_sym_extends, - ACTIONS(3499), 10, + anon_sym_implements, + [31131] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4320), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 30, + anon_sym_GT, + ACTIONS(4322), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -166783,16 +166997,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [30952] = 3, + [31186] = 4, + ACTIONS(4197), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4199), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166802,7 +167018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4298), 33, + anon_sym_GT, + ACTIONS(4201), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166813,7 +167030,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -166836,15 +167052,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31007] = 3, + [31243] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4304), 13, + ACTIONS(3368), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166854,7 +167069,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4306), 33, + anon_sym_GT, + ACTIONS(3370), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166888,17 +167104,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31062] = 4, - ACTIONS(4234), 1, - anon_sym_LBRACK, + [31298] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 13, + ACTIONS(4199), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -166908,7 +167121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4238), 32, + anon_sym_GT, + ACTIONS(4201), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166919,6 +167133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -166941,25 +167156,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31119] = 3, + [31353] = 6, + ACTIONS(4163), 1, + anon_sym_AMP, + ACTIONS(4181), 1, + anon_sym_PIPE, + ACTIONS(4183), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4308), 13, + ACTIONS(4324), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4310), 33, + anon_sym_GT, + ACTIONS(4326), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -166991,19 +167210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31174] = 4, - ACTIONS(4312), 1, - anon_sym_DOT, + [31414] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 13, + ACTIONS(4085), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167013,7 +167228,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4205), 32, + anon_sym_GT, + ACTIONS(4087), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167026,6 +167242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167046,15 +167263,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31231] = 3, + [31469] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 13, + ACTIONS(4328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167064,7 +167280,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 33, + anon_sym_GT, + ACTIONS(4330), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167098,29 +167315,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31286] = 6, - ACTIONS(4161), 1, - anon_sym_AMP, - ACTIONS(4214), 1, - anon_sym_PIPE, - ACTIONS(4216), 1, - anon_sym_extends, + [31524] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4319), 11, + ACTIONS(4332), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4321), 32, + anon_sym_GT, + ACTIONS(4334), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167152,16 +167365,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31347] = 3, + [31579] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4323), 13, + ACTIONS(4336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167171,7 +167384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4325), 33, + anon_sym_GT, + ACTIONS(4338), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167205,29 +167419,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31402] = 6, - ACTIONS(4161), 1, - anon_sym_AMP, - ACTIONS(4214), 1, - anon_sym_PIPE, - ACTIONS(4216), 1, - anon_sym_extends, + [31634] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 11, + ACTIONS(4340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 32, + anon_sym_GT, + ACTIONS(4342), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167259,16 +167469,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31463] = 3, + [31689] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4327), 13, + ACTIONS(4344), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167278,7 +167488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4329), 33, + anon_sym_GT, + ACTIONS(4346), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167312,10 +167523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31518] = 6, - ACTIONS(4331), 1, + [31744] = 6, + ACTIONS(4348), 1, anon_sym_LBRACE, - ACTIONS(4333), 1, + ACTIONS(4350), 1, anon_sym_DOT, STATE(1714), 1, sym_statement_block, @@ -167326,7 +167537,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167336,6 +167546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1717), 30, sym__ternary_qmark, anon_sym_as, @@ -167367,10 +167578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31579] = 6, - ACTIONS(4335), 1, + [31805] = 6, + ACTIONS(4352), 1, anon_sym_LBRACE, - ACTIONS(4337), 1, + ACTIONS(4354), 1, anon_sym_DOT, STATE(1776), 1, sym_statement_block, @@ -167381,7 +167592,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + ACTIONS(1717), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [31866] = 6, + ACTIONS(4352), 1, + anon_sym_LBRACE, + ACTIONS(4356), 1, + anon_sym_DOT, + STATE(1776), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1719), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167391,6 +167656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1717), 30, sym__automatic_semicolon, sym__ternary_qmark, @@ -167422,10 +167688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [31640] = 6, - ACTIONS(4331), 1, + [31927] = 6, + ACTIONS(4348), 1, anon_sym_LBRACE, - ACTIONS(4339), 1, + ACTIONS(4358), 1, anon_sym_DOT, STATE(1714), 1, sym_statement_block, @@ -167436,7 +167702,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167446,6 +167711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1717), 30, sym__ternary_qmark, anon_sym_as, @@ -167477,19 +167743,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31701] = 5, - ACTIONS(4331), 1, - anon_sym_LBRACE, - STATE(1714), 1, - sym_statement_block, + [31988] = 4, + ACTIONS(4083), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 13, + ACTIONS(1705), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167499,9 +167762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1717), 31, + anon_sym_GT, + ACTIONS(1703), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -167531,15 +167796,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [31760] = 3, + [32045] = 5, + ACTIONS(4348), 1, + anon_sym_LBRACE, + STATE(1714), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 13, + ACTIONS(1719), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167549,10 +167817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4343), 33, + anon_sym_GT, + ACTIONS(1717), 31, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -167581,19 +167849,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [31815] = 3, + [32104] = 4, + ACTIONS(4163), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4345), 13, + ACTIONS(4360), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167601,7 +167868,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4347), 33, + anon_sym_GT, + ACTIONS(4362), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167635,17 +167903,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31870] = 4, - ACTIONS(4093), 1, - sym__automatic_semicolon, + [32161] = 4, + ACTIONS(4063), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1705), 13, + ACTIONS(3527), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167655,7 +167922,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1703), 32, + anon_sym_GT, + ACTIONS(3517), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167668,7 +167936,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -167687,16 +167954,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [31927] = 3, + [32218] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(4364), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167706,7 +167973,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 33, + anon_sym_GT, + ACTIONS(4366), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167740,15 +168008,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [31982] = 3, + [32273] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 13, + ACTIONS(4368), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167758,7 +168025,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 33, + anon_sym_GT, + ACTIONS(4370), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167792,15 +168060,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32037] = 3, + [32328] = 5, + ACTIONS(4352), 1, + anon_sym_LBRACE, + STATE(1776), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4357), 13, + ACTIONS(1719), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167810,19 +168081,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4359), 33, + anon_sym_GT, + ACTIONS(1717), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -167842,20 +168113,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [32092] = 4, - ACTIONS(4161), 1, - anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [32387] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4361), 12, + ACTIONS(4372), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -167863,7 +168131,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4363), 33, + anon_sym_GT, + ACTIONS(4374), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167897,15 +168166,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32149] = 3, + [32442] = 5, + ACTIONS(827), 1, + anon_sym_BQUOTE, + STATE(1658), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4365), 13, + ACTIONS(1883), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167915,7 +168187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4367), 33, + anon_sym_GT, + ACTIONS(1885), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -167945,19 +168218,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32204] = 3, + [32501] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(4376), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -167967,7 +168237,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 33, + anon_sym_GT, + ACTIONS(4378), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168001,15 +168272,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32259] = 3, + [32556] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 13, + ACTIONS(4380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168019,63 +168289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4089), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [32314] = 6, - ACTIONS(4161), 1, - anon_sym_AMP, - ACTIONS(4214), 1, - anon_sym_PIPE, - ACTIONS(4216), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4373), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4375), 32, + ACTIONS(4382), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168107,18 +168322,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [32375] = 4, - ACTIONS(4075), 1, + [32611] = 4, + ACTIONS(4388), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 13, + ACTIONS(4384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168128,7 +168343,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 32, + anon_sym_GT, + ACTIONS(4386), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168161,15 +168377,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32432] = 3, + [32668] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4377), 13, + ACTIONS(2390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168179,7 +168394,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4379), 33, + anon_sym_GT, + ACTIONS(2388), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168213,36 +168429,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32487] = 3, + [32723] = 7, + ACTIONS(1709), 1, + anon_sym_EQ, + ACTIONS(2376), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2382), 13, + ACTIONS(4390), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4393), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(1707), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2380), 33, + ACTIONS(1711), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -168263,21 +168484,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [32542] = 5, - ACTIONS(827), 1, - anon_sym_BQUOTE, - STATE(1658), 1, - sym_template_string, + [32786] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 13, + ACTIONS(4091), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168287,7 +168502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 31, + anon_sym_GT, + ACTIONS(4093), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168317,22 +168533,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [32601] = 5, - ACTIONS(4284), 1, - anon_sym_QMARK, + [32841] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4179), 13, + ACTIONS(4396), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168342,7 +168554,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 30, + anon_sym_GT, + ACTIONS(4398), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168350,6 +168563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -168372,16 +168587,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [32660] = 3, + [32896] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168391,7 +168606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 33, + anon_sym_GT, + ACTIONS(4402), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168425,21 +168641,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32715] = 6, - ACTIONS(4335), 1, - anon_sym_LBRACE, - ACTIONS(4385), 1, - anon_sym_DOT, - STATE(1776), 1, - sym_statement_block, + [32951] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 13, + ACTIONS(4404), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168449,56 +168658,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1717), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [32776] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4083), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4085), 33, + ACTIONS(4406), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168532,19 +168693,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32831] = 5, - ACTIONS(4335), 1, - anon_sym_LBRACE, - STATE(1776), 1, - sym_statement_block, + [33006] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 13, + ACTIONS(3336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168554,57 +168710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1717), 31, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [32890] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4387), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4389), 33, + ACTIONS(3338), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168638,15 +168745,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32945] = 3, + [33061] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 13, + ACTIONS(4408), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168656,7 +168762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4238), 33, + anon_sym_GT, + ACTIONS(4410), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168690,15 +168797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33000] = 3, + [33116] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 13, + ACTIONS(4412), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168708,7 +168814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4393), 33, + anon_sym_GT, + ACTIONS(4414), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168742,15 +168849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33055] = 3, + [33171] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 13, + ACTIONS(4416), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168760,7 +168866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4397), 33, + anon_sym_GT, + ACTIONS(4418), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168794,17 +168901,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33110] = 4, - ACTIONS(4403), 1, - anon_sym_DOT, + [33226] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4399), 13, + ACTIONS(4420), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168814,7 +168918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 32, + anon_sym_GT, + ACTIONS(4422), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168827,6 +168932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -168847,17 +168953,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33167] = 4, - ACTIONS(4089), 1, - anon_sym_extends, + [33281] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 13, + ACTIONS(4416), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168867,7 +168970,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4407), 32, + anon_sym_GT, + ACTIONS(4418), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168899,16 +169003,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33224] = 3, + [33336] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4409), 13, + ACTIONS(4109), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168918,7 +169022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4411), 33, + anon_sym_GT, + ACTIONS(4111), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -168952,15 +169057,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33279] = 3, + [33391] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 13, + ACTIONS(2378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -168970,7 +169074,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4097), 33, + anon_sym_GT, + ACTIONS(2376), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169004,15 +169109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33334] = 3, + [33446] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4413), 13, + ACTIONS(2374), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169022,7 +169126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4415), 33, + anon_sym_GT, + ACTIONS(2372), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169056,15 +169161,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33389] = 3, + [33501] = 5, + ACTIONS(3967), 1, + anon_sym_LPAREN, + STATE(1687), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3316), 13, + ACTIONS(4424), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169074,13 +169182,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 33, + anon_sym_GT, + ACTIONS(4426), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -169106,31 +169214,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [33444] = 6, - ACTIONS(4161), 1, - anon_sym_AMP, - ACTIONS(4214), 1, - anon_sym_PIPE, - ACTIONS(4216), 1, + [33560] = 4, + ACTIONS(4087), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 11, + ACTIONS(4428), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4407), 32, + anon_sym_GT, + ACTIONS(4430), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169163,15 +169268,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33505] = 3, + [33617] = 4, + ACTIONS(4432), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 13, + ACTIONS(4285), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169181,7 +169287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4419), 33, + anon_sym_GT, + ACTIONS(4287), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169194,7 +169301,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -169215,21 +169321,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33560] = 6, - ACTIONS(4161), 1, + [33674] = 6, + ACTIONS(4163), 1, anon_sym_AMP, - ACTIONS(4214), 1, + ACTIONS(4181), 1, anon_sym_PIPE, - ACTIONS(4216), 1, + ACTIONS(4183), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4421), 11, + ACTIONS(4435), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -169237,7 +169342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4423), 32, + anon_sym_GT, + ACTIONS(4437), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169270,25 +169376,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33621] = 3, + [33735] = 6, + ACTIONS(4163), 1, + anon_sym_AMP, + ACTIONS(4181), 1, + anon_sym_PIPE, + ACTIONS(4183), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4413), 13, + ACTIONS(4439), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4415), 33, + anon_sym_GT, + ACTIONS(4441), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169320,31 +169430,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [33676] = 6, - ACTIONS(4161), 1, - anon_sym_AMP, - ACTIONS(4214), 1, - anon_sym_PIPE, - ACTIONS(4216), 1, - anon_sym_extends, + [33796] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4425), 11, + ACTIONS(4133), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4427), 32, + anon_sym_GT, + ACTIONS(4131), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169376,20 +169481,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33737] = 5, - ACTIONS(4031), 1, - anon_sym_LPAREN, - STATE(1671), 1, - sym_arguments, + [33851] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4429), 13, + ACTIONS(4420), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169399,12 +169500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4431), 31, + anon_sym_GT, + ACTIONS(4422), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -169430,8 +169533,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33796] = 7, + [33906] = 7, ACTIONS(3537), 1, anon_sym_DOT, ACTIONS(3539), 1, @@ -169439,14 +169543,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, + ACTIONS(3517), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, + ACTIONS(3527), 3, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, @@ -169487,74 +169591,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33859] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4417), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4419), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [33914] = 7, - ACTIONS(4137), 1, + [33969] = 7, + ACTIONS(4149), 1, anon_sym_extends, - ACTIONS(4435), 1, + ACTIONS(4445), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4439), 2, + ACTIONS(4449), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4442), 3, - anon_sym_GT, + ACTIONS(4452), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4433), 10, + anon_sym_GT, + ACTIONS(4443), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -169565,7 +169617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 29, + ACTIONS(4447), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169595,19 +169647,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [33977] = 5, - ACTIONS(4031), 1, - anon_sym_LPAREN, - STATE(1687), 1, - sym_arguments, + [34032] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 13, + ACTIONS(4139), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169617,12 +169664,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4447), 31, + anon_sym_GT, + ACTIONS(4141), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -169648,16 +169697,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34036] = 3, + [34087] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4449), 13, + ACTIONS(4455), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169667,7 +169716,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4451), 33, + anon_sym_GT, + ACTIONS(4457), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169701,78 +169751,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34091] = 4, - ACTIONS(4457), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4453), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + [34142] = 6, + ACTIONS(4163), 1, anon_sym_AMP, + ACTIONS(4181), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4455), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, + ACTIONS(4183), 1, anon_sym_extends, - anon_sym_implements, - [34148] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 13, + ACTIONS(4428), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4133), 33, + anon_sym_GT, + ACTIONS(4430), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169804,17 +169805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, [34203] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3392), 13, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169824,7 +169823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3394), 33, + anon_sym_GT, + ACTIONS(4310), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169859,7 +169859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_implements, [34258] = 6, - ACTIONS(4173), 1, + ACTIONS(4167), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, @@ -169868,9 +169868,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LBRACK, ACTIONS(4466), 3, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(4459), 10, anon_sym_STAR, anon_sym_BANG, @@ -169916,11 +169916,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 13, + ACTIONS(1883), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169930,7 +169929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 32, + anon_sym_GT, + ACTIONS(1885), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -169971,7 +169971,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -169981,6 +169980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4471), 32, sym__ternary_qmark, anon_sym_as, @@ -170022,7 +170022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170032,6 +170031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4475), 32, sym__ternary_qmark, anon_sym_as, @@ -170073,7 +170073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170083,6 +170082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4461), 32, sym__ternary_qmark, anon_sym_as, @@ -170120,11 +170120,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(4127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170134,7 +170133,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 32, + anon_sym_GT, + ACTIONS(4129), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170175,7 +170175,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170185,6 +170184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4479), 32, sym__ternary_qmark, anon_sym_as, @@ -170222,11 +170222,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(4127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170236,7 +170235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 32, + anon_sym_GT, + ACTIONS(4129), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170277,7 +170277,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170287,6 +170286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4483), 32, sym__ternary_qmark, anon_sym_as, @@ -170328,7 +170328,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170338,6 +170337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4487), 32, sym__ternary_qmark, anon_sym_as, @@ -170379,7 +170379,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170389,6 +170388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4491), 32, sym__ternary_qmark, anon_sym_as, @@ -170430,7 +170430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170440,6 +170439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4495), 32, sym__ternary_qmark, anon_sym_as, @@ -170481,7 +170481,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170491,6 +170490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4499), 32, sym__ternary_qmark, anon_sym_as, @@ -170528,11 +170528,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1809), 13, + ACTIONS(1797), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170542,7 +170541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1807), 32, + anon_sym_GT, + ACTIONS(1795), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -170583,7 +170583,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170593,6 +170592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4503), 32, sym__ternary_qmark, anon_sym_as, @@ -170634,7 +170634,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170644,6 +170643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4507), 32, sym__ternary_qmark, anon_sym_as, @@ -170685,7 +170685,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170695,6 +170694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4511), 32, sym__ternary_qmark, anon_sym_as, @@ -170736,7 +170736,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170746,6 +170745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4515), 32, sym__ternary_qmark, anon_sym_as, @@ -170787,7 +170787,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170797,6 +170796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4519), 32, sym__ternary_qmark, anon_sym_as, @@ -170838,7 +170838,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170848,6 +170847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4523), 32, sym__ternary_qmark, anon_sym_as, @@ -170889,7 +170889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -170899,6 +170898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4527), 32, sym__ternary_qmark, anon_sym_as, @@ -170933,7 +170933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [35398] = 6, - ACTIONS(4085), 1, + ACTIONS(4093), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, @@ -170942,9 +170942,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LBRACK, ACTIONS(4532), 3, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, @@ -170994,7 +170994,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171004,6 +171003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4537), 32, sym__ternary_qmark, anon_sym_as, @@ -171045,7 +171045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171055,6 +171054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4541), 32, sym__ternary_qmark, anon_sym_as, @@ -171096,7 +171096,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171106,6 +171105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4545), 32, sym__ternary_qmark, anon_sym_as, @@ -171147,7 +171147,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171157,6 +171156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4549), 32, sym__ternary_qmark, anon_sym_as, @@ -171198,7 +171198,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171208,6 +171207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4553), 32, sym__ternary_qmark, anon_sym_as, @@ -171245,11 +171245,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1815), 13, + ACTIONS(1803), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171259,7 +171258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1817), 32, + anon_sym_GT, + ACTIONS(1805), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171300,7 +171300,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171310,6 +171309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4557), 32, sym__ternary_qmark, anon_sym_as, @@ -171347,11 +171347,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1849), 13, + ACTIONS(1837), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171361,7 +171360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 32, + anon_sym_GT, + ACTIONS(1835), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -171402,7 +171402,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171412,6 +171411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4561), 32, sym__ternary_qmark, anon_sym_as, @@ -171453,7 +171453,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171463,6 +171462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4565), 32, sym__ternary_qmark, anon_sym_as, @@ -171504,7 +171504,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171514,6 +171513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4569), 32, sym__ternary_qmark, anon_sym_as, @@ -171555,7 +171555,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171565,6 +171564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4573), 32, sym__ternary_qmark, anon_sym_as, @@ -171606,7 +171606,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171616,6 +171615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4577), 32, sym__ternary_qmark, anon_sym_as, @@ -171657,7 +171657,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171667,6 +171666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4581), 32, sym__ternary_qmark, anon_sym_as, @@ -171708,7 +171708,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171718,6 +171717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4585), 32, sym__ternary_qmark, anon_sym_as, @@ -171759,7 +171759,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171769,6 +171768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4589), 32, sym__ternary_qmark, anon_sym_as, @@ -171803,15 +171803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [36322] = 19, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3909), 1, + ACTIONS(3816), 1, anon_sym_RBRACE, ACTIONS(4591), 1, anon_sym_STAR, @@ -171823,11 +171823,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(4601), 1, anon_sym_readonly, - STATE(2801), 1, + STATE(2812), 1, sym_override_modifier, - STATE(4824), 1, + STATE(4823), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -171838,11 +171838,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4603), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -171877,7 +171877,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171887,6 +171886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4607), 32, sym__ternary_qmark, anon_sym_as, @@ -171928,7 +171928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171938,6 +171937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 32, sym__ternary_qmark, anon_sym_as, @@ -171979,7 +171979,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -171989,6 +171988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4611), 32, sym__ternary_qmark, anon_sym_as, @@ -172026,11 +172026,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1757), 13, + ACTIONS(1863), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172040,7 +172039,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 32, + anon_sym_GT, + ACTIONS(1865), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172077,11 +172077,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1827), 13, + ACTIONS(1815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172091,7 +172090,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 32, + anon_sym_GT, + ACTIONS(1817), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172128,11 +172128,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1879), 13, + ACTIONS(1873), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172142,7 +172141,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1881), 32, + anon_sym_GT, + ACTIONS(1875), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172179,11 +172179,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1747), 13, + ACTIONS(1919), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172193,7 +172192,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1749), 32, + anon_sym_GT, + ACTIONS(1921), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172234,7 +172234,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172244,6 +172243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4615), 32, sym__ternary_qmark, anon_sym_as, @@ -172285,7 +172285,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172295,6 +172294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4619), 32, sym__ternary_qmark, anon_sym_as, @@ -172332,11 +172332,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1771), 13, + ACTIONS(1759), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172346,7 +172345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 32, + anon_sym_GT, + ACTIONS(1761), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172383,11 +172383,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1785), 13, + ACTIONS(1773), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172397,7 +172396,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1787), 32, + anon_sym_GT, + ACTIONS(1775), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172434,11 +172434,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1795), 13, + ACTIONS(1783), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172448,7 +172447,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 32, + anon_sym_GT, + ACTIONS(1785), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172489,7 +172489,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172499,6 +172498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1739), 32, sym__ternary_qmark, anon_sym_as, @@ -172536,11 +172536,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1837), 13, + ACTIONS(1825), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172550,7 +172549,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1839), 32, + anon_sym_GT, + ACTIONS(1827), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172587,11 +172587,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1855), 13, + ACTIONS(1843), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172601,7 +172600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1857), 32, + anon_sym_GT, + ACTIONS(1845), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172638,11 +172638,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1869), 13, + ACTIONS(1853), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172652,7 +172651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1871), 32, + anon_sym_GT, + ACTIONS(1855), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172686,16 +172686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [37272] = 4, - ACTIONS(4435), 1, + ACTIONS(4445), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4433), 13, + ACTIONS(4443), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172705,7 +172704,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 31, + anon_sym_GT, + ACTIONS(4447), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -172747,7 +172747,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172757,6 +172756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4625), 31, sym__ternary_qmark, anon_sym_as, @@ -172799,7 +172799,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -172809,6 +172808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1711), 31, sym__ternary_qmark, anon_sym_as, @@ -172841,93 +172841,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37440] = 6, - ACTIONS(4379), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4627), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 29, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, + [37440] = 13, + ACTIONS(89), 1, + anon_sym_BQUOTE, + ACTIONS(4627), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(4629), 1, + anon_sym_LBRACK, + ACTIONS(4631), 1, anon_sym_DOT, + ACTIONS(4633), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [37500] = 3, + ACTIONS(4635), 1, + anon_sym_LT, + STATE(1893), 1, + sym_type_arguments, + STATE(2153), 1, + sym_arguments, + STATE(2255), 1, + sym_template_string, + STATE(4602), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1895), 13, + ACTIONS(3963), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1893), 32, + anon_sym_GT, + ACTIONS(3965), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -172943,40 +172901,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [37554] = 3, + [37514] = 6, + ACTIONS(4378), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1899), 13, + ACTIONS(4637), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4640), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1897), 32, - sym__automatic_semicolon, + ACTIONS(3503), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -172996,77 +172955,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [37608] = 13, - ACTIONS(89), 1, - anon_sym_BQUOTE, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4639), 1, - anon_sym_QMARK_DOT, - ACTIONS(4641), 1, - anon_sym_LT, - STATE(1893), 1, - sym_type_arguments, - STATE(2167), 1, - sym_arguments, - STATE(2254), 1, - sym_template_string, - STATE(4605), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4027), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4029), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [37682] = 3, + anon_sym_implements, + [37574] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1765), 13, + ACTIONS(1889), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173076,19 +172973,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1763), 32, + anon_sym_GT, + ACTIONS(1887), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -173108,16 +173006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [37736] = 3, + anon_sym_PIPE_RBRACE, + [37628] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 13, + ACTIONS(1893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173127,19 +173024,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1861), 32, + anon_sym_GT, + ACTIONS(1891), 32, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -173159,16 +173057,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [37790] = 3, + anon_sym_PIPE_RBRACE, + [37682] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 13, + ACTIONS(1753), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173178,7 +173075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 32, + anon_sym_GT, + ACTIONS(1751), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173211,15 +173109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37844] = 3, + [37736] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1895), 13, + ACTIONS(1927), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173229,7 +173126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1893), 32, + anon_sym_GT, + ACTIONS(1925), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173262,15 +173160,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37898] = 3, + [37790] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1899), 13, + ACTIONS(1791), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173280,7 +173177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1897), 32, + anon_sym_GT, + ACTIONS(1789), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173313,15 +173211,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37952] = 3, + [37844] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1845), 13, + ACTIONS(1889), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + ACTIONS(1887), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37898] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1893), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173331,7 +173279,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1843), 32, + anon_sym_GT, + ACTIONS(1891), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37952] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1833), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1831), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -173365,15 +173365,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [38006] = 19, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3850), 1, + ACTIONS(3862), 1, anon_sym_RBRACE, ACTIONS(4591), 1, anon_sym_STAR, @@ -173385,11 +173385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(4601), 1, anon_sym_readonly, - STATE(2801), 1, + STATE(2812), 1, sym_override_modifier, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -173400,11 +173400,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4603), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173432,15 +173432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [38092] = 19, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3840), 1, + ACTIONS(3938), 1, anon_sym_RBRACE, ACTIONS(4591), 1, anon_sym_STAR, @@ -173452,11 +173452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(4601), 1, anon_sym_readonly, - STATE(2801), 1, + STATE(2812), 1, sym_override_modifier, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -173467,11 +173467,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4603), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173499,15 +173499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [38178] = 19, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3930), 1, + ACTIONS(3847), 1, anon_sym_RBRACE, ACTIONS(4591), 1, anon_sym_STAR, @@ -173519,11 +173519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(4601), 1, anon_sym_readonly, - STATE(2801), 1, + STATE(2812), 1, sym_override_modifier, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -173534,11 +173534,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4603), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173566,15 +173566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [38264] = 19, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3865), 1, anon_sym_RBRACE, ACTIONS(4591), 1, anon_sym_STAR, @@ -173586,11 +173586,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(4601), 1, anon_sym_readonly, - STATE(2801), 1, + STATE(2812), 1, sym_override_modifier, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -173601,11 +173601,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4603), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173640,7 +173640,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173650,6 +173649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4645), 32, sym__ternary_qmark, anon_sym_as, @@ -173684,13 +173684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [38404] = 16, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3840), 1, + ACTIONS(3938), 1, anon_sym_RBRACE, ACTIONS(4591), 1, anon_sym_STAR, @@ -173700,9 +173700,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(4647), 1, anon_sym_LBRACK, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -173713,11 +173713,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4603), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -173747,9 +173747,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [38483] = 17, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, @@ -173765,9 +173765,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(4661), 1, sym__automatic_semicolon, - STATE(2725), 1, + STATE(2723), 1, sym_statement_block, - STATE(2813), 1, + STATE(2803), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, @@ -173778,11 +173778,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4659), 2, anon_sym_get, anon_sym_set, - STATE(3050), 3, + STATE(3071), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 8, + ACTIONS(3819), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -173820,7 +173820,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173830,6 +173829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1703), 30, sym__ternary_qmark, anon_sym_as, @@ -173878,7 +173878,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173888,6 +173887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4625), 24, sym__ternary_qmark, anon_sym_as, @@ -173917,11 +173917,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1803), 13, + ACTIONS(1791), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173931,7 +173930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1801), 31, + anon_sym_GT, + ACTIONS(1789), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -173963,24 +173963,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [38729] = 5, + [38729] = 16, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(3731), 1, + anon_sym_override, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(4671), 1, + anon_sym_static, + ACTIONS(4673), 1, + anon_sym_readonly, + ACTIONS(4675), 1, + anon_sym_abstract, + ACTIONS(4677), 1, + anon_sym_accessor, + STATE(2746), 1, + sym_accessibility_modifier, + STATE(2846), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4669), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3729), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3336), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 9, + sym__automatic_semicolon, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4669), 5, + ACTIONS(3705), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [38808] = 4, + ACTIONS(4679), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1791), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1789), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [38863] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1709), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4681), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4433), 13, + ACTIONS(1707), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -173990,7 +174103,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 24, + anon_sym_GT, + ACTIONS(1711), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -174015,115 +174129,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [38786] = 4, - ACTIONS(4672), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1803), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1801), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [38841] = 5, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1709), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4674), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1707), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1711), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [38898] = 8, - ACTIONS(4633), 1, + [38920] = 8, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4641), 1, + ACTIONS(4635), 1, anon_sym_LT, - ACTIONS(4677), 1, + ACTIONS(4684), 1, anon_sym_DOT, STATE(1966), 1, sym_arguments, @@ -174132,11 +174143,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 12, + ACTIONS(3527), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -174145,7 +174155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 27, + anon_sym_GT, + ACTIONS(3517), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -174173,39 +174184,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [38961] = 15, - ACTIONS(2338), 1, + [38983] = 15, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3909), 1, + ACTIONS(3816), 1, anon_sym_RBRACE, ACTIONS(4591), 1, anon_sym_STAR, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - STATE(4824), 1, + STATE(4823), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4688), 2, sym_number, sym_private_property_identifier, - ACTIONS(4683), 2, + ACTIONS(4690), 2, anon_sym_get, anon_sym_set, - STATE(3838), 3, + STATE(3904), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174235,12 +174246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39038] = 7, - ACTIONS(4641), 1, + [39060] = 7, + ACTIONS(4635), 1, anon_sym_LT, - ACTIONS(4685), 1, + ACTIONS(4692), 1, anon_sym_DOT, - ACTIONS(4687), 1, + ACTIONS(4694), 1, anon_sym_is, STATE(2010), 1, sym_type_arguments, @@ -174251,7 +174262,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -174260,6 +174270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3567), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -174289,15 +174300,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [39099] = 3, + [39121] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1845), 13, + ACTIONS(1833), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -174307,7 +174317,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1843), 31, + anon_sym_GT, + ACTIONS(1831), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -174339,14 +174350,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [39152] = 16, - ACTIONS(1635), 1, + [39174] = 16, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3909), 1, + ACTIONS(3816), 1, anon_sym_RBRACE, ACTIONS(4591), 1, anon_sym_STAR, @@ -174356,9 +174367,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(4647), 1, anon_sym_LBRACK, - STATE(4824), 1, + STATE(4823), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -174369,11 +174380,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4603), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174402,12 +174413,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39231] = 8, - ACTIONS(4633), 1, + [39253] = 8, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4641), 1, + ACTIONS(4635), 1, anon_sym_LT, - ACTIONS(4689), 1, + ACTIONS(4696), 1, anon_sym_DOT, STATE(1968), 1, sym_arguments, @@ -174416,11 +174427,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4063), 12, + ACTIONS(4057), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -174429,7 +174439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4065), 27, + anon_sym_GT, + ACTIONS(4059), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -174457,39 +174468,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [39294] = 15, - ACTIONS(2338), 1, + [39316] = 15, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3850), 1, + ACTIONS(3862), 1, anon_sym_RBRACE, ACTIONS(4591), 1, anon_sym_STAR, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4688), 2, sym_number, sym_private_property_identifier, - ACTIONS(4683), 2, + ACTIONS(4690), 2, anon_sym_get, anon_sym_set, - STATE(3838), 3, + STATE(3904), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174519,12 +174530,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39371] = 8, - ACTIONS(4633), 1, + [39393] = 8, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4641), 1, + ACTIONS(4635), 1, anon_sym_LT, - ACTIONS(4691), 1, + ACTIONS(4698), 1, anon_sym_DOT, STATE(1972), 1, sym_arguments, @@ -174533,11 +174544,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4057), 12, + ACTIONS(4071), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -174546,7 +174556,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4059), 27, + anon_sym_GT, + ACTIONS(4073), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -174574,14 +174585,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [39434] = 16, - ACTIONS(1635), 1, + [39456] = 16, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3850), 1, + ACTIONS(3862), 1, anon_sym_RBRACE, ACTIONS(4591), 1, anon_sym_STAR, @@ -174591,9 +174602,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(4647), 1, anon_sym_LBRACK, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -174604,11 +174615,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4603), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -174637,25 +174648,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39513] = 8, - ACTIONS(4031), 1, + [39535] = 8, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4700), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -174664,7 +174674,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 27, + anon_sym_GT, + ACTIONS(4702), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -174692,74 +174703,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [39576] = 31, - ACTIONS(4031), 1, + [39598] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -174770,308 +174781,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [39685] = 31, - ACTIONS(4031), 1, + [39707] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4743), 6, + ACTIONS(4750), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [39794] = 31, - ACTIONS(4031), 1, + [39816] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4745), 6, + ACTIONS(4752), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [39903] = 31, - ACTIONS(4031), 1, + [39925] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4747), 6, + ACTIONS(4754), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [40012] = 31, - ACTIONS(4031), 1, + [40034] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -175082,53 +175093,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [40121] = 18, - ACTIONS(4031), 1, + [40143] = 18, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 7, + ACTIONS(4758), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 18, + anon_sym_GT, + ACTIONS(4756), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175147,36 +175158,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [40204] = 13, - ACTIONS(4031), 1, + [40226] = 13, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4753), 1, + ACTIONS(4760), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4758), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -175185,7 +175195,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 21, + anon_sym_GT, + ACTIONS(4756), 21, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175207,66 +175218,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [40277] = 25, - ACTIONS(4031), 1, + [40299] = 25, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 12, + ACTIONS(4756), 12, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175279,68 +175290,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [40374] = 26, - ACTIONS(4031), 1, + [40396] = 26, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4756), 11, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175352,49 +175363,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [40473] = 16, - ACTIONS(4031), 1, + [40495] = 16, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4753), 1, + ACTIONS(4760), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 8, + ACTIONS(4758), 8, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 20, + anon_sym_GT, + ACTIONS(4756), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175415,15 +175426,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [40552] = 3, + [40574] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1809), 13, + ACTIONS(1797), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -175433,7 +175443,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1807), 31, + anon_sym_GT, + ACTIONS(1795), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -175465,63 +175476,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [40605] = 23, - ACTIONS(4031), 1, + [40627] = 23, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 13, + ACTIONS(4756), 13, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175535,65 +175546,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [40698] = 24, - ACTIONS(4031), 1, + [40720] = 24, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 12, + ACTIONS(4756), 12, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175606,40 +175617,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [40793] = 15, - ACTIONS(4031), 1, + [40815] = 15, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4753), 1, + ACTIONS(4760), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 10, + ACTIONS(4758), 10, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -175647,7 +175657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 20, + anon_sym_GT, + ACTIONS(4756), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175668,41 +175679,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [40870] = 16, - ACTIONS(4031), 1, + [40892] = 16, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4753), 1, + ACTIONS(4760), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4758), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -175711,7 +175721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 19, + anon_sym_GT, + ACTIONS(4756), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -175731,58 +175742,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [40949] = 20, - ACTIONS(4031), 1, + [40971] = 20, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 5, + ACTIONS(4758), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 15, + ACTIONS(4756), 15, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175798,70 +175809,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [41036] = 27, - ACTIONS(4031), 1, + [41058] = 27, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 10, + ACTIONS(4756), 10, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -175872,74 +175883,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [41137] = 31, - ACTIONS(4031), 1, + [41159] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -175950,152 +175961,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41246] = 31, - ACTIONS(4031), 1, + [41268] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 6, + ACTIONS(4763), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41355] = 31, - ACTIONS(4031), 1, + [41377] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -176106,74 +176117,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41464] = 31, - ACTIONS(4031), 1, + [41486] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -176184,74 +176195,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41573] = 31, - ACTIONS(4031), 1, + [41595] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -176262,198 +176273,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41682] = 31, - ACTIONS(4031), 1, + [41704] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 6, + ACTIONS(4765), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41791] = 31, - ACTIONS(4031), 1, + [41813] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 6, + ACTIONS(4767), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [41900] = 16, - ACTIONS(1635), 1, + [41922] = 16, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4764), 1, + ACTIONS(4771), 1, anon_sym_static, - ACTIONS(4766), 1, + ACTIONS(4773), 1, anon_sym_readonly, - ACTIONS(4768), 1, + ACTIONS(4775), 1, anon_sym_abstract, - ACTIONS(4770), 1, + ACTIONS(4777), 1, anon_sym_accessor, - STATE(2761), 1, + STATE(2762), 1, sym_accessibility_modifier, - STATE(2846), 1, + STATE(2847), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4762), 2, + ACTIONS(4769), 2, sym_number, sym_private_property_identifier, ACTIONS(3729), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3418), 3, + STATE(3387), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -176481,93 +176492,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [41979] = 31, - ACTIONS(4031), 1, + [42001] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4772), 6, + ACTIONS(4779), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [42088] = 3, + [42110] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1849), 13, + ACTIONS(1837), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -176577,7 +176587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1847), 31, + anon_sym_GT, + ACTIONS(1835), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -176609,39 +176620,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [42141] = 15, - ACTIONS(2338), 1, + [42163] = 15, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3840), 1, + ACTIONS(3938), 1, anon_sym_RBRACE, ACTIONS(4591), 1, anon_sym_STAR, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4688), 2, sym_number, sym_private_property_identifier, - ACTIONS(4683), 2, + ACTIONS(4690), 2, anon_sym_get, anon_sym_set, - STATE(3838), 3, + STATE(3904), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176671,15 +176682,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42218] = 3, + [42240] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1765), 13, + ACTIONS(1753), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -176689,7 +176699,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1763), 31, + anon_sym_GT, + ACTIONS(1751), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -176721,31 +176732,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [42271] = 11, - ACTIONS(4031), 1, + [42293] = 11, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4778), 1, + ACTIONS(4785), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 12, + ACTIONS(4781), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -176754,7 +176764,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 24, + anon_sym_GT, + ACTIONS(4783), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -176779,39 +176790,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [42340] = 15, - ACTIONS(2338), 1, + [42362] = 15, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3930), 1, + ACTIONS(3847), 1, anon_sym_RBRACE, ACTIONS(4591), 1, anon_sym_STAR, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4688), 2, sym_number, sym_private_property_identifier, - ACTIONS(4683), 2, + ACTIONS(4690), 2, anon_sym_get, anon_sym_set, - STATE(3838), 3, + STATE(3904), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176841,77 +176852,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42417] = 16, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(4783), 1, - anon_sym_static, - ACTIONS(4785), 1, - anon_sym_readonly, - ACTIONS(4787), 1, - anon_sym_abstract, - ACTIONS(4789), 1, - anon_sym_accessor, - STATE(2746), 1, - sym_accessibility_modifier, - STATE(2857), 1, - sym_override_modifier, + [42439] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4781), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3729), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3411), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, + ACTIONS(4445), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4788), 5, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4443), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3705), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4447), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, [42496] = 16, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3930), 1, + ACTIONS(3847), 1, anon_sym_RBRACE, ACTIONS(4591), 1, anon_sym_STAR, @@ -176921,9 +176921,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(4647), 1, anon_sym_LBRACK, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -176934,11 +176934,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4603), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -176968,38 +176968,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [42575] = 15, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3865), 1, anon_sym_RBRACE, ACTIONS(4591), 1, anon_sym_STAR, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4688), 2, sym_number, sym_private_property_identifier, - ACTIONS(4683), 2, + ACTIONS(4690), 2, anon_sym_get, anon_sym_set, - STATE(3838), 3, + STATE(3904), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -177033,11 +177033,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1863), 13, + ACTIONS(1927), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -177047,7 +177046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1861), 31, + anon_sym_GT, + ACTIONS(1925), 31, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177080,13 +177080,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_PIPE_RBRACE, [42705] = 16, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3865), 1, anon_sym_RBRACE, ACTIONS(4591), 1, anon_sym_STAR, @@ -177096,9 +177096,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(4647), 1, anon_sym_LBRACK, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -177109,11 +177109,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4603), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -177143,33 +177143,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [42784] = 12, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4795), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4791), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -177178,6 +177177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4793), 22, sym__ternary_qmark, anon_sym_as, @@ -177202,38 +177202,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [42855] = 15, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4802), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4798), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -177242,6 +177241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4800), 20, sym__ternary_qmark, anon_sym_COMMA, @@ -177264,73 +177264,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, [42932] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -177342,61 +177342,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_BQUOTE, [43041] = 22, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 3, + ACTIONS(4758), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4749), 13, + ACTIONS(4756), 13, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -177411,13 +177411,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [43132] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -177449,9 +177449,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -177481,20 +177481,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 5, + ACTIONS(4763), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, [43240] = 15, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -177506,9 +177506,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -177519,7 +177519,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4798), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -177528,6 +177527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4800), 19, sym__automatic_semicolon, sym__ternary_qmark, @@ -177549,13 +177549,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, [43316] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -177587,9 +177587,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -177626,33 +177626,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BQUOTE, [43424] = 13, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3850), 1, + ACTIONS(3862), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4688), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + STATE(3904), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -177685,9 +177685,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [43496] = 14, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, @@ -177709,11 +177709,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4854), 2, sym_number, sym_private_property_identifier, - STATE(3460), 3, + STATE(3360), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -177747,18 +177747,18 @@ static const uint16_t ts_small_parse_table[] = { [43570] = 7, ACTIONS(1709), 1, anon_sym_EQ, - ACTIONS(2372), 1, + ACTIONS(2376), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 2, + ACTIONS(4390), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4142), 3, - anon_sym_GT, + ACTIONS(4393), 3, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(1707), 10, anon_sym_STAR, anon_sym_BANG, @@ -177801,11 +177801,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4099), 13, + ACTIONS(4113), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -177815,7 +177814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4101), 30, + anon_sym_GT, + ACTIONS(4115), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -177846,87 +177846,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_is, - [43682] = 31, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + [43682] = 6, + ACTIONS(3603), 1, + anon_sym_QMARK, + ACTIONS(3634), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4807), 2, + ACTIONS(3637), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3499), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4839), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4841), 2, + anon_sym_GT, + ACTIONS(3503), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4837), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4745), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43790] = 6, - ACTIONS(4641), 1, + anon_sym_satisfies, + [43740] = 6, + ACTIONS(4635), 1, anon_sym_LT, - ACTIONS(4685), 1, + ACTIONS(4692), 1, anon_sym_DOT, STATE(2010), 1, sym_type_arguments, @@ -177937,7 +177912,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -177946,6 +177920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3567), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -177975,34 +177950,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [43848] = 13, - ACTIONS(2338), 1, + [43798] = 13, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3909), 1, + ACTIONS(3816), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - STATE(4824), 1, + STATE(4823), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4688), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + STATE(3904), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -178034,14 +178009,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [43920] = 31, - ACTIONS(4633), 1, + [43870] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -178073,9 +178048,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -178105,17 +178080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4747), 5, + ACTIONS(4754), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [44028] = 5, + [43978] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4445), 2, anon_sym_EQ, anon_sym_QMARK, ACTIONS(4864), 5, @@ -178124,11 +178099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4433), 13, + ACTIONS(4443), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -178138,7 +178112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 23, + anon_sym_GT, + ACTIONS(4447), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -178162,14 +178137,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44084] = 31, - ACTIONS(4633), 1, + [44034] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -178201,9 +178176,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -178239,74 +178214,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [44192] = 31, - ACTIONS(4031), 1, + [44142] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -178316,14 +178291,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, - [44300] = 18, - ACTIONS(4633), 1, + [44250] = 18, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4819), 1, anon_sym_GT_GT, @@ -178335,9 +178310,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -178354,15 +178329,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4845), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 7, + ACTIONS(4758), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 17, + anon_sym_GT, + ACTIONS(4756), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178380,22 +178355,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [44382] = 7, - ACTIONS(4137), 1, + [44332] = 7, + ACTIONS(4149), 1, anon_sym_extends, - ACTIONS(4435), 1, + ACTIONS(4445), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4439), 2, + ACTIONS(4449), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4442), 3, - anon_sym_GT, + ACTIONS(4452), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4433), 10, + anon_sym_GT, + ACTIONS(4443), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -178406,7 +178381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 26, + ACTIONS(4447), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178433,7 +178408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44442] = 5, + [44392] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -178450,7 +178425,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -178460,6 +178434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4625), 23, sym__ternary_qmark, anon_sym_as, @@ -178484,15 +178459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44498] = 6, + [44448] = 6, ACTIONS(3533), 1, anon_sym_EQ, - ACTIONS(3625), 1, + ACTIONS(3618), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3623), 5, + ACTIONS(3614), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -178502,7 +178477,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -178512,6 +178486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -178536,7 +178511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44556] = 5, + [44506] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -178553,7 +178528,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -178563,6 +178537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1711), 23, sym__ternary_qmark, anon_sym_as, @@ -178587,7 +178562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44612] = 3, + [44562] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -178595,7 +178570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -178605,6 +178579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3210), 30, sym__automatic_semicolon, sym__ternary_qmark, @@ -178636,128 +178611,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [44664] = 13, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, + [44614] = 7, + ACTIONS(3543), 1, + anon_sym_EQ, ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4833), 1, - anon_sym_STAR_STAR, - ACTIONS(4872), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4640), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4378), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3499), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 20, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44736] = 7, - ACTIONS(3543), 1, - anon_sym_EQ, + [44674] = 13, ACTIONS(4627), 1, + anon_sym_LPAREN, + ACTIONS(4629), 1, anon_sym_LBRACK, + ACTIONS(4631), 1, + anon_sym_DOT, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4833), 1, + anon_sym_STAR_STAR, + ACTIONS(4872), 1, + anon_sym_LT, + STATE(2027), 1, + sym_type_arguments, + STATE(2189), 1, + sym_arguments, + STATE(4602), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4379), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3499), 11, + ACTIONS(4845), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4758), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(4756), 20, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [44796] = 25, - ACTIONS(4633), 1, + [44746] = 25, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(4819), 1, anon_sym_GT_GT, @@ -178775,9 +178750,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -178807,7 +178782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4756), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178819,16 +178794,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [44892] = 26, - ACTIONS(4633), 1, + [44842] = 26, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(4815), 1, anon_sym_AMP_AMP, @@ -178848,9 +178823,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -178880,7 +178855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 10, + ACTIONS(4756), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178891,14 +178866,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [44990] = 16, - ACTIONS(4633), 1, + [44940] = 16, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4831), 1, anon_sym_PERCENT, @@ -178908,9 +178883,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -178924,16 +178899,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4845), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 8, + ACTIONS(4758), 8, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 19, + anon_sym_GT, + ACTIONS(4756), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -178953,14 +178928,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [45068] = 22, - ACTIONS(4633), 1, + [45018] = 22, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4819), 1, anon_sym_GT_GT, @@ -178972,9 +178947,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -179000,7 +178975,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4845), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 3, + ACTIONS(4758), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, @@ -179008,7 +178983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 12, + ACTIONS(4756), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179021,14 +178996,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [45158] = 23, - ACTIONS(4633), 1, + [45108] = 23, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4819), 1, anon_sym_GT_GT, @@ -179042,14 +179017,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, ACTIONS(4807), 2, @@ -179077,7 +179052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 12, + ACTIONS(4756), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179090,14 +179065,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [45250] = 24, - ACTIONS(4633), 1, + [45200] = 24, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4819), 1, anon_sym_GT_GT, @@ -179113,14 +179088,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, ACTIONS(4807), 2, @@ -179148,7 +179123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4756), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179160,14 +179135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [45344] = 15, - ACTIONS(4633), 1, + [45294] = 15, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4831), 1, anon_sym_PERCENT, @@ -179177,9 +179152,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -179190,10 +179165,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4845), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 10, + ACTIONS(4758), 10, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -179201,7 +179175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 19, + anon_sym_GT, + ACTIONS(4756), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179221,14 +179196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [45420] = 16, - ACTIONS(4633), 1, + [45370] = 16, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -179242,9 +179217,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -179252,10 +179227,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4845), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4758), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -179264,7 +179238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 18, + anon_sym_GT, + ACTIONS(4756), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -179283,14 +179258,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [45498] = 20, - ACTIONS(4633), 1, + [45448] = 20, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4819), 1, anon_sym_GT_GT, @@ -179302,9 +179277,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -179328,13 +179303,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 5, + ACTIONS(4758), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 14, + ACTIONS(4756), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179349,69 +179324,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [45584] = 6, - ACTIONS(3610), 1, - anon_sym_EQ, - ACTIONS(3617), 1, - anon_sym_QMARK, + [45534] = 31, + ACTIONS(4627), 1, + anon_sym_LPAREN, + ACTIONS(4629), 1, + anon_sym_LBRACK, + ACTIONS(4631), 1, + anon_sym_DOT, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4809), 1, + anon_sym_as, + ACTIONS(4811), 1, + anon_sym_BANG, + ACTIONS(4815), 1, + anon_sym_AMP_AMP, + ACTIONS(4817), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4819), 1, + anon_sym_GT_GT, + ACTIONS(4823), 1, + anon_sym_AMP, + ACTIONS(4825), 1, + anon_sym_CARET, + ACTIONS(4827), 1, + anon_sym_PIPE, + ACTIONS(4831), 1, + anon_sym_PERCENT, + ACTIONS(4833), 1, + anon_sym_STAR_STAR, + ACTIONS(4835), 1, + anon_sym_LT, + ACTIONS(4843), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4847), 1, + anon_sym_satisfies, + ACTIONS(4849), 1, + sym__ternary_qmark, + STATE(2027), 1, + sym_type_arguments, + STATE(2189), 1, + sym_arguments, + STATE(4602), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3499), 13, + ACTIONS(4807), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4813), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4821), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4829), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4845), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4837), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4752), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - anon_sym_satisfies, [45642] = 4, - ACTIONS(4687), 1, + ACTIONS(4694), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 13, + ACTIONS(4091), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -179421,7 +179420,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4085), 29, + anon_sym_GT, + ACTIONS(4093), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179457,11 +179457,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 13, + ACTIONS(4085), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -179471,7 +179470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4089), 29, + anon_sym_GT, + ACTIONS(4087), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -179502,13 +179502,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [45750] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -179540,9 +179540,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -179581,19 +179581,19 @@ static const uint16_t ts_small_parse_table[] = { [45858] = 35, ACTIONS(3550), 1, anon_sym_COLON, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -179621,20 +179621,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, - STATE(5870), 1, + STATE(5480), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -179660,13 +179660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, [45974] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -179698,9 +179698,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -179737,13 +179737,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BQUOTE, [46082] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -179775,9 +179775,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -179814,13 +179814,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BQUOTE, [46190] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -179852,9 +179852,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -179884,20 +179884,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 5, + ACTIONS(4765), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, [46298] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -179929,9 +179929,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -179961,7 +179961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 5, + ACTIONS(4767), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -179971,11 +179971,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1779), 13, + ACTIONS(1767), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -179985,7 +179984,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 30, + anon_sym_GT, + ACTIONS(1765), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180017,18 +180017,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_is, [46458] = 5, - ACTIONS(4641), 1, + ACTIONS(4635), 1, anon_sym_LT, STATE(2062), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 12, + ACTIONS(4085), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -180037,7 +180036,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4089), 29, + anon_sym_GT, + ACTIONS(4087), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180078,7 +180078,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -180088,6 +180087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_instanceof, anon_sym_satisfies, ACTIONS(4919), 26, @@ -180118,33 +180118,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, [46568] = 13, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3840), 1, + ACTIONS(3938), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4688), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + STATE(3904), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -180177,21 +180177,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [46640] = 12, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4923), 1, anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -180203,7 +180203,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -180212,6 +180211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4793), 21, sym__automatic_semicolon, sym__ternary_qmark, @@ -180237,19 +180237,19 @@ static const uint16_t ts_small_parse_table[] = { [46710] = 35, ACTIONS(3550), 1, anon_sym_COLON, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -180277,20 +180277,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(4926), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, - STATE(5705), 1, + STATE(5862), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -180316,15 +180316,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, [46826] = 27, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(4815), 1, anon_sym_AMP_AMP, @@ -180346,9 +180346,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -180378,7 +180378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 9, + ACTIONS(4756), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180389,13 +180389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [46926] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -180427,9 +180427,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -180466,30 +180466,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BQUOTE, [47034] = 11, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4928), 1, anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 12, + ACTIONS(4781), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -180498,7 +180497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 23, + anon_sym_GT, + ACTIONS(4783), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180523,33 +180523,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [47102] = 13, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3930), 1, + ACTIONS(3847), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4688), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + STATE(3904), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -180582,16 +180582,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [47174] = 4, - ACTIONS(4687), 1, + ACTIONS(4694), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 13, + ACTIONS(4109), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -180601,7 +180600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4097), 29, + anon_sym_GT, + ACTIONS(4111), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180634,24 +180634,23 @@ static const uint16_t ts_small_parse_table[] = { [47228] = 9, ACTIONS(89), 1, anon_sym_BQUOTE, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4639), 1, + ACTIONS(4633), 1, anon_sym_QMARK_DOT, - STATE(2254), 1, + STATE(2255), 1, sym_template_string, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 13, + ACTIONS(1883), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -180661,7 +180660,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 24, + anon_sym_GT, + ACTIONS(1885), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180689,19 +180689,19 @@ static const uint16_t ts_small_parse_table[] = { [47292] = 35, ACTIONS(3550), 1, anon_sym_COLON, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -180729,20 +180729,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(4931), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, - STATE(5857), 1, + STATE(5680), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -180768,33 +180768,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, [47408] = 13, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3865), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(4688), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + STATE(3904), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -180827,24 +180827,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [47480] = 8, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, ACTIONS(4835), 1, anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4700), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -180853,7 +180852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 26, + anon_sym_GT, + ACTIONS(4702), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180881,24 +180881,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [47542] = 8, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, ACTIONS(4933), 1, anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4700), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -180907,7 +180906,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 26, + anon_sym_GT, + ACTIONS(4702), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -180935,13 +180935,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [47604] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -180973,9 +180973,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -181012,13 +181012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_BQUOTE, [47712] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -181050,9 +181050,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -181082,20 +181082,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4743), 5, + ACTIONS(4750), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, [47820] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -181127,9 +181127,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -181159,7 +181159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4745), 5, + ACTIONS(4752), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -181169,11 +181169,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3212), 13, + ACTIONS(3216), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -181183,7 +181182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3214), 30, + anon_sym_GT, + ACTIONS(3218), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181215,13 +181215,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_PIPE_RBRACE, [47980] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -181253,9 +181253,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -181285,20 +181285,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4747), 5, + ACTIONS(4754), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, [48088] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -181330,9 +181330,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -181369,13 +181369,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_BQUOTE, [48196] = 18, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4933), 1, anon_sym_LT, @@ -181387,9 +181387,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -181406,15 +181406,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 7, + ACTIONS(4758), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 17, + anon_sym_GT, + ACTIONS(4756), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181433,13 +181433,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [48278] = 13, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4957), 1, anon_sym_STAR_STAR, @@ -181447,9 +181447,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -181457,11 +181457,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4845), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4758), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -181470,7 +181469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 20, + anon_sym_GT, + ACTIONS(4756), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181492,15 +181492,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [48350] = 25, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(4933), 1, anon_sym_LT, @@ -181518,9 +181518,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -181550,7 +181550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4756), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181563,15 +181563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [48446] = 26, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(4933), 1, anon_sym_LT, @@ -181591,9 +181591,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -181623,7 +181623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 10, + ACTIONS(4756), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181635,13 +181635,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [48544] = 16, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4955), 1, anon_sym_PERCENT, @@ -181651,9 +181651,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -181667,16 +181667,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 8, + ACTIONS(4758), 8, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 19, + anon_sym_GT, + ACTIONS(4756), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181697,13 +181697,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [48622] = 22, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4933), 1, anon_sym_LT, @@ -181715,9 +181715,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -181743,7 +181743,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4963), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4751), 3, + ACTIONS(4758), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, @@ -181751,7 +181751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 12, + ACTIONS(4756), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181765,13 +181765,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [48712] = 23, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4933), 1, anon_sym_LT, @@ -181785,14 +181785,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, ACTIONS(4845), 2, @@ -181820,7 +181820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 12, + ACTIONS(4756), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181834,13 +181834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [48804] = 24, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4933), 1, anon_sym_LT, @@ -181856,14 +181856,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, ACTIONS(4845), 2, @@ -181891,7 +181891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4756), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181904,13 +181904,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [48898] = 15, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4955), 1, anon_sym_PERCENT, @@ -181920,9 +181920,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -181933,10 +181933,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4935), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4751), 10, + ACTIONS(4758), 10, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -181944,7 +181943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 19, + anon_sym_GT, + ACTIONS(4756), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -181965,13 +181965,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [48974] = 16, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -181985,9 +181985,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -181995,10 +181995,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4845), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4758), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -182007,7 +182006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 18, + anon_sym_GT, + ACTIONS(4756), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -182027,13 +182027,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, [49052] = 20, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4933), 1, anon_sym_LT, @@ -182045,9 +182045,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -182071,13 +182071,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 5, + ACTIONS(4758), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 14, + ACTIONS(4756), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182093,15 +182093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [49138] = 27, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(4933), 1, anon_sym_LT, @@ -182123,9 +182123,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -182155,7 +182155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 9, + ACTIONS(4756), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -182166,13 +182166,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [49238] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -182204,9 +182204,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -182243,13 +182243,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_BQUOTE, [49346] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -182281,9 +182281,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -182313,20 +182313,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 5, + ACTIONS(4763), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, [49454] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -182358,9 +182358,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -182397,13 +182397,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_BQUOTE, [49562] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -182435,9 +182435,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -182474,13 +182474,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_BQUOTE, [49670] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -182512,9 +182512,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -182551,13 +182551,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_BQUOTE, [49778] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -182589,9 +182589,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -182621,20 +182621,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 5, + ACTIONS(4765), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, [49886] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -182666,9 +182666,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -182698,20 +182698,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 5, + ACTIONS(4767), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, [49994] = 31, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -182743,9 +182743,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -182775,36 +182775,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4772), 5, + ACTIONS(4779), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, [50102] = 8, - ACTIONS(4435), 1, + ACTIONS(1709), 1, anon_sym_EQ, - ACTIONS(4439), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4393), 2, anon_sym_AMP, anon_sym_PIPE, ACTIONS(4972), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4137), 4, + ACTIONS(2376), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4433), 11, + ACTIONS(1707), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -182812,7 +182811,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 22, + anon_sym_GT, + ACTIONS(1711), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -182835,46 +182835,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50164] = 11, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, + [50164] = 8, + ACTIONS(4445), 1, + anon_sym_EQ, + ACTIONS(4449), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4976), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 12, + ACTIONS(4452), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4976), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4149), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4443), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 23, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(4447), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -182892,22 +182889,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50232] = 35, + [50226] = 35, ACTIONS(3550), 1, anon_sym_COLON, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -182933,22 +182930,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - ACTIONS(4979), 1, + ACTIONS(4980), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, - STATE(5502), 1, + STATE(5534), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -182973,10 +182970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50348] = 6, - ACTIONS(4633), 1, + [50342] = 6, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4981), 1, + ACTIONS(4982), 1, anon_sym_DOT, STATE(2063), 1, sym_arguments, @@ -182987,7 +182984,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -182997,6 +182993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4119), 27, sym__automatic_semicolon, sym__ternary_qmark, @@ -183025,21 +183022,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [50406] = 7, - ACTIONS(3501), 1, + [50400] = 7, + ACTIONS(3515), 1, anon_sym_EQ, - ACTIONS(4379), 1, + ACTIONS(4378), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 2, + ACTIONS(4637), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4630), 3, - anon_sym_GT, + ACTIONS(4640), 3, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, @@ -183078,14 +183075,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50466] = 31, - ACTIONS(4633), 1, + [50460] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -183117,9 +183114,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -183155,14 +183152,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [50574] = 31, - ACTIONS(4633), 1, + [50568] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -183194,9 +183191,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -183226,42 +183223,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4743), 5, + ACTIONS(4750), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [50682] = 14, - ACTIONS(1635), 1, + [50676] = 14, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4985), 1, + ACTIONS(4986), 1, anon_sym_static, - ACTIONS(4987), 1, + ACTIONS(4988), 1, anon_sym_readonly, - ACTIONS(4989), 1, + ACTIONS(4990), 1, anon_sym_abstract, - ACTIONS(4991), 1, + ACTIONS(4992), 1, anon_sym_accessor, - STATE(2865), 1, + STATE(2856), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4983), 2, + ACTIONS(4984), 2, sym_number, sym_private_property_identifier, - STATE(3341), 3, + STATE(3438), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -183292,10 +183289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [50756] = 16, - ACTIONS(1635), 1, + [50750] = 16, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, @@ -183309,12 +183306,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(4601), 1, anon_sym_readonly, - STATE(2801), 1, + STATE(2812), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 2, + ACTIONS(4065), 2, anon_sym_COMMA, anon_sym_RBRACE, ACTIONS(4599), 2, @@ -183323,11 +183320,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4603), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -183354,15 +183351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [50834] = 3, + [50828] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3216), 13, + ACTIONS(3212), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -183372,7 +183368,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3218), 30, + anon_sym_GT, + ACTIONS(3214), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183403,14 +183400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [50886] = 31, - ACTIONS(4633), 1, + [50880] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -183442,9 +183439,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -183474,28 +183471,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4772), 5, + ACTIONS(4779), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [50994] = 12, - ACTIONS(4633), 1, + [50988] = 12, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4993), 1, + ACTIONS(4994), 1, anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -183507,7 +183504,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -183516,6 +183512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4793), 21, sym__automatic_semicolon, sym__ternary_qmark, @@ -183538,14 +183535,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [51064] = 15, - ACTIONS(4633), 1, + [51058] = 15, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -183553,13 +183550,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(4847), 1, anon_sym_satisfies, - ACTIONS(4996), 1, + ACTIONS(4997), 1, anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -183570,7 +183567,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4798), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -183579,6 +183575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4800), 19, sym__automatic_semicolon, sym__ternary_qmark, @@ -183599,14 +183596,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [51140] = 31, - ACTIONS(4633), 1, + [51134] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -183638,9 +183635,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -183676,43 +183673,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_of, anon_sym_BQUOTE, - [51248] = 8, - ACTIONS(1709), 1, - anon_sym_EQ, - ACTIONS(4139), 1, + [51242] = 11, + ACTIONS(4627), 1, + anon_sym_LPAREN, + ACTIONS(4629), 1, anon_sym_LBRACK, + ACTIONS(4631), 1, + anon_sym_DOT, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(5000), 1, + anon_sym_LT, + STATE(2027), 1, + sym_type_arguments, + STATE(2189), 1, + sym_arguments, + STATE(4602), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4999), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2372), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1707), 11, + ACTIONS(4781), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 22, + anon_sym_GT, + ACTIONS(4783), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -183733,9 +183733,9 @@ static const uint16_t ts_small_parse_table[] = { [51310] = 19, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2364), 1, anon_sym_async, @@ -183745,17 +183745,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, ACTIONS(5005), 1, anon_sym_RBRACE, - STATE(2805), 1, + STATE(2814), 1, sym_override_modifier, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -183766,11 +183766,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -183798,11 +183798,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -183812,7 +183811,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4298), 29, + anon_sym_GT, + ACTIONS(4310), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183846,11 +183846,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4304), 13, + ACTIONS(4320), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -183860,7 +183859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4306), 29, + anon_sym_GT, + ACTIONS(4322), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183900,11 +183900,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4319), 11, + ACTIONS(4324), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -183912,7 +183911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4321), 28, + anon_sym_GT, + ACTIONS(4326), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -183941,34 +183941,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51552] = 3, + [51552] = 9, + ACTIONS(4093), 1, + anon_sym_extends, + ACTIONS(4529), 1, + anon_sym_LBRACK, + ACTIONS(5017), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3316), 13, + ACTIONS(4532), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5013), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5015), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3499), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 29, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -183988,38 +183995,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [51603] = 5, - ACTIONS(1709), 1, + [51615] = 9, + ACTIONS(3603), 1, + anon_sym_QMARK, + ACTIONS(3634), 1, anon_sym_EQ, - ACTIONS(4664), 1, - sym__automatic_semicolon, + ACTIONS(4637), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1705), 13, + ACTIONS(3637), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4378), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4640), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3499), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1703), 27, + anon_sym_GT, + ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184039,41 +184049,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51658] = 9, - ACTIONS(4085), 1, - anon_sym_extends, - ACTIONS(4529), 1, - anon_sym_LBRACK, - ACTIONS(5017), 1, - anon_sym_RPAREN, + [51678] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4532), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5013), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5015), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3499), 11, + ACTIONS(3336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(3338), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184093,41 +184096,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [51721] = 9, - ACTIONS(3610), 1, + anon_sym_extends, + [51729] = 5, + ACTIONS(1709), 1, anon_sym_EQ, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(4627), 1, - anon_sym_LBRACK, + ACTIONS(4664), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4379), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 11, + ACTIONS(1705), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(1703), 27, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -184148,19 +184148,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [51784] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -184184,16 +184184,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -184218,25 +184218,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4743), 4, + ACTIONS(4750), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, [51891] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -184260,16 +184260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -184294,44 +184294,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4747), 4, + ACTIONS(4754), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, [51998] = 15, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5020), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4798), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -184340,6 +184339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4800), 18, sym__ternary_qmark, anon_sym_COMMA, @@ -184360,19 +184360,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, [52073] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -184396,16 +184396,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -184440,9 +184440,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(697), 1, anon_sym_RBRACE, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2364), 1, anon_sym_async, @@ -184452,15 +184452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, - STATE(2805), 1, + STATE(2814), 1, sym_override_modifier, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -184471,11 +184471,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -184500,13 +184500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [52263] = 18, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4889), 1, anon_sym_GT_GT, @@ -184516,16 +184516,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(4905), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -184537,15 +184537,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4899), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 7, + ACTIONS(4758), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 16, + anon_sym_GT, + ACTIONS(4756), 16, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -184563,18 +184563,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [52344] = 5, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, STATE(2242), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4445), 13, + ACTIONS(4424), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -184584,7 +184583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4447), 27, + anon_sym_GT, + ACTIONS(4426), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -184613,19 +184613,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [52399] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -184649,16 +184649,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -184689,35 +184689,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_BQUOTE, [52506] = 13, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4903), 1, anon_sym_STAR_STAR, ACTIONS(5023), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4758), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -184726,7 +184725,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 19, + anon_sym_GT, + ACTIONS(4756), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -184746,14 +184746,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [52577] = 32, - ACTIONS(4633), 1, + [52577] = 25, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4758), 1, + anon_sym_BANG, + ACTIONS(4889), 1, + anon_sym_GT_GT, + ACTIONS(4893), 1, + anon_sym_AMP, + ACTIONS(4895), 1, + anon_sym_CARET, + ACTIONS(4897), 1, + anon_sym_PIPE, + ACTIONS(4901), 1, + anon_sym_PERCENT, + ACTIONS(4903), 1, + anon_sym_STAR_STAR, + ACTIONS(4905), 1, + anon_sym_LT, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4877), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4883), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4891), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4899), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4909), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4911), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4907), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4756), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [52672] = 32, + ACTIONS(4627), 1, + anon_sym_LPAREN, + ACTIONS(4629), 1, + anon_sym_LBRACK, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -184789,9 +184859,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -184823,86 +184893,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, - [52686] = 25, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4751), 1, - anon_sym_BANG, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4749), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, [52781] = 26, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -184920,16 +184920,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(4905), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -184954,7 +184954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 9, + ACTIONS(4756), 9, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -184965,13 +184965,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [52878] = 16, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4901), 1, anon_sym_PERCENT, @@ -184979,16 +184979,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5023), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -184997,16 +184997,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4899), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 8, + ACTIONS(4758), 8, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 18, + anon_sym_GT, + ACTIONS(4756), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185026,13 +185026,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [52955] = 22, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4889), 1, anon_sym_GT_GT, @@ -185042,16 +185042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(4905), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -185072,7 +185072,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4911), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4751), 3, + ACTIONS(4758), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, @@ -185080,7 +185080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4756), 11, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185093,13 +185093,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [53044] = 23, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4889), 1, anon_sym_GT_GT, @@ -185111,19 +185111,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(4905), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, ACTIONS(4877), 2, @@ -185148,7 +185148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4756), 11, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185161,13 +185161,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [53135] = 24, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4889), 1, anon_sym_GT_GT, @@ -185181,19 +185181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(4905), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, ACTIONS(4877), 2, @@ -185218,7 +185218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 10, + ACTIONS(4756), 10, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185230,13 +185230,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [53228] = 15, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4901), 1, anon_sym_PERCENT, @@ -185244,25 +185244,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5023), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4751), 10, + ACTIONS(4758), 10, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -185270,7 +185269,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 18, + anon_sym_GT, + ACTIONS(4756), 18, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185290,40 +185290,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [53303] = 16, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4903), 1, anon_sym_STAR_STAR, ACTIONS(5023), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4758), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -185332,7 +185331,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 17, + anon_sym_GT, + ACTIONS(4756), 17, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RPAREN, @@ -185356,11 +185356,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4453), 13, + ACTIONS(4261), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -185370,7 +185369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4455), 28, + anon_sym_GT, + ACTIONS(4263), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185399,14 +185399,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53433] = 20, - ACTIONS(4031), 1, + [53433] = 14, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(3731), 1, + anon_sym_override, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(5033), 1, + anon_sym_STAR, + ACTIONS(5035), 1, + anon_sym_async, + ACTIONS(5039), 1, + anon_sym_readonly, + STATE(2794), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5037), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5041), 2, + anon_sym_get, + anon_sym_set, + STATE(3145), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3705), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [53506] = 4, + ACTIONS(3515), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3503), 28, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4035), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4707), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [53559] = 20, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4889), 1, anon_sym_GT_GT, @@ -185416,16 +185524,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(4905), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -185444,13 +185552,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 5, + ACTIONS(4758), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 13, + ACTIONS(4756), 13, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185464,65 +185572,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [53518] = 4, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [53571] = 27, - ACTIONS(4031), 1, + [53644] = 27, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -185542,16 +185601,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(4905), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -185576,7 +185635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 8, + ACTIONS(4756), 8, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -185585,15 +185644,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [53670] = 3, + [53743] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 13, + ACTIONS(4199), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -185603,7 +185661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4238), 29, + anon_sym_GT, + ACTIONS(4201), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185633,17 +185692,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [53721] = 4, - ACTIONS(5033), 1, - anon_sym_LBRACK, + [53794] = 4, + ACTIONS(4087), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 13, + ACTIONS(4428), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -185653,7 +185711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4238), 28, + anon_sym_GT, + ACTIONS(4430), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185662,6 +185721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -185681,28 +185741,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [53774] = 4, - ACTIONS(4089), 1, + [53847] = 6, + ACTIONS(5007), 1, + anon_sym_AMP, + ACTIONS(5009), 1, + anon_sym_PIPE, + ACTIONS(5011), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 13, + ACTIONS(4428), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4407), 28, + anon_sym_GT, + ACTIONS(4430), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185731,29 +185792,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53827] = 6, - ACTIONS(5007), 1, - anon_sym_AMP, - ACTIONS(5009), 1, - anon_sym_PIPE, - ACTIONS(5011), 1, - anon_sym_extends, + [53904] = 4, + ACTIONS(5043), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4405), 11, + ACTIONS(4199), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4407), 28, + anon_sym_GT, + ACTIONS(4201), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185762,7 +185821,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -185782,20 +185840,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [53884] = 31, - ACTIONS(4031), 1, + anon_sym_extends, + [53957] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -185819,16 +185878,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -185858,20 +185917,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [53991] = 31, - ACTIONS(4031), 1, + [54064] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -185895,16 +185954,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -185929,20 +185988,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 4, + ACTIONS(4763), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [54098] = 3, + [54171] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4087), 13, + ACTIONS(4085), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -185952,7 +186010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4089), 29, + anon_sym_GT, + ACTIONS(4087), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -185982,73 +186041,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [54149] = 14, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5035), 1, - anon_sym_STAR, - ACTIONS(5037), 1, - anon_sym_async, - ACTIONS(5041), 1, - anon_sym_readonly, - STATE(2807), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5039), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5043), 2, - anon_sym_get, - anon_sym_set, - STATE(3108), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3705), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, [54222] = 19, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(699), 1, anon_sym_RBRACE, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2364), 1, anon_sym_async, @@ -186058,15 +186058,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, - STATE(2805), 1, + STATE(2814), 1, sym_override_modifier, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -186077,11 +186077,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -186109,11 +186109,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4449), 13, + ACTIONS(4404), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -186123,7 +186122,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4451), 29, + anon_sym_GT, + ACTIONS(4406), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186154,19 +186154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [54356] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -186190,16 +186190,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -186224,36 +186224,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4745), 4, + ACTIONS(4752), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, [54463] = 11, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5045), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 12, + ACTIONS(4781), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -186262,7 +186261,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 22, + anon_sym_GT, + ACTIONS(4783), 22, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -186286,7 +186286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [54530] = 6, - ACTIONS(4085), 1, + ACTIONS(4093), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, @@ -186295,9 +186295,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LBRACK, ACTIONS(4532), 3, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, @@ -186337,20 +186337,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [54587] = 7, - ACTIONS(3569), 1, + ACTIONS(3573), 1, anon_sym_EQ, - ACTIONS(4379), 1, + ACTIONS(4378), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 2, + ACTIONS(4637), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4630), 3, - anon_sym_GT, + ACTIONS(4640), 3, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, @@ -186389,13 +186389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [54646] = 33, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -186429,11 +186429,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4479), 1, + STATE(4476), 1, aux_sym_sequence_expression_repeat1, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -186467,33 +186467,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, [54757] = 12, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5052), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4791), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -186502,6 +186501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4793), 20, sym__ternary_qmark, anon_sym_as, @@ -186538,7 +186538,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -186548,6 +186547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1711), 25, sym__ternary_qmark, anon_sym_as, @@ -186575,13 +186575,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [54883] = 33, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -186615,11 +186615,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4479), 1, + STATE(4476), 1, aux_sym_sequence_expression_repeat1, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -186653,19 +186653,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_instanceof, [54994] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -186689,16 +186689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -186729,9 +186729,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_BQUOTE, [55101] = 12, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4647), 1, anon_sym_LBRACK, @@ -186739,7 +186739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(4653), 1, anon_sym_async, - ACTIONS(4789), 1, + ACTIONS(4677), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, @@ -186750,11 +186750,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4659), 2, anon_sym_get, anon_sym_set, - STATE(3050), 3, + STATE(3071), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -186789,11 +186789,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4365), 13, + ACTIONS(4368), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -186803,7 +186802,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4367), 29, + anon_sym_GT, + ACTIONS(4370), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186834,19 +186834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [55221] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -186870,16 +186870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -186919,11 +186919,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4373), 11, + ACTIONS(4185), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -186931,7 +186930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4375), 28, + anon_sym_GT, + ACTIONS(4187), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -186961,68 +186961,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [55385] = 4, - ACTIONS(4435), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4433), 13, + ACTIONS(1986), 6, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4437), 28, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3819), 11, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1984), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, [55438] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -187046,16 +187046,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -187088,18 +187088,18 @@ static const uint16_t ts_small_parse_table[] = { [55545] = 7, ACTIONS(1709), 1, anon_sym_EQ, - ACTIONS(4139), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2372), 2, + ACTIONS(2376), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4142), 3, - anon_sym_GT, + ACTIONS(4393), 3, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(1707), 10, anon_sym_STAR, anon_sym_BANG, @@ -187138,17 +187138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [55604] = 7, - ACTIONS(3509), 1, + ACTIONS(3521), 1, anon_sym_DOT, - ACTIONS(3513), 1, + ACTIONS(3525), 1, anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 2, + ACTIONS(3527), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3505), 7, + ACTIONS(3517), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -187160,7 +187160,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -187168,6 +187167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 20, sym__ternary_qmark, anon_sym_as, @@ -187190,21 +187190,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [55663] = 7, - ACTIONS(4435), 1, + ACTIONS(4445), 1, anon_sym_EQ, - ACTIONS(4439), 1, + ACTIONS(4449), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 2, + ACTIONS(4149), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4442), 3, - anon_sym_GT, + ACTIONS(4452), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4433), 10, + anon_sym_GT, + ACTIONS(4443), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -187215,7 +187215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 25, + ACTIONS(4447), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -187245,10 +187245,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4145), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4169), 7, + ACTIONS(4143), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -187260,7 +187260,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -187268,6 +187267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, @@ -187291,15 +187291,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [55777] = 3, + [55777] = 33, + ACTIONS(4627), 1, + anon_sym_LPAREN, + ACTIONS(4629), 1, + anon_sym_LBRACK, + ACTIONS(4631), 1, + anon_sym_DOT, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4809), 1, + anon_sym_as, + ACTIONS(4811), 1, + anon_sym_BANG, + ACTIONS(4815), 1, + anon_sym_AMP_AMP, + ACTIONS(4817), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4819), 1, + anon_sym_GT_GT, + ACTIONS(4823), 1, + anon_sym_AMP, + ACTIONS(4825), 1, + anon_sym_CARET, + ACTIONS(4827), 1, + anon_sym_PIPE, + ACTIONS(4831), 1, + anon_sym_PERCENT, + ACTIONS(4833), 1, + anon_sym_STAR_STAR, + ACTIONS(4835), 1, + anon_sym_LT, + ACTIONS(4843), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4847), 1, + anon_sym_satisfies, + ACTIONS(4849), 1, + sym__ternary_qmark, + ACTIONS(5048), 1, + anon_sym_COMMA, + STATE(2027), 1, + sym_type_arguments, + STATE(2189), 1, + sym_arguments, + STATE(4476), 1, + aux_sym_sequence_expression_repeat1, + STATE(4602), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4377), 13, + ACTIONS(4807), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4813), 2, anon_sym_in, anon_sym_GT, + ACTIONS(4821), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4829), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4839), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4841), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4845), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5057), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4837), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [55888] = 4, + ACTIONS(4445), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4443), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -187309,7 +187388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4379), 29, + anon_sym_GT, + ACTIONS(4447), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187338,16 +187418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [55828] = 3, + [55941] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4095), 13, + ACTIONS(4109), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -187357,7 +187435,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4097), 29, + anon_sym_GT, + ACTIONS(4111), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187387,93 +187466,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [55879] = 33, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4635), 1, - anon_sym_LBRACK, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4815), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 1, - anon_sym_GT_GT, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_CARET, - ACTIONS(4827), 1, - anon_sym_PIPE, - ACTIONS(4831), 1, - anon_sym_PERCENT, - ACTIONS(4833), 1, - anon_sym_STAR_STAR, - ACTIONS(4835), 1, - anon_sym_LT, - ACTIONS(4843), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(4849), 1, - sym__ternary_qmark, - ACTIONS(5048), 1, - anon_sym_COMMA, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4479), 1, - aux_sym_sequence_expression_repeat1, - STATE(4605), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4807), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4813), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4821), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4829), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4839), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4841), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5057), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4837), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55990] = 3, + [55992] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2374), 13, + ACTIONS(2378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -187483,7 +187483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2372), 29, + anon_sym_GT, + ACTIONS(2376), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187513,7 +187514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [56041] = 6, + [56043] = 6, ACTIONS(5007), 1, anon_sym_AMP, ACTIONS(5009), 1, @@ -187523,11 +187524,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4421), 11, + ACTIONS(4435), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -187535,7 +187535,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4423), 28, + anon_sym_GT, + ACTIONS(4437), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187564,7 +187565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56098] = 6, + [56100] = 6, ACTIONS(5007), 1, anon_sym_AMP, ACTIONS(5009), 1, @@ -187574,11 +187575,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4425), 11, + ACTIONS(4439), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -187586,7 +187586,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4427), 28, + anon_sym_GT, + ACTIONS(4441), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -187615,14 +187616,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56155] = 33, - ACTIONS(4633), 1, + [56157] = 33, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -187658,9 +187659,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -187693,14 +187694,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56266] = 33, - ACTIONS(4633), 1, + [56268] = 33, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -187736,14 +187737,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4743), 2, + ACTIONS(4750), 2, sym__automatic_semicolon, anon_sym_SEMI, ACTIONS(4807), 2, @@ -187771,14 +187772,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56377] = 33, - ACTIONS(4633), 1, + [56379] = 33, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -187814,14 +187815,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4747), 2, + ACTIONS(4754), 2, sym__automatic_semicolon, anon_sym_SEMI, ACTIONS(4807), 2, @@ -187849,14 +187850,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56488] = 33, - ACTIONS(4633), 1, + [56490] = 33, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -187892,14 +187893,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4747), 2, + ACTIONS(4754), 2, sym__automatic_semicolon, anon_sym_SEMI, ACTIONS(4807), 2, @@ -187927,12 +187928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56599] = 19, + [56601] = 19, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2364), 1, anon_sym_async, @@ -187942,17 +187943,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, ACTIONS(5074), 1, anon_sym_RBRACE, - STATE(2805), 1, + STATE(2814), 1, sym_override_modifier, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -187963,11 +187964,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -187991,12 +187992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [56682] = 9, - ACTIONS(2372), 1, + [56684] = 9, + ACTIONS(2376), 1, anon_sym_extends, - ACTIONS(4139), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, - ACTIONS(4999), 1, + ACTIONS(4972), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, @@ -188004,17 +188005,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1709), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4142), 2, + ACTIONS(4393), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4674), 2, + ACTIONS(4681), 2, anon_sym_COMMA, anon_sym_COLON, ACTIONS(1707), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -188022,6 +188022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1711), 22, sym__ternary_qmark, anon_sym_as, @@ -188045,30 +188046,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56745] = 9, - ACTIONS(4137), 1, + [56747] = 9, + ACTIONS(4149), 1, anon_sym_extends, - ACTIONS(4439), 1, + ACTIONS(4449), 1, anon_sym_LBRACK, - ACTIONS(4972), 1, + ACTIONS(4976), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4445), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4442), 2, + ACTIONS(4452), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4669), 2, + ACTIONS(4788), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4433), 11, + ACTIONS(4443), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -188076,59 +188076,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [56808] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4183), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4179), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4181), 25, + ACTIONS(4447), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -188148,20 +188100,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56861] = 4, + [56810] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 4, + ACTIONS(4213), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4179), 13, + ACTIONS(4127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + ACTIONS(4129), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [56863] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4131), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4127), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -188171,7 +188171,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 25, + anon_sym_GT, + ACTIONS(4129), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -188197,12 +188198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56914] = 19, + [56916] = 19, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2364), 1, anon_sym_async, @@ -188212,17 +188213,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, ACTIONS(5076), 1, anon_sym_RBRACE, - STATE(2805), 1, + STATE(2814), 1, sym_override_modifier, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -188233,11 +188234,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -188261,31 +188262,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [56997] = 10, + [56999] = 10, ACTIONS(1709), 1, anon_sym_EQ, - ACTIONS(2372), 1, + ACTIONS(2376), 1, anon_sym_extends, - ACTIONS(2374), 1, + ACTIONS(2378), 1, anon_sym_QMARK, - ACTIONS(4139), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, ACTIONS(4870), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 2, + ACTIONS(4393), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4999), 2, + ACTIONS(4972), 2, anon_sym_COMMA, anon_sym_RBRACK, ACTIONS(1707), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -188293,6 +188293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1711), 22, sym__ternary_qmark, anon_sym_as, @@ -188316,31 +188317,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57062] = 10, - ACTIONS(4135), 1, + [57064] = 10, + ACTIONS(4147), 1, anon_sym_QMARK, - ACTIONS(4137), 1, + ACTIONS(4149), 1, anon_sym_extends, - ACTIONS(4435), 1, + ACTIONS(4445), 1, anon_sym_EQ, - ACTIONS(4439), 1, + ACTIONS(4449), 1, anon_sym_LBRACK, ACTIONS(4864), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4452), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4972), 2, + ACTIONS(4976), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(4433), 11, + ACTIONS(4443), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -188348,7 +188348,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 22, + anon_sym_GT, + ACTIONS(4447), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188371,18 +188372,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57127] = 6, + [57129] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 2, + ACTIONS(4640), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4627), 3, + ACTIONS(4637), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4379), 4, + ACTIONS(4378), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, @@ -188391,7 +188392,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -188399,6 +188399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, @@ -188422,7 +188423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57184] = 6, + [57186] = 6, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -188433,7 +188434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4173), 4, + ACTIONS(4167), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, @@ -188442,7 +188443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -188450,58 +188450,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4461), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [57241] = 6, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4532), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4529), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4085), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3499), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 22, + ACTIONS(4461), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -188524,20 +188474,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [57298] = 31, - ACTIONS(4031), 1, + [57243] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -188561,16 +188511,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -188595,25 +188545,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 4, + ACTIONS(4765), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [57405] = 31, - ACTIONS(4031), 1, + [57350] = 6, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4532), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4529), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4093), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3499), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3503), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [57407] = 31, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -188637,16 +188638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -188671,22 +188672,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 4, + ACTIONS(4767), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_BQUOTE, - [57512] = 4, - ACTIONS(3533), 1, - anon_sym_EQ, + [57514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, + ACTIONS(4376), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -188696,7 +188694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 28, + anon_sym_GT, + ACTIONS(4378), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188725,68 +188724,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, [57565] = 4, + ACTIONS(3533), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1986), 6, + ACTIONS(3499), 13, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 11, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3503), 28, sym__automatic_semicolon, - anon_sym_EQ, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1984), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, [57618] = 5, ACTIONS(89), 1, anon_sym_BQUOTE, - STATE(2254), 1, + STATE(2255), 1, sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 13, + ACTIONS(1883), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -188796,7 +188795,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 27, + anon_sym_GT, + ACTIONS(1885), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188825,11 +188825,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_satisfies, [57673] = 14, - ACTIONS(169), 1, + ACTIONS(165), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1551), 1, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, ACTIONS(3282), 1, anon_sym_LBRACE, @@ -188839,7 +188839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(5082), 1, anon_sym_RBRACE, - STATE(4878), 1, + STATE(4884), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -188847,18 +188847,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5084), 2, sym_number, sym_private_property_identifier, - STATE(4567), 3, + STATE(4562), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5594), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5595), 3, + STATE(5589), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, + STATE(5596), 3, + sym_string, + sym__property_name, + sym_computed_property_name, ACTIONS(5078), 23, anon_sym_export, anon_sym_type, @@ -188887,11 +188887,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2378), 13, + ACTIONS(2374), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -188901,7 +188900,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2376), 29, + anon_sym_GT, + ACTIONS(2372), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188935,11 +188935,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 13, + ACTIONS(4133), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -188949,7 +188948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4286), 29, + anon_sym_GT, + ACTIONS(4131), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -188983,11 +188983,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4292), 13, + ACTIONS(4455), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -188997,7 +188996,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4294), 29, + anon_sym_GT, + ACTIONS(4457), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189031,11 +189031,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 13, + ACTIONS(4312), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189045,7 +189044,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4302), 29, + anon_sym_GT, + ACTIONS(4314), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189079,11 +189079,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4345), 13, + ACTIONS(4217), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189093,7 +189092,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4347), 29, + anon_sym_GT, + ACTIONS(4219), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189124,9 +189124,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [58001] = 14, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, @@ -189138,7 +189138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(5092), 1, anon_sym_readonly, - STATE(2793), 1, + STATE(2807), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, @@ -189149,11 +189149,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5094), 2, anon_sym_get, anon_sym_set, - STATE(3055), 3, + STATE(3049), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -189183,9 +189183,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [58074] = 12, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -189204,11 +189204,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5094), 2, anon_sym_get, anon_sym_set, - STATE(3055), 3, + STATE(3049), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -189243,11 +189243,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 13, + ACTIONS(4245), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189257,7 +189256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4383), 29, + anon_sym_GT, + ACTIONS(4247), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189291,11 +189291,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4391), 13, + ACTIONS(4316), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189305,7 +189304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4393), 29, + anon_sym_GT, + ACTIONS(4318), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189336,16 +189336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [58245] = 4, - ACTIONS(4677), 1, + ACTIONS(4684), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 13, + ACTIONS(3527), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189355,7 +189354,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3505), 28, + anon_sym_GT, + ACTIONS(3517), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189385,24 +189385,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [58298] = 8, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, ACTIONS(4905), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4700), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189411,7 +189410,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 25, + anon_sym_GT, + ACTIONS(4702), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -189441,11 +189441,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4083), 13, + ACTIONS(4091), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189455,7 +189454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4085), 29, + anon_sym_GT, + ACTIONS(4093), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189486,9 +189486,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [58410] = 14, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, @@ -189500,7 +189500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(5102), 1, anon_sym_readonly, - STATE(2795), 1, + STATE(2809), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, @@ -189511,11 +189511,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5104), 2, anon_sym_get, anon_sym_set, - STATE(3076), 3, + STATE(3053), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -189550,11 +189550,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4399), 13, + ACTIONS(4384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189564,7 +189563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4401), 28, + anon_sym_GT, + ACTIONS(4386), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189597,11 +189597,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4409), 13, + ACTIONS(4400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189611,7 +189610,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4411), 29, + anon_sym_GT, + ACTIONS(4402), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189649,14 +189649,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 3, + ACTIONS(3517), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3517), 3, - anon_sym_GT, + ACTIONS(3527), 3, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, @@ -189694,18 +189694,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [58646] = 6, - ACTIONS(4379), 1, + ACTIONS(4378), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 2, + ACTIONS(4637), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4630), 3, - anon_sym_GT, + ACTIONS(4640), 3, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, @@ -189748,14 +189748,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4169), 3, + ACTIONS(4143), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, + ACTIONS(4145), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, @@ -189795,7 +189795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [58758] = 6, - ACTIONS(4173), 1, + ACTIONS(4167), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, @@ -189804,9 +189804,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LBRACK, ACTIONS(4466), 3, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(4459), 10, anon_sym_STAR, anon_sym_BANG, @@ -189846,16 +189846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [58815] = 4, - ACTIONS(4183), 1, + ACTIONS(4213), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(4127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189865,7 +189864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 28, + anon_sym_GT, + ACTIONS(4129), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189898,11 +189898,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4149), 13, + ACTIONS(4372), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189912,7 +189911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4151), 29, + anon_sym_GT, + ACTIONS(4374), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189946,11 +189946,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4175), 13, + ACTIONS(4380), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -189960,7 +189959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4177), 29, + anon_sym_GT, + ACTIONS(4382), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -189994,11 +189994,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4199), 13, + ACTIONS(4408), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190008,7 +190007,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4201), 29, + anon_sym_GT, + ACTIONS(4410), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190039,16 +190039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [59021] = 4, - ACTIONS(4207), 1, + ACTIONS(4432), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 13, + ACTIONS(4285), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190058,7 +190057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4205), 28, + anon_sym_GT, + ACTIONS(4287), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190091,11 +190091,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3687), 13, + ACTIONS(3703), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190105,7 +190104,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3487), 29, + anon_sym_GT, + ACTIONS(3493), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190139,11 +190139,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3703), 13, + ACTIONS(3691), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190153,7 +190152,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3489), 29, + anon_sym_GT, + ACTIONS(3491), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190184,16 +190184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [59176] = 4, - ACTIONS(4312), 1, + ACTIONS(4289), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4203), 13, + ACTIONS(4285), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190203,7 +190202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4205), 28, + anon_sym_GT, + ACTIONS(4287), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190236,11 +190236,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 13, + ACTIONS(4304), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190250,7 +190249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 29, + anon_sym_GT, + ACTIONS(4306), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190290,11 +190290,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4315), 11, + ACTIONS(4304), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -190302,7 +190301,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4317), 28, + anon_sym_GT, + ACTIONS(4306), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190335,11 +190335,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4327), 13, + ACTIONS(4328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190349,7 +190348,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4329), 29, + anon_sym_GT, + ACTIONS(4330), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190380,9 +190380,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [59388] = 12, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -190401,11 +190401,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5108), 2, sym_number, sym_private_property_identifier, - STATE(3084), 3, + STATE(3055), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -190440,11 +190440,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4341), 13, + ACTIONS(4332), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190454,7 +190453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4343), 29, + anon_sym_GT, + ACTIONS(4334), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190488,11 +190488,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4349), 13, + ACTIONS(4336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190502,7 +190501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4351), 29, + anon_sym_GT, + ACTIONS(4338), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190536,11 +190536,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4353), 13, + ACTIONS(4340), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190550,7 +190549,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4355), 29, + anon_sym_GT, + ACTIONS(4342), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190584,11 +190584,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3398), 13, + ACTIONS(3400), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190598,7 +190597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3400), 29, + anon_sym_GT, + ACTIONS(3402), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190632,11 +190632,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4357), 13, + ACTIONS(4344), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190646,7 +190645,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4359), 29, + anon_sym_GT, + ACTIONS(4346), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190682,11 +190682,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4361), 12, + ACTIONS(4360), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PLUS, @@ -190695,7 +190694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4363), 29, + anon_sym_GT, + ACTIONS(4362), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190729,11 +190729,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4369), 13, + ACTIONS(4364), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190743,7 +190742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4371), 29, + anon_sym_GT, + ACTIONS(4366), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190774,7 +190774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [59816] = 9, - ACTIONS(4085), 1, + ACTIONS(4093), 1, anon_sym_extends, ACTIONS(4529), 1, anon_sym_LBRACK, @@ -190796,7 +190796,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -190804,6 +190803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, @@ -190828,29 +190828,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [59879] = 9, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3644), 1, + ACTIONS(3597), 1, anon_sym_EQ, - ACTIONS(4627), 1, + ACTIONS(3603), 1, + anon_sym_QMARK, + ACTIONS(4637), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3647), 2, + ACTIONS(3600), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4379), 2, + ACTIONS(4378), 2, anon_sym_RPAREN, anon_sym_extends, - ACTIONS(4630), 2, + ACTIONS(4640), 2, anon_sym_AMP, anon_sym_PIPE, ACTIONS(3499), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -190858,6 +190857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, @@ -190885,11 +190885,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4135), 13, + ACTIONS(4147), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190899,7 +190898,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4137), 29, + anon_sym_GT, + ACTIONS(4149), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190933,11 +190933,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4153), 13, + ACTIONS(4155), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -190947,7 +190946,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4155), 29, + anon_sym_GT, + ACTIONS(4157), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -190978,13 +190978,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [60044] = 32, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -191016,9 +191016,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -191058,11 +191058,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 13, + ACTIONS(4145), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191072,7 +191071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4169), 29, + anon_sym_GT, + ACTIONS(4143), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191106,11 +191106,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4171), 13, + ACTIONS(4165), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191120,7 +191119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4173), 29, + anon_sym_GT, + ACTIONS(4167), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191154,11 +191154,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4195), 13, + ACTIONS(4173), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191168,7 +191167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4197), 29, + anon_sym_GT, + ACTIONS(4175), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191202,11 +191202,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2382), 13, + ACTIONS(2390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191216,7 +191215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2380), 29, + anon_sym_GT, + ACTIONS(2388), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191250,11 +191250,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 13, + ACTIONS(4396), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191264,7 +191263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4389), 29, + anon_sym_GT, + ACTIONS(4398), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191298,11 +191298,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 13, + ACTIONS(4412), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191312,7 +191311,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4397), 29, + anon_sym_GT, + ACTIONS(4414), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191346,11 +191346,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4413), 13, + ACTIONS(4416), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191360,7 +191359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4415), 29, + anon_sym_GT, + ACTIONS(4418), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191394,11 +191394,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 13, + ACTIONS(4420), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191408,7 +191407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4419), 29, + anon_sym_GT, + ACTIONS(4422), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191439,9 +191439,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [60561] = 14, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, @@ -191453,7 +191453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(5127), 1, anon_sym_readonly, - STATE(2799), 1, + STATE(2811), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, @@ -191464,11 +191464,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5129), 2, anon_sym_get, anon_sym_set, - STATE(3110), 3, + STATE(3097), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -191501,11 +191501,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4413), 13, + ACTIONS(4416), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191515,7 +191514,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4415), 29, + anon_sym_GT, + ACTIONS(4418), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191549,11 +191549,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 13, + ACTIONS(4420), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191563,7 +191562,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4419), 29, + anon_sym_GT, + ACTIONS(4422), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191597,11 +191597,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 13, + ACTIONS(4139), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191611,7 +191610,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4133), 29, + anon_sym_GT, + ACTIONS(4141), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191645,11 +191645,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191659,7 +191658,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4129), 29, + anon_sym_GT, + ACTIONS(4137), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191690,9 +191690,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [60838] = 9, - ACTIONS(2372), 1, + ACTIONS(2376), 1, anon_sym_extends, - ACTIONS(4139), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, ACTIONS(5131), 1, anon_sym_RPAREN, @@ -191702,7 +191702,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1709), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4142), 2, + ACTIONS(4393), 2, anon_sym_AMP, anon_sym_PIPE, ACTIONS(4870), 2, @@ -191712,7 +191712,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -191720,6 +191719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1711), 22, sym__ternary_qmark, anon_sym_as, @@ -191747,11 +191747,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 13, + ACTIONS(4139), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191761,7 +191760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4133), 29, + anon_sym_GT, + ACTIONS(4141), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191795,11 +191795,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 13, + ACTIONS(4135), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191809,7 +191808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4129), 29, + anon_sym_GT, + ACTIONS(4137), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191843,11 +191843,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4145), 13, + ACTIONS(4151), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191857,7 +191856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4147), 29, + anon_sym_GT, + ACTIONS(4153), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191891,11 +191891,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 13, + ACTIONS(4169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -191905,7 +191904,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4165), 29, + anon_sym_GT, + ACTIONS(4171), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -191936,29 +191936,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [61105] = 9, - ACTIONS(4137), 1, + ACTIONS(4149), 1, anon_sym_extends, - ACTIONS(4439), 1, + ACTIONS(4449), 1, anon_sym_LBRACK, ACTIONS(5134), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4445), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4442), 2, + ACTIONS(4452), 2, anon_sym_AMP, anon_sym_PIPE, ACTIONS(4864), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4433), 11, + ACTIONS(4443), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -191966,7 +191965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 22, + anon_sym_GT, + ACTIONS(4447), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -191990,18 +191990,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [61168] = 5, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - STATE(2350), 1, + STATE(2351), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4429), 13, + ACTIONS(4281), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -192011,7 +192010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4431), 27, + anon_sym_GT, + ACTIONS(4283), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192040,7 +192040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [61223] = 9, - ACTIONS(4085), 1, + ACTIONS(4093), 1, anon_sym_extends, ACTIONS(4529), 1, anon_sym_LBRACK, @@ -192062,7 +192062,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -192070,6 +192069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, @@ -192097,11 +192097,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4145), 13, + ACTIONS(4151), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -192111,7 +192110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4147), 29, + anon_sym_GT, + ACTIONS(4153), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192145,11 +192145,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 13, + ACTIONS(4169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -192159,7 +192158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4165), 29, + anon_sym_GT, + ACTIONS(4171), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192190,16 +192190,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [61388] = 4, - ACTIONS(4286), 1, + ACTIONS(4131), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(4127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + ACTIONS(4129), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [61441] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4189), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -192209,54 +192255,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [61441] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4187), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4189), 29, + anon_sym_GT, + ACTIONS(4191), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192290,11 +192290,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4191), 13, + ACTIONS(4203), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -192304,7 +192303,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4193), 29, + anon_sym_GT, + ACTIONS(4205), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192344,11 +192344,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4218), 11, + ACTIONS(4221), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -192356,7 +192355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4220), 28, + anon_sym_GT, + ACTIONS(4223), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192389,11 +192389,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3392), 13, + ACTIONS(3368), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -192403,7 +192402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3394), 29, + anon_sym_GT, + ACTIONS(3370), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192437,11 +192437,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4222), 13, + ACTIONS(4225), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -192451,7 +192450,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4224), 29, + anon_sym_GT, + ACTIONS(4227), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192485,11 +192485,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 13, + ACTIONS(4229), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -192499,7 +192498,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4228), 29, + anon_sym_GT, + ACTIONS(4231), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192530,11 +192530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [61753] = 14, - ACTIONS(169), 1, + ACTIONS(165), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1551), 1, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, ACTIONS(3282), 1, anon_sym_LBRACE, @@ -192544,7 +192544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(5146), 1, anon_sym_RBRACE, - STATE(4528), 1, + STATE(4525), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -192552,18 +192552,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5084), 2, sym_number, sym_private_property_identifier, - STATE(5134), 3, + STATE(5124), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5594), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5595), 3, + STATE(5589), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, + STATE(5596), 3, + sym_string, + sym__property_name, + sym_computed_property_name, ACTIONS(5144), 23, anon_sym_export, anon_sym_type, @@ -192598,11 +192598,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4226), 11, + ACTIONS(4229), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -192610,7 +192609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4228), 28, + anon_sym_GT, + ACTIONS(4231), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192640,19 +192640,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [61883] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -192676,16 +192676,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -192710,7 +192710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4772), 4, + ACTIONS(4779), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -192725,11 +192725,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4210), 11, + ACTIONS(4177), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -192737,7 +192736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4212), 28, + anon_sym_GT, + ACTIONS(4179), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192767,21 +192767,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [62047] = 6, - ACTIONS(4238), 1, + ACTIONS(4201), 1, anon_sym_extends, - ACTIONS(5033), 1, + ACTIONS(5043), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4236), 2, + ACTIONS(4199), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4230), 11, + ACTIONS(4193), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -192789,7 +192788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4232), 27, + anon_sym_GT, + ACTIONS(4195), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192823,11 +192823,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4248), 13, + ACTIONS(4207), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -192837,7 +192836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4250), 28, + anon_sym_GT, + ACTIONS(4209), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192867,16 +192867,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [62157] = 4, - ACTIONS(5033), 1, + ACTIONS(5043), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4254), 13, + ACTIONS(4233), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -192886,7 +192885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4256), 28, + anon_sym_GT, + ACTIONS(4235), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -192916,19 +192916,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [62210] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -192952,16 +192952,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -192995,11 +192995,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4185), 13, + ACTIONS(4215), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193009,7 +193008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4183), 29, + anon_sym_GT, + ACTIONS(4213), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193047,7 +193047,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193057,6 +193056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(2384), 29, sym__automatic_semicolon, sym__ternary_qmark, @@ -193088,20 +193088,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [62419] = 7, - ACTIONS(3571), 1, + ACTIONS(3569), 1, anon_sym_EQ, - ACTIONS(4379), 1, + ACTIONS(4378), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 2, + ACTIONS(4637), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4630), 3, - anon_sym_GT, + ACTIONS(4640), 3, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, @@ -193143,11 +193143,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 13, + ACTIONS(4237), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193157,7 +193156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4242), 29, + anon_sym_GT, + ACTIONS(4239), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193191,11 +193191,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 13, + ACTIONS(4241), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193205,7 +193204,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4246), 29, + anon_sym_GT, + ACTIONS(4243), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193239,11 +193239,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 13, + ACTIONS(4241), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193253,7 +193252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4246), 29, + anon_sym_GT, + ACTIONS(4243), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193287,11 +193287,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 13, + ACTIONS(4241), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193301,7 +193300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4246), 29, + anon_sym_GT, + ACTIONS(4243), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193335,11 +193335,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 13, + ACTIONS(4249), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193349,7 +193348,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4260), 29, + anon_sym_GT, + ACTIONS(4251), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193383,11 +193383,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 13, + ACTIONS(4249), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193397,7 +193396,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4260), 29, + anon_sym_GT, + ACTIONS(4251), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193431,11 +193431,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 13, + ACTIONS(4249), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193445,7 +193444,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4260), 29, + anon_sym_GT, + ACTIONS(4251), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193479,11 +193479,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 13, + ACTIONS(4253), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193493,7 +193492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 29, + anon_sym_GT, + ACTIONS(4255), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193527,11 +193527,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 13, + ACTIONS(4253), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193541,7 +193540,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 29, + anon_sym_GT, + ACTIONS(4255), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193575,11 +193575,106 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 13, + ACTIONS(4253), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4255), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [62988] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4257), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + ACTIONS(4259), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [63039] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4123), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193589,6 +193684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4125), 29, sym__automatic_semicolon, sym__ternary_qmark, @@ -193619,15 +193715,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [62988] = 3, + [63090] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4262), 13, + ACTIONS(4267), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + ACTIONS(4269), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [63141] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4271), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193637,151 +193780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4264), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [63039] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4266), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4268), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [63090] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4270), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4272), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [63141] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4308), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4310), 29, + anon_sym_GT, + ACTIONS(4273), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193815,11 +193815,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4323), 13, + ACTIONS(4275), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193829,7 +193828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4325), 29, + anon_sym_GT, + ACTIONS(4277), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193863,11 +193863,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2390), 13, + ACTIONS(2382), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193877,7 +193876,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2388), 29, + anon_sym_GT, + ACTIONS(2380), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193911,11 +193911,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 13, + ACTIONS(4292), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193925,7 +193924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4276), 29, + anon_sym_GT, + ACTIONS(4294), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -193965,7 +193965,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -193975,6 +193974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4625), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -194005,9 +194005,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [63398] = 14, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, @@ -194019,7 +194019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(5156), 1, anon_sym_readonly, - STATE(2809), 1, + STATE(2816), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, @@ -194030,11 +194030,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5158), 2, anon_sym_get, anon_sym_set, - STATE(3056), 3, + STATE(3050), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -194064,9 +194064,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [63471] = 12, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -194085,11 +194085,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5160), 2, sym_number, sym_private_property_identifier, - STATE(3086), 3, + STATE(3063), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -194124,11 +194124,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 13, + ACTIONS(4296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194138,7 +194137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 29, + anon_sym_GT, + ACTIONS(4298), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194169,33 +194169,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [63591] = 12, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(4591), 1, anon_sym_STAR, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 2, + ACTIONS(4065), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4681), 2, + ACTIONS(4688), 2, sym_number, sym_private_property_identifier, - ACTIONS(4683), 2, + ACTIONS(4690), 2, anon_sym_get, anon_sym_set, - STATE(3838), 3, + STATE(3904), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -194229,11 +194229,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 13, + ACTIONS(4296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194243,7 +194242,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 29, + anon_sym_GT, + ACTIONS(4298), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194274,9 +194274,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [63711] = 13, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4591), 1, anon_sym_STAR, @@ -194289,7 +194289,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 2, + ACTIONS(4065), 2, anon_sym_COMMA, anon_sym_RBRACE, ACTIONS(4599), 2, @@ -194298,11 +194298,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4603), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -194332,9 +194332,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [63782] = 14, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, @@ -194346,7 +194346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(5170), 1, anon_sym_readonly, - STATE(2815), 1, + STATE(2798), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, @@ -194357,11 +194357,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5172), 2, anon_sym_get, anon_sym_set, - STATE(3133), 3, + STATE(3158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -194394,11 +194394,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 13, + ACTIONS(4296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194408,7 +194407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4280), 29, + anon_sym_GT, + ACTIONS(4298), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194442,11 +194442,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(4300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194456,7 +194455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4290), 29, + anon_sym_GT, + ACTIONS(4302), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194496,7 +194496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194506,6 +194505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1711), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -194540,9 +194540,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(672), 1, anon_sym_RBRACE, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2364), 1, anon_sym_async, @@ -194552,15 +194552,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, - STATE(2805), 1, + STATE(2814), 1, sym_override_modifier, - STATE(4824), 1, + STATE(4823), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -194571,11 +194571,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -194603,11 +194603,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(4300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194617,7 +194616,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4290), 29, + anon_sym_GT, + ACTIONS(4302), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194651,11 +194651,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 13, + ACTIONS(4300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194665,7 +194664,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4290), 29, + anon_sym_GT, + ACTIONS(4302), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194699,11 +194699,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194713,7 +194712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4298), 29, + anon_sym_GT, + ACTIONS(4310), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194747,11 +194747,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 13, + ACTIONS(4308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194761,7 +194760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4298), 29, + anon_sym_GT, + ACTIONS(4310), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -194792,24 +194792,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [64297] = 8, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, ACTIONS(5174), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4700), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -194818,7 +194817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 25, + anon_sym_GT, + ACTIONS(4702), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -194845,19 +194845,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [64358] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5174), 1, anon_sym_LT, @@ -194881,16 +194881,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5208), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -194921,19 +194921,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, [64465] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5174), 1, anon_sym_LT, @@ -194957,16 +194957,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5208), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -194991,25 +194991,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4743), 4, + ACTIONS(4750), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, [64572] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5174), 1, anon_sym_LT, @@ -195033,16 +195033,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5208), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -195067,25 +195067,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4745), 4, + ACTIONS(4752), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, [64679] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5174), 1, anon_sym_LT, @@ -195109,16 +195109,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5208), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -195143,25 +195143,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4747), 4, + ACTIONS(4754), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, [64786] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5174), 1, anon_sym_LT, @@ -195185,16 +195185,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5208), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -195225,13 +195225,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, [64893] = 18, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5174), 1, anon_sym_LT, @@ -195241,16 +195241,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(5198), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -195262,15 +195262,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 7, + ACTIONS(4758), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 16, + anon_sym_GT, + ACTIONS(4756), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195288,35 +195288,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [64974] = 13, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5198), 1, anon_sym_STAR_STAR, ACTIONS(5210), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4758), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -195325,7 +195324,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 19, + anon_sym_GT, + ACTIONS(4756), 19, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195346,15 +195346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [65045] = 25, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(5174), 1, anon_sym_LT, @@ -195370,16 +195370,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(5198), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -195404,7 +195404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 10, + ACTIONS(4756), 10, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195416,15 +195416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [65140] = 26, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(5174), 1, anon_sym_LT, @@ -195442,16 +195442,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(5198), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -195476,7 +195476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 9, + ACTIONS(4756), 9, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195487,13 +195487,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [65237] = 16, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5196), 1, anon_sym_PERCENT, @@ -195501,16 +195501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5210), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -195519,16 +195519,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 8, + ACTIONS(4758), 8, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 18, + anon_sym_GT, + ACTIONS(4756), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195548,13 +195548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [65314] = 22, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5174), 1, anon_sym_LT, @@ -195564,16 +195564,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(5198), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -195594,7 +195594,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5204), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4751), 3, + ACTIONS(4758), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, @@ -195602,7 +195602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4756), 11, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195615,13 +195615,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [65403] = 23, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5174), 1, anon_sym_LT, @@ -195633,19 +195633,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(5198), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, ACTIONS(5176), 2, @@ -195670,7 +195670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 11, + ACTIONS(4756), 11, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195683,13 +195683,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [65494] = 24, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5174), 1, anon_sym_LT, @@ -195703,19 +195703,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(5198), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, ACTIONS(5176), 2, @@ -195740,7 +195740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 10, + ACTIONS(4756), 10, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195752,13 +195752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [65587] = 15, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5196), 1, anon_sym_PERCENT, @@ -195766,25 +195766,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5210), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4751), 10, + ACTIONS(4758), 10, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -195792,7 +195791,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 18, + anon_sym_GT, + ACTIONS(4756), 18, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195812,40 +195812,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [65662] = 16, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5198), 1, anon_sym_STAR_STAR, ACTIONS(5210), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4758), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -195854,7 +195853,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 17, + anon_sym_GT, + ACTIONS(4756), 17, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -195873,13 +195873,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, [65739] = 20, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5174), 1, anon_sym_LT, @@ -195889,16 +195889,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(5198), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -195917,13 +195917,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 5, + ACTIONS(4758), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 13, + ACTIONS(4756), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -195938,15 +195938,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [65824] = 27, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(5174), 1, anon_sym_LT, @@ -195966,16 +195966,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(5198), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -196000,7 +196000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 8, + ACTIONS(4756), 8, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -196010,19 +196010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [65923] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5174), 1, anon_sym_LT, @@ -196046,16 +196046,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5208), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -196086,19 +196086,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, [66030] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5174), 1, anon_sym_LT, @@ -196122,16 +196122,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5208), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -196156,25 +196156,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4756), 4, + ACTIONS(4763), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, [66137] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5174), 1, anon_sym_LT, @@ -196198,16 +196198,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5208), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -196238,19 +196238,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, [66244] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5174), 1, anon_sym_LT, @@ -196274,16 +196274,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5208), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -196314,19 +196314,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, [66351] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5174), 1, anon_sym_LT, @@ -196350,16 +196350,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5208), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -196390,19 +196390,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, [66458] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5174), 1, anon_sym_LT, @@ -196426,16 +196426,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5208), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -196460,25 +196460,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4758), 4, + ACTIONS(4765), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, [66565] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5174), 1, anon_sym_LT, @@ -196502,16 +196502,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5208), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -196536,25 +196536,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4760), 4, + ACTIONS(4767), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, [66672] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5174), 1, anon_sym_LT, @@ -196578,16 +196578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5208), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -196612,39 +196612,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4772), 4, + ACTIONS(4779), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BQUOTE, anon_sym_implements, [66779] = 12, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5213), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4791), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -196653,6 +196652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4793), 20, sym__ternary_qmark, anon_sym_as, @@ -196675,38 +196675,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_implements, [66848] = 15, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5216), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4798), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -196715,6 +196714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4800), 18, sym__ternary_qmark, anon_sym_LBRACE, @@ -196735,19 +196735,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, [66923] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5174), 1, anon_sym_LT, @@ -196771,16 +196771,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5208), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5176), 2, @@ -196811,30 +196811,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, [67030] = 11, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5219), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 12, + ACTIONS(4781), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -196843,7 +196842,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 22, + anon_sym_GT, + ACTIONS(4783), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -196872,11 +196872,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4157), 12, + ACTIONS(4159), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PIPE, anon_sym_PLUS, @@ -196885,7 +196884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4159), 29, + anon_sym_GT, + ACTIONS(4161), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -196916,79 +196916,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, [67150] = 33, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, ACTIONS(5222), 1, anon_sym_COMMA, ACTIONS(5224), 1, anon_sym_RBRACK, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4566), 1, + STATE(4579), 1, aux_sym_array_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -197000,7 +197000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197010,6 +197009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4507), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -197039,15 +197039,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67310] = 3, + [67310] = 4, + ACTIONS(3573), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4489), 13, + ACTIONS(3499), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + ACTIONS(3503), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [67362] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4489), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197057,6 +197104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4491), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -197086,7 +197134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67360] = 5, + [67412] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -197101,7 +197149,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197111,6 +197158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -197135,7 +197183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67414] = 3, + [67466] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -197143,7 +197191,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197153,6 +197200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -197182,20 +197230,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67464] = 5, - ACTIONS(1751), 1, + [67516] = 5, + ACTIONS(1923), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1743), 2, + ACTIONS(1915), 2, anon_sym_else, anon_sym_while, - ACTIONS(1747), 13, + ACTIONS(1919), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197205,7 +197252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1749), 25, + anon_sym_GT, + ACTIONS(1921), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -197231,10 +197279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67518] = 11, - ACTIONS(1635), 1, + [67570] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -197251,11 +197299,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5236), 2, anon_sym_get, anon_sym_set, - STATE(3107), 3, + STATE(3141), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -197286,7 +197334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67584] = 3, + [67636] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -197294,7 +197342,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197304,6 +197351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4537), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -197333,7 +197381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67634] = 3, + [67686] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -197341,7 +197389,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197351,6 +197398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4541), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -197380,12 +197428,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67684] = 10, - ACTIONS(2338), 1, + [67736] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5238), 1, anon_sym_STAR, @@ -197398,11 +197446,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5242), 2, anon_sym_get, anon_sym_set, - STATE(3758), 3, + STATE(3760), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -197434,10 +197482,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67748] = 11, - ACTIONS(1635), 1, + [67800] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -197454,11 +197502,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5250), 2, anon_sym_get, anon_sym_set, - STATE(3124), 3, + STATE(3157), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -197489,15 +197537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [67814] = 6, - ACTIONS(3617), 1, - anon_sym_QMARK, - ACTIONS(3644), 1, + [67866] = 6, + ACTIONS(3597), 1, anon_sym_EQ, + ACTIONS(3603), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3647), 3, + ACTIONS(3600), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -197505,7 +197553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197515,57 +197562,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [67870] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1855), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1857), 28, - sym__automatic_semicolon, + ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197586,19 +197587,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67920] = 6, + [67922] = 6, ACTIONS(4463), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 2, + ACTIONS(4167), 2, anon_sym_COMMA, anon_sym_extends, ACTIONS(4466), 3, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(4459), 10, anon_sym_STAR, anon_sym_BANG, @@ -197636,7 +197637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67976] = 3, + [67978] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -197644,7 +197645,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197654,6 +197654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4545), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -197683,22 +197684,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68026] = 5, + [68028] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5013), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5015), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(1843), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197708,10 +197701,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(1845), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197732,20 +197731,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68080] = 5, - ACTIONS(1775), 1, - sym__automatic_semicolon, + [68078] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1771), 13, + ACTIONS(5013), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5015), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3499), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197755,12 +197755,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 25, + anon_sym_GT, + ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197781,15 +197780,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68134] = 3, + [68132] = 5, + ACTIONS(1763), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 13, + ACTIONS(1755), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1759), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197799,15 +197802,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1761), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197828,15 +197829,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68184] = 3, + [68186] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1869), 13, + ACTIONS(1853), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197846,7 +197846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1871), 28, + anon_sym_GT, + ACTIONS(1855), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -197875,20 +197876,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68234] = 5, - ACTIONS(1789), 1, + [68236] = 5, + ACTIONS(1777), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1781), 2, + ACTIONS(1769), 2, anon_sym_else, anon_sym_while, - ACTIONS(1785), 13, + ACTIONS(1773), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197898,56 +197898,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1787), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [68288] = 5, - ACTIONS(1799), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1791), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1795), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1797), 25, + ACTIONS(1775), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -197973,7 +197925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68342] = 3, + [68290] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -197981,7 +197933,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -197991,6 +197942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4549), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -198020,143 +197972,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68392] = 7, - ACTIONS(5252), 1, - anon_sym_LPAREN, - ACTIONS(5255), 1, - anon_sym_COLON, - ACTIONS(5257), 1, - anon_sym_LT, - ACTIONS(5260), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4493), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4495), 25, + [68340] = 5, + ACTIONS(1787), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [68450] = 33, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_GT_GT, - ACTIONS(4717), 1, - anon_sym_AMP, - ACTIONS(4719), 1, - anon_sym_CARET, - ACTIONS(4721), 1, - anon_sym_PIPE, - ACTIONS(4725), 1, - anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_STAR_STAR, - ACTIONS(4735), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, - sym__ternary_qmark, - ACTIONS(5222), 1, - anon_sym_COMMA, - ACTIONS(5262), 1, - anon_sym_RBRACK, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4566), 1, - aux_sym_array_repeat1, - STATE(4822), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4715), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4733), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68560] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4551), 13, + ACTIONS(1779), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1783), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -198166,15 +197994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4553), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1785), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198195,24 +198021,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68610] = 15, + [68394] = 7, + ACTIONS(5252), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_COLON, + ACTIONS(5257), 1, + anon_sym_LT, + ACTIONS(5260), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4493), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4495), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68452] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4551), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4553), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [68502] = 15, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, ACTIONS(5074), 1, anon_sym_RBRACE, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -198223,11 +198147,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -198254,103 +198178,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68684] = 33, - ACTIONS(4031), 1, + [68576] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4704), 1, + anon_sym_LT, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4893), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4895), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4897), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4901), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(4748), 1, sym__ternary_qmark, - ACTIONS(5264), 1, - anon_sym_RPAREN, - STATE(1642), 1, + ACTIONS(5222), 1, + anon_sym_COMMA, + ACTIONS(5262), 1, + anon_sym_RBRACK, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4579), 1, + aux_sym_array_repeat1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4883), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4891), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4899), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68794] = 16, + [68686] = 16, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2364), 1, anon_sym_async, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, ACTIONS(5074), 1, anon_sym_RBRACE, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -198361,11 +198285,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -198391,34 +198315,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [68870] = 3, + [68762] = 6, + ACTIONS(4378), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1815), 13, + ACTIONS(4640), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4637), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(3499), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1817), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(3503), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198438,37 +198365,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68920] = 6, - ACTIONS(4379), 1, - anon_sym_extends, + [68818] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4627), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3499), 11, + ACTIONS(1803), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 24, + anon_sym_GT, + ACTIONS(1805), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -198488,20 +198412,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68976] = 33, - ACTIONS(4031), 1, + [68868] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -198527,20 +198451,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - ACTIONS(5266), 1, + ACTIONS(5264), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -198565,20 +198489,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69086] = 33, - ACTIONS(4031), 1, + [68978] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -198604,20 +198528,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - ACTIONS(5268), 1, + ACTIONS(5266), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -198642,8 +198566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69196] = 6, - ACTIONS(4173), 1, + [69088] = 6, + ACTIONS(4167), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, @@ -198659,7 +198583,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -198667,6 +198590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4461), 24, sym__ternary_qmark, anon_sym_as, @@ -198692,20 +198616,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69252] = 33, - ACTIONS(4031), 1, + [69144] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -198731,20 +198655,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - ACTIONS(5270), 1, + ACTIONS(5268), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -198769,20 +198693,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69362] = 33, - ACTIONS(4031), 1, + [69254] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -198808,20 +198732,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - ACTIONS(5272), 1, + ACTIONS(5270), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -198846,24 +198770,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69472] = 15, + [69364] = 15, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, ACTIONS(5076), 1, anon_sym_RBRACE, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -198874,11 +198798,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -198905,103 +198829,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [69546] = 33, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5274), 1, - anon_sym_RPAREN, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4645), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, - sym_optional_chain, + [69438] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4509), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + anon_sym_GT, + ACTIONS(4511), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69656] = 16, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69488] = 16, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2364), 1, anon_sym_async, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, ACTIONS(5076), 1, anon_sym_RBRACE, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -199012,11 +198906,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -199042,16 +198936,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [69732] = 9, - ACTIONS(3837), 1, + [69564] = 9, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3865), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -199063,7 +198957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -199095,16 +198989,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [69794] = 9, - ACTIONS(3837), 1, + [69626] = 9, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3847), 1, + ACTIONS(3865), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -199116,7 +199010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -199148,19 +199042,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [69856] = 4, + [69688] = 33, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(4879), 1, + anon_sym_COMMA, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4887), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4889), 1, + anon_sym_GT_GT, + ACTIONS(4893), 1, + anon_sym_AMP, + ACTIONS(4895), 1, + anon_sym_CARET, + ACTIONS(4897), 1, + anon_sym_PIPE, + ACTIONS(4901), 1, + anon_sym_PERCENT, + ACTIONS(4903), 1, + anon_sym_STAR_STAR, + ACTIONS(4905), 1, + anon_sym_LT, + ACTIONS(4913), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4915), 1, + sym__ternary_qmark, + ACTIONS(5272), 1, + anon_sym_RPAREN, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4650), 1, + aux_sym_sequence_expression_repeat1, + STATE(4828), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4877), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4883), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4891), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4899), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4909), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4911), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4907), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69798] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4513), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4515), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69848] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 3, + ACTIONS(4213), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4179), 13, + ACTIONS(4127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -199170,7 +199187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 25, + anon_sym_GT, + ACTIONS(4129), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -199196,19 +199214,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69908] = 4, + [69900] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 3, + ACTIONS(4131), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4179), 13, + ACTIONS(4127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -199218,7 +199235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 25, + anon_sym_GT, + ACTIONS(4129), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -199244,45 +199262,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69960] = 21, + [69952] = 21, ACTIONS(233), 1, anon_sym_STAR, ACTIONS(2026), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(5278), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5280), 1, + ACTIONS(5278), 1, anon_sym_RBRACE, - ACTIONS(5282), 1, + ACTIONS(5280), 1, anon_sym_async, - ACTIONS(5286), 1, + ACTIONS(5284), 1, anon_sym_static, - ACTIONS(5288), 1, + ACTIONS(5286), 1, anon_sym_readonly, - ACTIONS(5294), 1, + ACTIONS(5292), 1, anon_sym_override, - STATE(2781), 1, + STATE(2785), 1, sym_accessibility_modifier, - STATE(2816), 1, + STATE(2801), 1, sym_override_modifier, - STATE(4902), 1, + STATE(4900), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5284), 2, + ACTIONS(5282), 2, sym_number, sym_private_property_identifier, - ACTIONS(5290), 2, + ACTIONS(5288), 2, anon_sym_get, anon_sym_set, - ACTIONS(5292), 3, + ACTIONS(5290), 3, anon_sym_public, anon_sym_private, anon_sym_protected, @@ -199290,11 +199308,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym__property_name, sym_computed_property_name, - STATE(4901), 3, + STATE(4899), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(5276), 14, + ACTIONS(5274), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -199309,16 +199327,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [70046] = 9, - ACTIONS(3837), 1, + [70038] = 9, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3909), 1, + ACTIONS(3816), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4824), 1, + STATE(4823), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -199330,7 +199348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -199362,16 +199380,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [70108] = 9, - ACTIONS(3837), 1, + [70100] = 9, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3909), 1, + ACTIONS(3816), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4824), 1, + STATE(4823), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -199383,7 +199401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -199415,20 +199433,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [70170] = 8, + [70162] = 33, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(4879), 1, + anon_sym_COMMA, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4887), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4889), 1, + anon_sym_GT_GT, + ACTIONS(4893), 1, + anon_sym_AMP, + ACTIONS(4895), 1, + anon_sym_CARET, + ACTIONS(4897), 1, + anon_sym_PIPE, + ACTIONS(4901), 1, + anon_sym_PERCENT, + ACTIONS(4903), 1, + anon_sym_STAR_STAR, + ACTIONS(4905), 1, + anon_sym_LT, + ACTIONS(4913), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4915), 1, + sym__ternary_qmark, + ACTIONS(5294), 1, + anon_sym_RPAREN, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4650), 1, + aux_sym_sequence_expression_repeat1, + STATE(4828), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4877), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4883), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4891), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4899), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4909), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4911), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4907), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70272] = 8, ACTIONS(1709), 1, anon_sym_EQ, - ACTIONS(4139), 1, + ACTIONS(4390), 1, anon_sym_LBRACK, ACTIONS(4870), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4142), 2, + ACTIONS(4393), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2372), 3, + ACTIONS(2376), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, @@ -199436,7 +199531,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -199444,6 +199538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1711), 22, sym__ternary_qmark, anon_sym_as, @@ -199467,28 +199562,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70230] = 8, - ACTIONS(4435), 1, + [70332] = 8, + ACTIONS(4445), 1, anon_sym_EQ, - ACTIONS(4439), 1, + ACTIONS(4449), 1, anon_sym_LBRACK, ACTIONS(4864), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4442), 2, + ACTIONS(4452), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4137), 3, + ACTIONS(4149), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4433), 11, + ACTIONS(4443), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -199496,7 +199590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 22, + anon_sym_GT, + ACTIONS(4447), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -199519,34 +199614,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70290] = 3, + [70392] = 7, + ACTIONS(1709), 1, + anon_sym_EQ, + ACTIONS(4390), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4509), 13, + ACTIONS(2376), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4393), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(1707), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4511), 28, + ACTIONS(1711), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -199566,22 +199665,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70340] = 7, - ACTIONS(1709), 1, + [70450] = 7, + ACTIONS(4445), 1, anon_sym_EQ, - ACTIONS(4139), 1, + ACTIONS(4449), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2372), 2, + ACTIONS(4149), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4142), 3, - anon_sym_GT, + ACTIONS(4452), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1707), 10, + anon_sym_GT, + ACTIONS(4443), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199592,7 +199691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 24, + ACTIONS(4447), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -199617,67 +199716,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70398] = 7, - ACTIONS(4435), 1, - anon_sym_EQ, - ACTIONS(4439), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4137), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4442), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4433), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4437), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [70456] = 9, - ACTIONS(3837), 1, + [70508] = 9, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3850), 1, + ACTIONS(3862), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -199689,7 +199737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -199721,16 +199769,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [70518] = 9, - ACTIONS(3837), 1, + [70570] = 9, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3850), 1, + ACTIONS(3862), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -199742,7 +199790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -199774,16 +199822,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [70580] = 9, - ACTIONS(3837), 1, + [70632] = 9, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3840), 1, + ACTIONS(3938), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -199795,7 +199843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -199827,16 +199875,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [70642] = 9, - ACTIONS(3837), 1, + [70694] = 9, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3840), 1, + ACTIONS(3938), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -199848,7 +199896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -199880,63 +199928,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [70704] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4513), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4515), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [70754] = 9, - ACTIONS(3837), 1, + [70756] = 9, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3930), 1, + ACTIONS(3847), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -199948,7 +199949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -199980,16 +199981,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [70816] = 9, - ACTIONS(3837), 1, + [70818] = 9, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3930), 1, + ACTIONS(3847), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -200001,7 +200002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -200033,14 +200034,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [70878] = 31, - ACTIONS(4633), 1, + [70880] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1883), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1885), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4635), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [70930] = 31, + ACTIONS(4627), 1, + anon_sym_LPAREN, + ACTIONS(4629), 1, + anon_sym_LBRACK, + ACTIONS(4631), 1, + anon_sym_DOT, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -200072,9 +200120,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -200108,15 +200156,17 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [70984] = 3, + [71036] = 4, + ACTIONS(5296), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4493), 13, + ACTIONS(4917), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200126,15 +200176,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4495), 28, + anon_sym_GT, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(4919), 24, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -200150,20 +200201,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [71034] = 3, + [71088] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4473), 13, + ACTIONS(4459), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200173,7 +200221,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4475), 28, + anon_sym_GT, + ACTIONS(4461), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -200202,15 +200251,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71084] = 3, + [71138] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4459), 13, + ACTIONS(4493), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200220,7 +200268,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4461), 28, + anon_sym_GT, + ACTIONS(4495), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -200249,29 +200298,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71134] = 10, - ACTIONS(2338), 1, + [71188] = 33, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4704), 1, + anon_sym_LT, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4716), 1, + anon_sym_AMP_AMP, + ACTIONS(4718), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4720), 1, + anon_sym_GT_GT, + ACTIONS(4724), 1, + anon_sym_AMP, + ACTIONS(4726), 1, + anon_sym_CARET, + ACTIONS(4728), 1, + anon_sym_PIPE, + ACTIONS(4732), 1, + anon_sym_PERCENT, + ACTIONS(4734), 1, + anon_sym_STAR_STAR, + ACTIONS(4742), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(4748), 1, + sym__ternary_qmark, + ACTIONS(5298), 1, + anon_sym_COMMA, + ACTIONS(5300), 1, + anon_sym_SEMI, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(3772), 1, + aux_sym_sequence_expression_repeat1, + STATE(4828), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4712), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4722), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4730), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4738), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4740), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4736), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71298] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(5296), 1, + ACTIONS(5302), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5298), 2, + ACTIONS(5304), 2, sym_number, sym_private_property_identifier, - ACTIONS(5300), 2, + ACTIONS(5306), 2, anon_sym_get, anon_sym_set, - STATE(3817), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -200303,95 +200429,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [71198] = 33, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_GT_GT, - ACTIONS(4717), 1, - anon_sym_AMP, - ACTIONS(4719), 1, - anon_sym_CARET, - ACTIONS(4721), 1, - anon_sym_PIPE, - ACTIONS(4725), 1, - anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_STAR_STAR, - ACTIONS(4735), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, - sym__ternary_qmark, - ACTIONS(5302), 1, - anon_sym_COMMA, - ACTIONS(5304), 1, - anon_sym_SEMI, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(3770), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, - sym_optional_chain, + [71362] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4715), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4733), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71308] = 4, - ACTIONS(5306), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4917), 16, + ACTIONS(4473), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200401,15 +200446,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(4919), 24, + anon_sym_GT, + ACTIONS(4475), 28, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -200425,87 +200471,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71360] = 33, - ACTIONS(4031), 1, + anon_sym_satisfies, + [71412] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, ACTIONS(5222), 1, anon_sym_COMMA, ACTIONS(5308), 1, anon_sym_RBRACK, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, - STATE(4994), 1, + STATE(5004), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71470] = 5, + [71522] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -200520,7 +200568,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200530,6 +200577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -200554,7 +200602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71524] = 5, + [71576] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -200569,7 +200617,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200579,6 +200626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -200603,7 +200651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71578] = 5, + [71630] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -200618,7 +200666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200628,6 +200675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -200652,25 +200700,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71632] = 8, - ACTIONS(4633), 1, + [71684] = 8, + ACTIONS(4627), 1, anon_sym_LPAREN, ACTIONS(5318), 1, anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4700), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200679,7 +200726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 24, + anon_sym_GT, + ACTIONS(4702), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -200704,7 +200752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71692] = 5, + [71744] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -200719,7 +200767,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200729,6 +200776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -200753,14 +200801,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71746] = 31, - ACTIONS(4633), 1, + [71798] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -200792,9 +200840,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -200828,14 +200876,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71852] = 31, - ACTIONS(4633), 1, + [71904] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -200867,9 +200915,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -200895,7 +200943,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5348), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4743), 3, + ACTIONS(4750), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, @@ -200903,14 +200951,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71958] = 31, - ACTIONS(4633), 1, + [72010] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -200942,9 +200990,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -200970,7 +201018,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5348), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4745), 3, + ACTIONS(4752), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, @@ -200978,7 +201026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72064] = 3, + [72116] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -200986,7 +201034,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -200996,6 +201043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4557), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -201025,74 +201073,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72114] = 31, - ACTIONS(4031), 1, + [72166] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, @@ -201100,15 +201148,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - [72220] = 3, + [72272] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(4127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -201118,7 +201165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 28, + anon_sym_GT, + ACTIONS(4129), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201147,14 +201195,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72270] = 31, - ACTIONS(4633), 1, + [72322] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -201186,9 +201234,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -201214,7 +201262,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5348), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4747), 3, + ACTIONS(4754), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, @@ -201222,14 +201270,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72376] = 31, - ACTIONS(4633), 1, + [72428] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -201261,9 +201309,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -201297,14 +201345,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72482] = 18, - ACTIONS(4633), 1, + [72534] = 18, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5318), 1, anon_sym_LT, @@ -201316,9 +201364,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -201335,15 +201383,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5338), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 7, + ACTIONS(4758), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 15, + anon_sym_GT, + ACTIONS(4756), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201359,22 +201407,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [72562] = 33, + [72614] = 33, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -201400,18 +201448,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(5356), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4676), 1, + STATE(4669), 1, aux_sym_array_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -201436,14 +201484,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72672] = 13, - ACTIONS(4633), 1, + [72724] = 13, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5342), 1, anon_sym_STAR_STAR, @@ -201451,9 +201499,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -201461,11 +201509,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4845), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4758), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -201474,7 +201521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 18, + anon_sym_GT, + ACTIONS(4756), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201493,93 +201541,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [72742] = 33, - ACTIONS(4031), 1, + [72794] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - ACTIONS(5302), 1, + ACTIONS(5298), 1, anon_sym_COMMA, ACTIONS(5361), 1, anon_sym_RBRACK, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(3770), 1, + STATE(3772), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72852] = 25, - ACTIONS(4633), 1, + [72904] = 25, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(5318), 1, anon_sym_LT, @@ -201597,9 +201645,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -201629,7 +201677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 9, + ACTIONS(4756), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201639,16 +201687,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [72946] = 26, - ACTIONS(4633), 1, + [72998] = 26, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(5318), 1, anon_sym_LT, @@ -201668,9 +201716,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -201700,7 +201748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 8, + ACTIONS(4756), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201709,14 +201757,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [73042] = 16, - ACTIONS(4633), 1, + [73094] = 16, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5340), 1, anon_sym_PERCENT, @@ -201726,9 +201774,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -201742,16 +201790,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5338), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 8, + ACTIONS(4758), 8, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 17, + anon_sym_GT, + ACTIONS(4756), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201769,14 +201817,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [73118] = 22, - ACTIONS(4633), 1, + [73170] = 22, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5318), 1, anon_sym_LT, @@ -201788,9 +201836,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -201816,7 +201864,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5348), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4751), 3, + ACTIONS(4758), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, @@ -201824,7 +201872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 10, + ACTIONS(4756), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201835,14 +201883,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [73206] = 23, - ACTIONS(4633), 1, + [73258] = 23, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5318), 1, anon_sym_LT, @@ -201856,14 +201904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, ACTIONS(4845), 2, @@ -201891,7 +201939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 10, + ACTIONS(4756), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201902,14 +201950,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [73296] = 24, - ACTIONS(4633), 1, + [73348] = 24, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5318), 1, anon_sym_LT, @@ -201925,14 +201973,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, ACTIONS(4845), 2, @@ -201960,7 +202008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 9, + ACTIONS(4756), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -201970,14 +202018,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [73388] = 15, - ACTIONS(4633), 1, + [73440] = 15, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5340), 1, anon_sym_PERCENT, @@ -201987,9 +202035,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -202000,10 +202048,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5320), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4751), 10, + ACTIONS(4758), 10, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -202011,7 +202058,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 17, + anon_sym_GT, + ACTIONS(4756), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202029,14 +202077,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [73462] = 16, - ACTIONS(4633), 1, + [73514] = 16, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -202050,9 +202098,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -202060,10 +202108,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4845), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4758), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -202072,7 +202119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 16, + anon_sym_GT, + ACTIONS(4756), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_SEMI, @@ -202089,14 +202137,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [73538] = 20, - ACTIONS(4633), 1, + [73590] = 20, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5318), 1, anon_sym_LT, @@ -202108,9 +202156,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -202134,13 +202182,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 5, + ACTIONS(4758), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 12, + ACTIONS(4756), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202153,16 +202201,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [73622] = 27, - ACTIONS(4633), 1, + [73674] = 27, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(5318), 1, anon_sym_LT, @@ -202184,9 +202232,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -202216,7 +202264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 7, + ACTIONS(4756), 7, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -202224,14 +202272,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [73720] = 31, - ACTIONS(4633), 1, + [73772] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -202263,9 +202311,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -202299,14 +202347,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73826] = 31, - ACTIONS(4633), 1, + [73878] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -202338,9 +202386,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -202366,7 +202414,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5348), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4756), 3, + ACTIONS(4763), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, @@ -202374,14 +202422,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73932] = 31, - ACTIONS(4633), 1, + [73984] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -202413,9 +202461,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -202449,14 +202497,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74038] = 31, - ACTIONS(4633), 1, + [74090] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -202488,9 +202536,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -202524,14 +202572,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74144] = 31, - ACTIONS(4633), 1, + [74196] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -202563,9 +202611,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -202599,14 +202647,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74250] = 31, - ACTIONS(4633), 1, + [74302] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -202638,9 +202686,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -202666,7 +202714,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5348), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4758), 3, + ACTIONS(4765), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, @@ -202674,14 +202722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74356] = 31, - ACTIONS(4633), 1, + [74408] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -202713,9 +202761,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -202741,7 +202789,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5348), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4760), 3, + ACTIONS(4767), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, @@ -202749,12 +202797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74462] = 10, - ACTIONS(2338), 1, + [74514] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5086), 1, anon_sym_STAR, @@ -202767,11 +202815,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5365), 2, anon_sym_get, anon_sym_set, - STATE(3792), 3, + STATE(3794), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -202803,10 +202851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [74526] = 11, - ACTIONS(1635), 1, + [74578] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -202823,11 +202871,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5094), 2, anon_sym_get, anon_sym_set, - STATE(3055), 3, + STATE(3049), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -202858,91 +202906,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [74592] = 33, - ACTIONS(4031), 1, + [74644] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - ACTIONS(5302), 1, + ACTIONS(5298), 1, anon_sym_COMMA, ACTIONS(5367), 1, anon_sym_RBRACK, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(3770), 1, + STATE(3772), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74702] = 31, - ACTIONS(4633), 1, + [74754] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -202974,9 +203022,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -203002,7 +203050,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5348), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4772), 3, + ACTIONS(4779), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_BQUOTE, @@ -203010,7 +203058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74808] = 5, + [74860] = 5, ACTIONS(1741), 1, sym__automatic_semicolon, ACTIONS(5), 2, @@ -203023,7 +203071,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -203033,6 +203080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1739), 25, sym__ternary_qmark, anon_sym_as, @@ -203059,20 +203107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74862] = 5, - ACTIONS(1841), 1, + [74914] = 5, + ACTIONS(1829), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1833), 2, + ACTIONS(1821), 2, anon_sym_else, anon_sym_while, - ACTIONS(1837), 13, + ACTIONS(1825), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -203082,7 +203129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1839), 25, + anon_sym_GT, + ACTIONS(1827), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -203108,31 +203156,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74916] = 11, - ACTIONS(1635), 1, + [74968] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(5238), 1, + ACTIONS(5096), 1, anon_sym_STAR, - ACTIONS(5369), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5371), 2, + ACTIONS(5369), 2, sym_number, sym_private_property_identifier, - ACTIONS(5373), 2, + ACTIONS(5371), 2, anon_sym_get, anon_sym_set, - STATE(3066), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -203142,11 +203188,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 20, + ACTIONS(2362), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203163,14 +203210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [74982] = 10, - ACTIONS(2338), 1, + [75032] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(5373), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, @@ -203181,11 +203228,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5377), 2, anon_sym_get, anon_sym_set, - STATE(3858), 3, + STATE(3761), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -203217,15 +203264,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75046] = 10, - ACTIONS(2338), 1, + [75096] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5379), 1, + ACTIONS(5238), 1, anon_sym_STAR, + ACTIONS(5379), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -203235,11 +203284,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5383), 2, anon_sym_get, anon_sym_set, - STATE(3760), 3, + STATE(3065), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -203249,12 +203298,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 21, + ACTIONS(3705), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -203271,66 +203319,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75110] = 7, - ACTIONS(3619), 1, - anon_sym_EQ, - ACTIONS(4379), 1, - anon_sym_extends, + [75162] = 10, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5033), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 2, + ACTIONS(5385), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5387), 2, + anon_sym_get, + anon_sym_set, + STATE(3766), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 9, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 24, - sym__ternary_qmark, - anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [75168] = 3, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2362), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75226] = 5, + ACTIONS(1847), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4497), 13, + ACTIONS(1839), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1843), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -203340,15 +203395,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4499), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1845), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203369,36 +203422,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75218] = 5, - ACTIONS(1859), 1, - sym__automatic_semicolon, + [75280] = 7, + ACTIONS(3593), 1, + anon_sym_EQ, + ACTIONS(4378), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1851), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1855), 13, + ACTIONS(4637), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4640), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1857), 25, + ACTIONS(3503), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -203418,69 +203473,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75272] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5035), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5385), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5387), 2, - anon_sym_get, - anon_sym_set, - STATE(3765), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75336] = 3, + [75338] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4469), 13, + ACTIONS(4497), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -203490,7 +203490,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4471), 28, + anon_sym_GT, + ACTIONS(4499), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -203519,14 +203520,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75386] = 10, - ACTIONS(2338), 1, + [75388] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(4649), 1, anon_sym_STAR, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -203537,11 +203538,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5391), 2, anon_sym_get, anon_sym_set, - STATE(3872), 3, + STATE(3870), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -203573,85 +203574,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75450] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5393), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5395), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5397), 2, - anon_sym_get, - anon_sym_set, - STATE(3859), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75514] = 11, - ACTIONS(1635), 1, + [75452] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4647), 1, anon_sym_LBRACK, - ACTIONS(5399), 1, + ACTIONS(5033), 1, anon_sym_STAR, - ACTIONS(5401), 1, + ACTIONS(5035), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5403), 2, + ACTIONS(5037), 2, sym_number, sym_private_property_identifier, - ACTIONS(5405), 2, + ACTIONS(5041), 2, anon_sym_get, anon_sym_set, - STATE(3158), 3, + STATE(3145), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -203682,31 +203629,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75580] = 11, - ACTIONS(1635), 1, + [75518] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4647), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(5035), 1, + ACTIONS(5393), 1, anon_sym_STAR, - ACTIONS(5037), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5395), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5397), 2, + anon_sym_get, + anon_sym_set, + STATE(3859), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2362), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75582] = 11, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(5399), 1, + anon_sym_STAR, + ACTIONS(5401), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5039), 2, + ACTIONS(5403), 2, sym_number, sym_private_property_identifier, - ACTIONS(5043), 2, + ACTIONS(5405), 2, anon_sym_get, anon_sym_set, STATE(3108), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -203737,10 +203738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75646] = 11, - ACTIONS(1635), 1, + [75648] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -203757,11 +203758,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5413), 2, anon_sym_get, anon_sym_set, - STATE(3047), 3, + STATE(3048), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -203792,12 +203793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75712] = 10, - ACTIONS(2338), 1, + [75714] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5407), 1, anon_sym_STAR, @@ -203810,11 +203811,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5417), 2, anon_sym_get, anon_sym_set, - STATE(3904), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -203846,36 +203847,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75776] = 5, - ACTIONS(1873), 1, - sym__automatic_semicolon, + [75778] = 7, + ACTIONS(4376), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1865), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1869), 13, + ACTIONS(4378), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4640), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4637), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3499), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1871), 25, + anon_sym_GT, + ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -203895,92 +203898,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75830] = 33, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_GT_GT, - ACTIONS(4717), 1, - anon_sym_AMP, - ACTIONS(4719), 1, - anon_sym_CARET, - ACTIONS(4721), 1, - anon_sym_PIPE, - ACTIONS(4725), 1, - anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_STAR_STAR, - ACTIONS(4735), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, - sym__ternary_qmark, - ACTIONS(5302), 1, - anon_sym_COMMA, - ACTIONS(5419), 1, - anon_sym_SEMI, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(3770), 1, - aux_sym_sequence_expression_repeat1, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4715), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4733), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4729), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [75940] = 3, + [75836] = 5, + ACTIONS(1857), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4559), 13, + ACTIONS(1849), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1853), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -203990,15 +203920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4561), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1855), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204019,15 +203947,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75990] = 3, + [75890] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4563), 13, + ACTIONS(4559), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -204037,7 +203964,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4565), 28, + anon_sym_GT, + ACTIONS(4561), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -204066,22 +203994,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76040] = 5, + [75940] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5137), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5139), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3499), 13, + ACTIONS(4563), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -204091,10 +204011,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(4565), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204115,7 +204041,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76094] = 3, + [75990] = 33, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4704), 1, + anon_sym_LT, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4716), 1, + anon_sym_AMP_AMP, + ACTIONS(4718), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4720), 1, + anon_sym_GT_GT, + ACTIONS(4724), 1, + anon_sym_AMP, + ACTIONS(4726), 1, + anon_sym_CARET, + ACTIONS(4728), 1, + anon_sym_PIPE, + ACTIONS(4732), 1, + anon_sym_PERCENT, + ACTIONS(4734), 1, + anon_sym_STAR_STAR, + ACTIONS(4742), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(4748), 1, + sym__ternary_qmark, + ACTIONS(5298), 1, + anon_sym_COMMA, + ACTIONS(5419), 1, + anon_sym_SEMI, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(3772), 1, + aux_sym_sequence_expression_repeat1, + STATE(4828), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4712), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4722), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4730), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4738), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4740), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4736), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76100] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -204123,7 +204126,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -204133,6 +204135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4569), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -204162,7 +204165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76144] = 3, + [76150] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -204170,7 +204173,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -204180,6 +204182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4573), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -204209,7 +204212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76194] = 3, + [76200] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -204217,7 +204220,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -204227,6 +204229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4577), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -204256,7 +204259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76244] = 3, + [76250] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -204264,7 +204267,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -204274,6 +204276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4581), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -204303,22 +204306,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76294] = 33, + [76300] = 33, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -204344,18 +204347,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(5421), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, - STATE(5034), 1, + STATE(5036), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -204380,7 +204383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76404] = 3, + [76410] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -204388,7 +204391,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -204398,6 +204400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4585), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -204427,20 +204430,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76454] = 5, - ACTIONS(1761), 1, - sym__automatic_semicolon, + [76460] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1757), 13, + ACTIONS(5137), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5139), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3499), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -204450,12 +204454,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 25, + anon_sym_GT, + ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204476,20 +204479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76508] = 5, - ACTIONS(1831), 1, - sym__automatic_semicolon, + [76514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1823), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1827), 13, + ACTIONS(4587), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -204499,12 +204496,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 25, + anon_sym_GT, + ACTIONS(4589), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204525,15 +204526,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76562] = 3, + [76564] = 5, + ACTIONS(1867), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4587), 13, + ACTIONS(1859), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1863), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -204543,15 +204548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4589), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1865), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -204572,12 +204575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76612] = 10, - ACTIONS(2338), 1, + [76618] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5121), 1, anon_sym_STAR, @@ -204590,11 +204593,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5425), 2, anon_sym_get, anon_sym_set, - STATE(3821), 3, + STATE(3823), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -204626,10 +204629,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76676] = 11, - ACTIONS(1635), 1, + [76682] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -204646,11 +204649,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5129), 2, anon_sym_get, anon_sym_set, - STATE(3110), 3, + STATE(3097), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -204681,115 +204684,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76742] = 33, - ACTIONS(1976), 1, + [76748] = 5, + ACTIONS(1819), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1811), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1815), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1817), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(4031), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - ACTIONS(5427), 1, - anon_sym_RPAREN, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4557), 1, - aux_sym_array_repeat1, - STATE(4822), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [76802] = 7, + ACTIONS(3643), 1, + anon_sym_EQ, + ACTIONS(4637), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, + ACTIONS(4378), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4640), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3499), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + ACTIONS(3503), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76852] = 7, - ACTIONS(3633), 1, - anon_sym_EQ, - ACTIONS(4627), 1, - anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [76860] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 10, + ACTIONS(4477), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 24, + anon_sym_GT, + ACTIONS(4479), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -204817,10 +204839,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 2, + ACTIONS(3527), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3505), 4, + ACTIONS(3517), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_LBRACK, @@ -204829,7 +204851,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -204837,6 +204858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, @@ -204863,19 +204885,19 @@ static const uint16_t ts_small_parse_table[] = { [76968] = 33, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -204899,20 +204921,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - ACTIONS(5429), 1, + ACTIONS(5427), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4607), 1, + STATE(4605), 1, aux_sym_array_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -204941,10 +204963,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4145), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4169), 4, + ACTIONS(4143), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_LBRACK, @@ -204953,7 +204975,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -204961,6 +204982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 24, sym__ternary_qmark, anon_sym_as, @@ -204987,12 +205009,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, [77132] = 7, - ACTIONS(4171), 1, + ACTIONS(4165), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 2, + ACTIONS(4167), 2, anon_sym_RPAREN, anon_sym_extends, ACTIONS(4466), 2, @@ -205006,7 +205028,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -205014,6 +205035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4461), 22, sym__ternary_qmark, anon_sym_as, @@ -205041,11 +205063,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(4127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -205055,7 +205076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 28, + anon_sym_GT, + ACTIONS(4129), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -205084,73 +205106,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77240] = 7, - ACTIONS(4377), 1, - anon_sym_QMARK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4379), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4630), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4627), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3499), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [77298] = 33, + [77240] = 33, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -205174,20 +205145,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - ACTIONS(5431), 1, + ACTIONS(5429), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4640), 1, + STATE(4638), 1, aux_sym_array_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -205212,20 +205183,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77408] = 8, + [77350] = 8, ACTIONS(3533), 1, anon_sym_EQ, - ACTIONS(3623), 1, + ACTIONS(3614), 1, anon_sym_COLON, - ACTIONS(4627), 1, + ACTIONS(4637), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 2, + ACTIONS(4640), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4379), 3, + ACTIONS(4378), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, @@ -205233,7 +205204,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -205241,6 +205211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, @@ -205264,22 +205235,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77468] = 33, + [77410] = 33, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -205303,20 +205274,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - ACTIONS(5433), 1, + ACTIONS(5431), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4651), 1, + STATE(4646), 1, aux_sym_array_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -205341,22 +205312,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77578] = 12, - ACTIONS(4633), 1, + [77520] = 12, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5435), 1, + ACTIONS(5433), 1, anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -205368,7 +205339,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -205377,6 +205347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4793), 19, sym__automatic_semicolon, sym__ternary_qmark, @@ -205397,14 +205368,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [77646] = 15, - ACTIONS(4633), 1, + [77588] = 15, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -205412,13 +205383,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(4847), 1, anon_sym_satisfies, - ACTIONS(5438), 1, + ACTIONS(5436), 1, anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -205429,7 +205400,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4798), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -205438,6 +205408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4800), 17, sym__automatic_semicolon, sym__ternary_qmark, @@ -205456,14 +205427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [77720] = 31, - ACTIONS(4633), 1, + [77662] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -205495,9 +205466,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -205531,31 +205502,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77826] = 11, - ACTIONS(4633), 1, + [77768] = 11, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5441), 1, + ACTIONS(5439), 1, anon_sym_LT, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 12, + ACTIONS(4781), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -205564,7 +205534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 21, + anon_sym_GT, + ACTIONS(4783), 21, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -205586,20 +205557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77892] = 5, - ACTIONS(1883), 1, - sym__automatic_semicolon, + [77834] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1879), 13, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -205609,12 +205574,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1881), 25, + anon_sym_GT, + ACTIONS(4471), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -205635,138 +205604,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77946] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5150), 1, - anon_sym_STAR, + [77884] = 5, + ACTIONS(1877), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5444), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5446), 2, - anon_sym_get, - anon_sym_set, - STATE(3898), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(1869), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1873), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1875), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [78010] = 33, - ACTIONS(4031), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [77938] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - ACTIONS(5302), 1, + ACTIONS(5298), 1, anon_sym_COMMA, - ACTIONS(5448), 1, + ACTIONS(5442), 1, anon_sym_RBRACK, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(3770), 1, + STATE(3772), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78120] = 3, + [78048] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -205774,7 +205738,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -205784,6 +205747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4607), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -205813,24 +205777,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78170] = 15, + [78098] = 10, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5150), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5444), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5446), 2, + anon_sym_get, + anon_sym_set, + STATE(3900), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2362), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [78162] = 15, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(697), 1, anon_sym_RBRACE, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -205841,11 +205859,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -205872,26 +205890,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78244] = 16, + [78236] = 16, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(697), 1, anon_sym_RBRACE, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2364), 1, anon_sym_async, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -205902,11 +205920,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -205932,21 +205950,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78320] = 4, + [78312] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 5, + ACTIONS(1799), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1815), 13, + ACTIONS(1803), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -205956,7 +205973,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1817), 23, + anon_sym_GT, + ACTIONS(1805), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -205980,20 +205998,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78372] = 8, + [78364] = 8, ACTIONS(3543), 1, anon_sym_EQ, - ACTIONS(4377), 1, + ACTIONS(4376), 1, anon_sym_QMARK, - ACTIONS(4627), 1, + ACTIONS(4637), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 2, + ACTIONS(4640), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4379), 3, + ACTIONS(4378), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, @@ -206001,7 +206019,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -206009,6 +206026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, @@ -206032,19 +206050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78432] = 6, + [78424] = 6, ACTIONS(4529), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 2, + ACTIONS(4093), 2, anon_sym_COMMA, anon_sym_extends, ACTIONS(4532), 3, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, @@ -206082,66 +206100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78488] = 15, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [78562] = 3, + [78480] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -206149,7 +206108,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -206159,6 +206117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4645), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -206188,29 +206147,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78612] = 10, - ACTIONS(2338), 1, + [78530] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5164), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5450), 2, + ACTIONS(5448), 2, sym_number, sym_private_property_identifier, - ACTIONS(5452), 2, + ACTIONS(5450), 2, anon_sym_get, anon_sym_set, - STATE(3805), 3, + STATE(3802), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -206242,26 +206201,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78676] = 16, + [78594] = 15, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(699), 1, + anon_sym_RBRACE, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5003), 1, + anon_sym_STAR, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2348), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2368), 2, + anon_sym_get, + anon_sym_set, + STATE(3799), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2362), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [78668] = 16, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(699), 1, anon_sym_RBRACE, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2364), 1, anon_sym_async, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -206272,11 +206290,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -206302,21 +206320,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78752] = 4, + [78744] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 5, + ACTIONS(1859), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1757), 13, + ACTIONS(1863), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -206326,7 +206343,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 23, + anon_sym_GT, + ACTIONS(1865), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -206350,21 +206368,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78804] = 4, + [78796] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1823), 5, + ACTIONS(1811), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1827), 13, + ACTIONS(1815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -206374,56 +206391,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78856] = 5, - ACTIONS(5454), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1875), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1879), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1881), 23, + ACTIONS(1817), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -206447,7 +206416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78910] = 3, + [78848] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -206455,7 +206424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -206465,6 +206433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4611), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -206494,16 +206463,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [78960] = 32, - ACTIONS(4633), 1, + [78898] = 32, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4743), 1, + ACTIONS(4750), 1, anon_sym_COMMA, ACTIONS(4809), 1, anon_sym_as, @@ -206535,9 +206504,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -206570,20 +206539,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79068] = 33, - ACTIONS(4031), 1, + [79006] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -206609,20 +206578,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - ACTIONS(5456), 1, + ACTIONS(5452), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -206647,29 +206616,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79178] = 10, - ACTIONS(2338), 1, + [79116] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5244), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5458), 2, + ACTIONS(5454), 2, sym_number, sym_private_property_identifier, - ACTIONS(5460), 2, + ACTIONS(5456), 2, anon_sym_get, anon_sym_set, - STATE(3824), 3, + STATE(3818), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -206701,20 +206670,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79242] = 33, - ACTIONS(4031), 1, + [79180] = 5, + ACTIONS(5458), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1869), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1873), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1875), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4701), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [79234] = 33, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -206740,20 +206758,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - ACTIONS(5462), 1, + ACTIONS(5460), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -206778,20 +206796,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79352] = 33, - ACTIONS(4031), 1, + [79344] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -206817,20 +206835,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - ACTIONS(5464), 1, + ACTIONS(5462), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -206855,29 +206873,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79462] = 10, - ACTIONS(2338), 1, + [79454] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5399), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5466), 2, + ACTIONS(5464), 2, sym_number, sym_private_property_identifier, - ACTIONS(5468), 2, + ACTIONS(5466), 2, anon_sym_get, anon_sym_set, - STATE(3755), 3, + STATE(3833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -206909,20 +206927,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79526] = 33, - ACTIONS(4031), 1, + [79518] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -206948,20 +206966,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - ACTIONS(5470), 1, + ACTIONS(5468), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -206986,29 +207004,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79636] = 10, - ACTIONS(2338), 1, + [79628] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(5472), 1, + ACTIONS(5470), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5474), 2, + ACTIONS(5472), 2, sym_number, sym_private_property_identifier, - ACTIONS(5476), 2, + ACTIONS(5474), 2, anon_sym_get, anon_sym_set, - STATE(3839), 3, + STATE(3755), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -207040,21 +207058,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [79700] = 4, + [79692] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1743), 5, + ACTIONS(1915), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1747), 13, + ACTIONS(1919), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207064,7 +207081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1749), 23, + anon_sym_GT, + ACTIONS(1921), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -207088,21 +207106,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79752] = 4, + [79744] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 5, + ACTIONS(1755), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1771), 13, + ACTIONS(1759), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207112,7 +207129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 23, + anon_sym_GT, + ACTIONS(1761), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -207136,22 +207154,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79804] = 5, - ACTIONS(5478), 1, - sym__automatic_semicolon, + [79796] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1781), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1785), 13, + ACTIONS(1863), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207161,10 +207171,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1787), 23, + anon_sym_GT, + ACTIONS(1865), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207185,15 +207201,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79858] = 3, + [79846] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1757), 13, + ACTIONS(1815), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207203,7 +207218,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 28, + anon_sym_GT, + ACTIONS(1817), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207232,15 +207248,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79908] = 3, + [79896] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1827), 13, + ACTIONS(1873), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207250,7 +207265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1829), 28, + anon_sym_GT, + ACTIONS(1875), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207279,15 +207295,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79958] = 3, + [79946] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1879), 13, + ACTIONS(1919), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207297,7 +207312,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1881), 28, + anon_sym_GT, + ACTIONS(1921), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -207326,15 +207342,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80008] = 3, + [79996] = 5, + ACTIONS(5476), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1747), 13, + ACTIONS(1769), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1773), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207344,15 +207366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1749), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1775), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207373,22 +207391,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80058] = 5, - ACTIONS(5480), 1, - sym__automatic_semicolon, + [80050] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1791), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1795), 13, + ACTIONS(4481), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207398,10 +207408,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 23, + anon_sym_GT, + ACTIONS(4483), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207422,15 +207438,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80112] = 3, + [80100] = 5, + ACTIONS(5478), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4481), 13, + ACTIONS(1779), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1783), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207440,15 +207462,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4483), 28, - sym__automatic_semicolon, + anon_sym_GT, + ACTIONS(1785), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -207469,97 +207487,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80162] = 33, - ACTIONS(4031), 1, + [80154] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - ACTIONS(5302), 1, + ACTIONS(5298), 1, anon_sym_COMMA, - ACTIONS(5482), 1, + ACTIONS(5480), 1, anon_sym_COLON, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(3770), 1, + STATE(3772), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80272] = 33, - ACTIONS(4031), 1, + [80264] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -207585,20 +207603,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - ACTIONS(5484), 1, + ACTIONS(5482), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -207623,20 +207641,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80382] = 33, - ACTIONS(4031), 1, + [80374] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -207662,20 +207680,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - ACTIONS(5486), 1, + ACTIONS(5484), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -207700,20 +207718,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80492] = 33, - ACTIONS(4031), 1, + [80484] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -207739,20 +207757,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - ACTIONS(5488), 1, + ACTIONS(5486), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -207777,91 +207795,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80602] = 33, - ACTIONS(4031), 1, + [80594] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - ACTIONS(5302), 1, + ACTIONS(5298), 1, anon_sym_COMMA, - ACTIONS(5490), 1, + ACTIONS(5488), 1, anon_sym_SEMI, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(3770), 1, + STATE(3772), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80712] = 5, + [80704] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5492), 2, + ACTIONS(5490), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5494), 3, + ACTIONS(5492), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -207869,7 +207887,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207879,6 +207896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -207903,14 +207921,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80766] = 5, + [80758] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5496), 2, + ACTIONS(5494), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5498), 3, + ACTIONS(5496), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -207918,7 +207936,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207928,6 +207945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -207952,14 +207970,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80820] = 5, + [80812] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5496), 2, + ACTIONS(5494), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5498), 3, + ACTIONS(5496), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -207967,7 +207985,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -207977,6 +207994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -208001,14 +208019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80874] = 5, + [80866] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5496), 2, + ACTIONS(5494), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5498), 3, + ACTIONS(5496), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -208016,7 +208034,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -208026,6 +208043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -208050,7 +208068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80928] = 4, + [80920] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -208064,7 +208082,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -208074,6 +208091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1739), 23, sym__ternary_qmark, anon_sym_as, @@ -208098,29 +208116,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80980] = 10, - ACTIONS(2338), 1, + [80972] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(5500), 1, + ACTIONS(5498), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5502), 2, + ACTIONS(5500), 2, sym_number, sym_private_property_identifier, - ACTIONS(5504), 2, + ACTIONS(5502), 2, anon_sym_get, anon_sym_set, STATE(3864), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -208152,31 +208170,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81044] = 11, - ACTIONS(1635), 1, + [81036] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5500), 1, + ACTIONS(5498), 1, anon_sym_STAR, - ACTIONS(5506), 1, + ACTIONS(5504), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5508), 2, + ACTIONS(5506), 2, sym_number, sym_private_property_identifier, - ACTIONS(5510), 2, + ACTIONS(5508), 2, anon_sym_get, anon_sym_set, - STATE(3070), 3, + STATE(3078), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -208207,21 +208225,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81110] = 7, - ACTIONS(3587), 1, + [81102] = 7, + ACTIONS(3630), 1, anon_sym_EQ, - ACTIONS(4379), 1, + ACTIONS(4378), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 2, + ACTIONS(4637), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4630), 3, - anon_sym_GT, + ACTIONS(4640), 3, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, @@ -208258,10 +208276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [81168] = 11, - ACTIONS(1635), 1, + [81160] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -208275,14 +208293,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5158), 2, anon_sym_get, anon_sym_set, - ACTIONS(5512), 2, + ACTIONS(5510), 2, sym_number, sym_private_property_identifier, - STATE(3079), 3, + STATE(3085), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -208313,21 +208331,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81234] = 4, + [81226] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1833), 5, + ACTIONS(1821), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1837), 13, + ACTIONS(1825), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -208337,7 +208354,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1839), 23, + anon_sym_GT, + ACTIONS(1827), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -208361,22 +208379,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81286] = 5, - ACTIONS(5514), 1, + [81278] = 5, + ACTIONS(5512), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1851), 4, + ACTIONS(1839), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1855), 13, + ACTIONS(1843), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -208386,7 +208403,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1857), 23, + anon_sym_GT, + ACTIONS(1845), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -208410,21 +208428,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81340] = 4, + [81332] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1865), 5, + ACTIONS(1849), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1869), 13, + ACTIONS(1853), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -208434,7 +208451,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1871), 23, + anon_sym_GT, + ACTIONS(1855), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -208458,10 +208476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81392] = 11, - ACTIONS(1635), 1, + [81384] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -208475,14 +208493,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5158), 2, anon_sym_get, anon_sym_set, - ACTIONS(5516), 2, + ACTIONS(5514), 2, sym_number, sym_private_property_identifier, - STATE(3085), 3, + STATE(3075), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -208513,7 +208531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81458] = 3, + [81450] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -208521,7 +208539,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -208531,6 +208548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4615), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -208560,29 +208578,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81508] = 10, - ACTIONS(2338), 1, + [81500] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(5518), 1, + ACTIONS(5516), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5520), 2, + ACTIONS(5518), 2, sym_number, sym_private_property_identifier, - ACTIONS(5522), 2, + ACTIONS(5520), 2, anon_sym_get, anon_sym_set, - STATE(3777), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -208614,31 +208632,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81572] = 11, - ACTIONS(1635), 1, + [81564] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5518), 1, + ACTIONS(5516), 1, anon_sym_STAR, - ACTIONS(5524), 1, + ACTIONS(5522), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5526), 2, + ACTIONS(5524), 2, sym_number, sym_private_property_identifier, - ACTIONS(5528), 2, + ACTIONS(5526), 2, anon_sym_get, anon_sym_set, - STATE(3098), 3, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -208669,10 +208687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81638] = 11, - ACTIONS(1635), 1, + [81630] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -208686,14 +208704,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5413), 2, anon_sym_get, anon_sym_set, - ACTIONS(5530), 2, + ACTIONS(5528), 2, sym_number, sym_private_property_identifier, - STATE(3074), 3, + STATE(3083), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -208724,84 +208742,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81704] = 33, - ACTIONS(4031), 1, + [81696] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - ACTIONS(5302), 1, + ACTIONS(5298), 1, anon_sym_COMMA, - ACTIONS(5532), 1, + ACTIONS(5530), 1, anon_sym_RBRACE, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(3770), 1, + STATE(3772), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81814] = 3, + [81806] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -208809,7 +208827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -208819,6 +208836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4519), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -208848,29 +208866,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81864] = 10, - ACTIONS(2338), 1, + [81856] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 2, + ACTIONS(4065), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4681), 2, + ACTIONS(4688), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + STATE(3904), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -208902,10 +208920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81928] = 11, - ACTIONS(1635), 1, + [81920] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -208922,11 +208940,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5172), 2, anon_sym_get, anon_sym_set, - STATE(3133), 3, + STATE(3158), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -208957,87 +208975,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [81994] = 31, - ACTIONS(4031), 1, + [81986] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5534), 3, + ACTIONS(5532), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - [82100] = 12, - ACTIONS(169), 1, + [82092] = 12, + ACTIONS(165), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1551), 1, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, ACTIONS(3282), 1, anon_sym_LBRACE, @@ -209049,22 +209067,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5084), 2, sym_number, sym_private_property_identifier, - ACTIONS(5538), 2, + ACTIONS(5536), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(5247), 3, + STATE(5249), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5594), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5595), 3, + STATE(5589), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(5536), 23, + STATE(5596), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(5534), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -209088,7 +209106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82168] = 3, + [82160] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -209096,7 +209114,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -209106,6 +209123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4523), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -209135,7 +209153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82218] = 3, + [82210] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -209143,7 +209161,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -209153,6 +209170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4487), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -209182,7 +209200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82268] = 3, + [82260] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -209190,7 +209208,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -209200,6 +209217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4619), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -209229,7 +209247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82318] = 5, + [82310] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -209244,7 +209262,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -209254,6 +209271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -209278,15 +209296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82372] = 3, + [82364] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1771), 13, + ACTIONS(1759), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -209296,7 +209313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1773), 28, + anon_sym_GT, + ACTIONS(1761), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -209325,15 +209343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82422] = 3, + [82414] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1785), 13, + ACTIONS(1773), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -209343,7 +209360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1787), 28, + anon_sym_GT, + ACTIONS(1775), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -209372,15 +209390,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82472] = 3, + [82464] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1795), 13, + ACTIONS(1783), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -209390,7 +209407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1797), 28, + anon_sym_GT, + ACTIONS(1785), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -209419,7 +209437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82522] = 3, + [82514] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -209427,7 +209445,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -209437,6 +209454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1739), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -209466,15 +209484,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82572] = 3, + [82564] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1837), 13, + ACTIONS(1825), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -209484,7 +209501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1839), 28, + anon_sym_GT, + ACTIONS(1827), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -209513,24 +209531,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82622] = 15, + [82614] = 15, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(672), 1, anon_sym_RBRACE, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, - STATE(4824), 1, + STATE(4823), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -209541,11 +209559,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -209572,26 +209590,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82696] = 16, + [82688] = 31, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(5174), 1, + anon_sym_LT, + ACTIONS(5180), 1, + anon_sym_AMP_AMP, + ACTIONS(5182), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5184), 1, + anon_sym_GT_GT, + ACTIONS(5188), 1, + anon_sym_AMP, + ACTIONS(5190), 1, + anon_sym_CARET, + ACTIONS(5192), 1, + anon_sym_PIPE, + ACTIONS(5196), 1, + anon_sym_PERCENT, + ACTIONS(5198), 1, + anon_sym_STAR_STAR, + ACTIONS(5206), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5208), 1, + sym__ternary_qmark, + STATE(1656), 1, + sym_arguments, + STATE(2594), 1, + sym_type_arguments, + STATE(4828), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5176), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5178), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5186), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5194), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5202), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5204), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5200), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5538), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [82794] = 16, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(672), 1, anon_sym_RBRACE, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2364), 1, anon_sym_async, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, - STATE(4824), 1, + STATE(4823), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -209602,11 +209695,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -209632,20 +209725,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [82772] = 33, - ACTIONS(4031), 1, + [82870] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -209673,18 +209766,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(5540), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -209709,20 +209802,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82882] = 33, - ACTIONS(4031), 1, + [82980] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -209750,18 +209843,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(5542), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -209786,20 +209879,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82992] = 33, - ACTIONS(4031), 1, + [83090] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4879), 1, anon_sym_COMMA, @@ -209827,18 +209920,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(5544), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4645), 1, + STATE(4650), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -209863,7 +209956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83102] = 5, + [83200] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -209878,7 +209971,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -209888,58 +209980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83156] = 4, - ACTIONS(3569), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 27, - sym__automatic_semicolon, + ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -209960,166 +210005,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83208] = 33, - ACTIONS(4031), 1, + [83254] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - ACTIONS(5302), 1, + ACTIONS(5298), 1, anon_sym_COMMA, ACTIONS(5550), 1, anon_sym_SEMI, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(3770), 1, + STATE(3772), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83318] = 33, - ACTIONS(4031), 1, + [83364] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - ACTIONS(5302), 1, + ACTIONS(5298), 1, anon_sym_COMMA, ACTIONS(5552), 1, anon_sym_SEMI, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(3770), 1, + STATE(3772), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83428] = 10, - ACTIONS(2338), 1, + [83474] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5554), 1, anon_sym_STAR, @@ -210132,11 +210177,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5558), 2, anon_sym_get, anon_sym_set, - STATE(3761), 3, + STATE(3771), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -210168,73 +210213,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83492] = 5, - ACTIONS(1819), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1811), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1815), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1817), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83546] = 15, + [83538] = 15, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, ACTIONS(5005), 1, anon_sym_RBRACE, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -210245,11 +210241,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -210276,26 +210272,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83620] = 16, + [83612] = 5, + ACTIONS(1807), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1799), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1803), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1805), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83666] = 16, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2364), 1, anon_sym_async, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, ACTIONS(5005), 1, anon_sym_RBRACE, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -210306,11 +210351,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -210336,22 +210381,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [83696] = 33, + [83742] = 33, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -210377,18 +210422,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(5560), 1, anon_sym_RPAREN, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4705), 1, + STATE(4700), 1, aux_sym_array_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -210413,8 +210458,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83806] = 4, - ACTIONS(5306), 1, + [83852] = 4, + ACTIONS(5296), 1, sym_regex_flags, ACTIONS(5), 2, sym_html_comment, @@ -210425,7 +210470,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_in, anon_sym_of, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -210435,6 +210479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_instanceof, anon_sym_satisfies, ACTIONS(4919), 23, @@ -210461,7 +210506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [83858] = 7, + [83904] = 7, ACTIONS(5562), 1, anon_sym_LPAREN, ACTIONS(5565), 1, @@ -210477,7 +210522,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -210486,6 +210530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 25, sym__automatic_semicolon, sym__ternary_qmark, @@ -210512,7 +210557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83916] = 3, + [83962] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -210520,7 +210565,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -210530,6 +210574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4527), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -210559,19 +210604,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83966] = 6, - ACTIONS(4627), 1, + [84012] = 6, + ACTIONS(4637), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, + ACTIONS(4378), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4630), 3, - anon_sym_GT, + ACTIONS(4640), 3, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, @@ -210609,104 +210654,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84022] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5174), 1, - anon_sym_LT, - ACTIONS(5180), 1, - anon_sym_AMP_AMP, - ACTIONS(5182), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5184), 1, - anon_sym_GT_GT, - ACTIONS(5188), 1, - anon_sym_AMP, - ACTIONS(5190), 1, - anon_sym_CARET, - ACTIONS(5192), 1, - anon_sym_PIPE, - ACTIONS(5196), 1, - anon_sym_PERCENT, - ACTIONS(5198), 1, - anon_sym_STAR_STAR, - ACTIONS(5206), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5208), 1, - sym__ternary_qmark, - STATE(1656), 1, - sym_arguments, - STATE(2591), 1, - sym_type_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5176), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5186), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5204), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5200), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5572), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [84128] = 9, - ACTIONS(3501), 1, + [84068] = 9, + ACTIONS(3515), 1, anon_sym_EQ, - ACTIONS(3623), 1, + ACTIONS(3614), 1, anon_sym_COLON, - ACTIONS(4379), 1, + ACTIONS(4378), 1, anon_sym_extends, - ACTIONS(4627), 1, + ACTIONS(4637), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 2, + ACTIONS(4640), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5574), 2, + ACTIONS(5572), 2, anon_sym_COMMA, anon_sym_RBRACK, ACTIONS(3499), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -210714,6 +210683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, @@ -210737,14 +210707,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84190] = 31, - ACTIONS(4633), 1, + [84130] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -210776,9 +210746,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -210812,84 +210782,84 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [84296] = 33, - ACTIONS(4031), 1, + [84236] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - ACTIONS(5302), 1, + ACTIONS(5298), 1, anon_sym_COMMA, - ACTIONS(5578), 1, + ACTIONS(5576), 1, anon_sym_RBRACK, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(3770), 1, + STATE(3772), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84406] = 3, + [84346] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -210897,7 +210867,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -210907,6 +210876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4503), 28, sym__automatic_semicolon, sym__ternary_qmark, @@ -210936,29 +210906,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84456] = 10, - ACTIONS(2338), 1, + [84396] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5230), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5580), 2, + ACTIONS(5578), 2, sym_number, sym_private_property_identifier, - ACTIONS(5582), 2, + ACTIONS(5580), 2, anon_sym_get, anon_sym_set, - STATE(3771), 3, + STATE(3773), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -210990,31 +210960,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [84520] = 11, - ACTIONS(1635), 1, + [84460] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5554), 1, anon_sym_STAR, - ACTIONS(5584), 1, + ACTIONS(5582), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5586), 2, + ACTIONS(5584), 2, sym_number, sym_private_property_identifier, - ACTIONS(5588), 2, + ACTIONS(5586), 2, anon_sym_get, anon_sym_set, - STATE(3068), 3, + STATE(3072), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -211045,8 +211015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [84586] = 4, - ACTIONS(3571), 1, + [84526] = 4, + ACTIONS(3569), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -211055,7 +211025,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -211065,6 +211034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 27, sym__automatic_semicolon, sym__ternary_qmark, @@ -211093,10 +211063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84638] = 11, - ACTIONS(1635), 1, + [84578] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -211110,14 +211080,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5413), 2, anon_sym_get, anon_sym_set, - ACTIONS(5590), 2, + ACTIONS(5588), 2, sym_number, sym_private_property_identifier, - STATE(3071), 3, + STATE(3073), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -211148,223 +211118,375 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [84704] = 33, - ACTIONS(4031), 1, + [84644] = 33, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - ACTIONS(5302), 1, + ACTIONS(5298), 1, anon_sym_COMMA, - ACTIONS(5592), 1, + ACTIONS(5590), 1, anon_sym_SEMI, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(3770), 1, + STATE(3772), 1, aux_sym_sequence_expression_repeat1, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84814] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4477), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4479), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [84754] = 33, + ACTIONS(1976), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [84864] = 31, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, + ACTIONS(4885), 1, anon_sym_AMP_AMP, - ACTIONS(5600), 1, + ACTIONS(4887), 1, anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, + ACTIONS(4889), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, + ACTIONS(4893), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(4895), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(4897), 1, anon_sym_PIPE, - ACTIONS(5614), 1, + ACTIONS(4901), 1, anon_sym_PERCENT, - ACTIONS(5616), 1, + ACTIONS(4903), 1, anon_sym_STAR_STAR, - ACTIONS(5618), 1, + ACTIONS(4905), 1, anon_sym_LT, - ACTIONS(5626), 1, + ACTIONS(4913), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5592), 1, + anon_sym_RPAREN, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4555), 1, + aux_sym_array_repeat1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 2, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(5594), 2, + ACTIONS(4877), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(4883), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(4891), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(4899), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(4909), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(4911), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(4907), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84969] = 8, - ACTIONS(4031), 1, + [84864] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3819), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(5618), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(1642), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1988), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84915] = 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4145), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4143), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3499), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3503), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84968] = 8, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5363), 2, + sym_number, + sym_private_property_identifier, + STATE(3794), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2362), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [85027] = 8, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5240), 2, + sym_number, + sym_private_property_identifier, + STATE(3760), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2362), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [85086] = 8, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(5594), 1, + anon_sym_LT, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4700), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -211373,7 +211495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 23, + anon_sym_GT, + ACTIONS(4702), 23, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, @@ -211397,48 +211520,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85028] = 31, - ACTIONS(4031), 1, + [85145] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -211446,19 +211569,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4483), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -211471,68 +211594,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85133] = 31, - ACTIONS(4031), 1, + [85250] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4743), 2, + ACTIONS(4750), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -211545,68 +211668,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85238] = 31, - ACTIONS(4031), 1, + [85355] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4745), 2, + ACTIONS(4752), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -211619,68 +211742,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85343] = 31, - ACTIONS(4031), 1, + [85460] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4747), 2, + ACTIONS(4754), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -211693,48 +211816,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85448] = 31, - ACTIONS(4031), 1, + [85565] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -211742,19 +211865,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4523), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -211767,53 +211890,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85553] = 18, - ACTIONS(4031), 1, + [85670] = 18, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5602), 1, + ACTIONS(5594), 1, + anon_sym_LT, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, + anon_sym_STAR_STAR, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 7, + ACTIONS(4758), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 14, + anon_sym_GT, + ACTIONS(4756), 14, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, @@ -211828,36 +211951,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [85632] = 13, - ACTIONS(4031), 1, + [85749] = 13, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5616), 1, + ACTIONS(5618), 1, anon_sym_STAR_STAR, ACTIONS(5630), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4758), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -211866,7 +211988,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 17, + anon_sym_GT, + ACTIONS(4756), 17, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, @@ -211884,53 +212007,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [85701] = 25, - ACTIONS(4031), 1, + [85818] = 25, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, - ACTIONS(5602), 1, + ACTIONS(5594), 1, + anon_sym_LT, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, + anon_sym_STAR_STAR, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -211943,7 +212066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 8, + ACTIONS(4756), 8, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, @@ -211952,55 +212075,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [85794] = 26, - ACTIONS(4031), 1, + [85911] = 26, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, - ACTIONS(5598), 1, + ACTIONS(5594), 1, + anon_sym_LT, + ACTIONS(5600), 1, anon_sym_AMP_AMP, - ACTIONS(5602), 1, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, + anon_sym_STAR_STAR, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -212013,7 +212136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 7, + ACTIONS(4756), 7, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, @@ -212021,49 +212144,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [85889] = 16, - ACTIONS(4031), 1, + [86006] = 16, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, + anon_sym_PERCENT, + ACTIONS(5618), 1, anon_sym_STAR_STAR, ACTIONS(5630), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 8, + ACTIONS(4758), 8, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 16, + anon_sym_GT, + ACTIONS(4756), 16, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, @@ -212080,45 +212203,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [85964] = 22, - ACTIONS(4031), 1, + [86081] = 22, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5602), 1, + ACTIONS(5594), 1, + anon_sym_LT, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, + anon_sym_STAR_STAR, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -212127,7 +212250,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5624), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4751), 3, + ACTIONS(4758), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, @@ -212135,7 +212258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 9, + ACTIONS(4756), 9, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, @@ -212145,50 +212268,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [86051] = 23, - ACTIONS(4031), 1, + [86168] = 23, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5602), 1, + ACTIONS(5594), 1, + anon_sym_LT, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, + ACTIONS(5608), 1, anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, + anon_sym_STAR_STAR, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -212201,7 +212324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 9, + ACTIONS(4756), 9, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, @@ -212211,52 +212334,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [86140] = 24, - ACTIONS(4031), 1, + [86257] = 24, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5602), 1, + ACTIONS(5594), 1, + anon_sym_LT, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, + anon_sym_AMP, + ACTIONS(5610), 1, anon_sym_CARET, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, + anon_sym_STAR_STAR, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -212269,7 +212392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 8, + ACTIONS(4756), 8, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, @@ -212278,40 +212401,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [86231] = 15, - ACTIONS(4031), 1, + [86348] = 15, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, + anon_sym_PERCENT, + ACTIONS(5618), 1, anon_sym_STAR_STAR, ACTIONS(5630), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4751), 10, + ACTIONS(4758), 10, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -212319,7 +212441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 16, + anon_sym_GT, + ACTIONS(4756), 16, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, @@ -212336,41 +212459,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [86304] = 16, - ACTIONS(4031), 1, + [86421] = 16, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5616), 1, + ACTIONS(5618), 1, anon_sym_STAR_STAR, ACTIONS(5630), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4758), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -212379,7 +212501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 15, + anon_sym_GT, + ACTIONS(4756), 15, sym__ternary_qmark, anon_sym_COLON, anon_sym_AMP_AMP, @@ -212395,58 +212518,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [86379] = 20, - ACTIONS(4031), 1, + [86496] = 20, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5602), 1, + ACTIONS(5594), 1, + anon_sym_LT, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, + anon_sym_STAR_STAR, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5620), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 5, + ACTIONS(4758), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 11, + ACTIONS(4756), 11, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, @@ -212458,57 +212581,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [86462] = 27, - ACTIONS(4031), 1, + [86579] = 27, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, - STATE(1642), 1, + anon_sym_STAR_STAR, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -212521,55 +212644,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 6, + ACTIONS(4756), 6, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [86559] = 31, - ACTIONS(4031), 1, + [86676] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -212577,19 +212700,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4541), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -212602,68 +212725,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86664] = 31, - ACTIONS(4031), 1, + [86781] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4756), 2, + ACTIONS(4763), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -212676,48 +212799,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86769] = 31, - ACTIONS(4031), 1, + [86886] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -212725,19 +212848,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4565), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -212750,48 +212873,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86874] = 31, - ACTIONS(4031), 1, + [86991] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -212799,19 +212922,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4573), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -212824,48 +212947,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86979] = 31, - ACTIONS(4031), 1, + [87096] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -212873,19 +212996,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4577), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -212898,68 +213021,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87084] = 31, - ACTIONS(4031), 1, + [87201] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4760), 2, + ACTIONS(4765), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -212972,68 +213095,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87189] = 31, - ACTIONS(4031), 1, + [87306] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4772), 2, + ACTIONS(4767), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -213046,120 +213169,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87294] = 5, + [87411] = 31, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(5594), 1, + anon_sym_LT, + ACTIONS(5600), 1, + anon_sym_AMP_AMP, + ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, + anon_sym_GT_GT, + ACTIONS(5608), 1, + anon_sym_AMP, + ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, + anon_sym_PERCENT, + ACTIONS(5618), 1, + anon_sym_STAR_STAR, + ACTIONS(5626), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5628), 1, + sym__ternary_qmark, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4167), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4169), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3499), 11, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4779), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(5596), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5606), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5622), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5624), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5620), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87516] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, + ACTIONS(4629), 1, + anon_sym_LBRACK, + ACTIONS(4631), 1, anon_sym_DOT, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, + ACTIONS(4809), 1, + anon_sym_as, + ACTIONS(4811), 1, + anon_sym_BANG, + ACTIONS(4847), 1, + anon_sym_satisfies, + ACTIONS(5318), 1, + anon_sym_LT, + ACTIONS(5324), 1, anon_sym_AMP_AMP, + ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5328), 1, + anon_sym_GT_GT, + ACTIONS(5332), 1, + anon_sym_AMP, + ACTIONS(5334), 1, anon_sym_CARET, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(5340), 1, anon_sym_PERCENT, + ACTIONS(5342), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5350), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87347] = 4, + ACTIONS(5352), 1, + sym__ternary_qmark, + STATE(2027), 1, + sym_type_arguments, + STATE(2189), 1, + sym_arguments, + STATE(4602), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1885), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1889), 13, + ACTIONS(4845), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5320), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5322), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5330), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5338), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5346), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1891), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5348), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5633), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5344), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [87398] = 8, - ACTIONS(4031), 1, + [87621] = 8, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4700), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -213168,7 +213343,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 23, + anon_sym_GT, + ACTIONS(4702), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACK, @@ -213192,48 +213368,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87457] = 31, - ACTIONS(4031), 1, + [87680] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5669), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -213241,295 +213417,295 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4483), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87562] = 31, - ACTIONS(4031), 1, + [87785] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5669), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4743), 2, + ACTIONS(4750), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87667] = 31, - ACTIONS(4031), 1, + [87890] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5669), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4745), 2, + ACTIONS(4752), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87772] = 31, - ACTIONS(4031), 1, + [87995] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5669), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4747), 2, + ACTIONS(4754), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87877] = 31, - ACTIONS(4031), 1, + [88100] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5669), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -213537,78 +213713,78 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4523), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87982] = 18, - ACTIONS(4031), 1, + [88205] = 18, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5643), 1, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 7, + ACTIONS(4758), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 14, + anon_sym_GT, + ACTIONS(4756), 14, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213623,36 +213799,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [88061] = 13, - ACTIONS(4031), 1, + [88284] = 13, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5657), 1, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5669), 1, + ACTIONS(5671), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4758), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -213661,7 +213836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 17, + anon_sym_GT, + ACTIONS(4756), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213679,66 +213855,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [88130] = 25, - ACTIONS(4031), 1, + [88353] = 25, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5643), 1, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 8, + ACTIONS(4756), 8, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213747,68 +213923,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [88223] = 26, - ACTIONS(4031), 1, + [88446] = 26, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5641), 1, anon_sym_AMP_AMP, - ACTIONS(5643), 1, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 7, + ACTIONS(4756), 7, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213816,49 +213992,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [88318] = 16, - ACTIONS(4031), 1, + [88541] = 16, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5669), 1, + ACTIONS(5671), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 8, + ACTIONS(4758), 8, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 16, + anon_sym_GT, + ACTIONS(4756), 16, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213875,62 +214051,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [88393] = 22, - ACTIONS(4031), 1, + [88616] = 22, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5643), 1, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4751), 3, + ACTIONS(4758), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 9, + ACTIONS(4756), 9, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -213940,63 +214116,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [88480] = 23, - ACTIONS(4031), 1, + [88703] = 23, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5643), 1, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5649), 1, anon_sym_AMP, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 9, + ACTIONS(4756), 9, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -214006,65 +214182,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [88569] = 24, - ACTIONS(4031), 1, + [88792] = 24, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5643), 1, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, + anon_sym_AMP, + ACTIONS(5651), 1, anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 8, + ACTIONS(4756), 8, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -214073,40 +214249,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [88660] = 15, - ACTIONS(4031), 1, + [88883] = 15, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5669), 1, + ACTIONS(5671), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4751), 10, + ACTIONS(4758), 10, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -214114,7 +214289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 16, + anon_sym_GT, + ACTIONS(4756), 16, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -214131,41 +214307,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [88733] = 16, - ACTIONS(4031), 1, + [88956] = 16, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5657), 1, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5669), 1, + ACTIONS(5671), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4758), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -214174,7 +214349,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 15, + anon_sym_GT, + ACTIONS(4756), 15, sym__ternary_qmark, anon_sym_RBRACK, anon_sym_AMP_AMP, @@ -214190,58 +214366,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [88808] = 20, - ACTIONS(4031), 1, + [89031] = 20, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5643), 1, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 5, + ACTIONS(4758), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 11, + ACTIONS(4756), 11, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -214253,118 +214429,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [88891] = 27, - ACTIONS(4031), 1, + [89114] = 27, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 6, + ACTIONS(4756), 6, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [88988] = 31, - ACTIONS(4031), 1, + [89211] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5669), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -214372,147 +214548,147 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4541), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89093] = 31, - ACTIONS(4031), 1, + [89316] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5669), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4756), 2, + ACTIONS(4763), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89198] = 31, - ACTIONS(4031), 1, + [89421] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5669), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -214520,73 +214696,73 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4565), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89303] = 31, - ACTIONS(4031), 1, + [89526] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5669), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -214594,73 +214770,73 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4573), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89408] = 31, - ACTIONS(4031), 1, + [89631] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5669), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -214668,354 +214844,332 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4577), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89513] = 31, - ACTIONS(4031), 1, + [89736] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5669), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 2, + ACTIONS(4765), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89618] = 31, - ACTIONS(4031), 1, + [89841] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5669), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4760), 2, + ACTIONS(4767), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89723] = 31, - ACTIONS(4031), 1, + [89946] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5669), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4772), 2, + ACTIONS(4779), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89828] = 31, - ACTIONS(4633), 1, + [90051] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1879), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1883), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1885), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4635), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, anon_sym_DOT, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4809), 1, - anon_sym_as, - ACTIONS(4811), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_satisfies, - ACTIONS(5318), 1, - anon_sym_LT, - ACTIONS(5324), 1, anon_sym_AMP_AMP, - ACTIONS(5326), 1, anon_sym_PIPE_PIPE, - ACTIONS(5328), 1, - anon_sym_GT_GT, - ACTIONS(5332), 1, - anon_sym_AMP, - ACTIONS(5334), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_PIPE, - ACTIONS(5340), 1, anon_sym_PERCENT, - ACTIONS(5342), 1, anon_sym_STAR_STAR, - ACTIONS(5350), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5352), 1, - sym__ternary_qmark, - STATE(2027), 1, - sym_type_arguments, - STATE(2188), 1, - sym_arguments, - STATE(4605), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [90102] = 13, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5076), 1, + anon_sym_RBRACE, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4845), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5320), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5322), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5330), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5338), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5346), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5348), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5672), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5344), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89933] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5520), 2, + ACTIONS(2348), 2, sym_number, sym_private_property_identifier, - STATE(3777), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3819), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2362), 23, anon_sym_export, anon_sym_type, @@ -215040,38 +215194,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89992] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2338), 1, + [90171] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(5076), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5518), 2, sym_number, sym_private_property_identifier, - STATE(3797), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2362), 23, anon_sym_export, anon_sym_type, @@ -215096,65 +215245,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90061] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, + [90230] = 6, + ACTIONS(4637), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5502), 2, - sym_number, - sym_private_property_identifier, - STATE(3864), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4378), 2, anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4640), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3499), 10, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3503), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90120] = 23, - ACTIONS(1635), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [90285] = 23, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, - ACTIONS(3813), 1, + ACTIONS(3833), 1, anon_sym_AT, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -215172,15 +215319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, ACTIONS(5690), 1, anon_sym_accessor, - STATE(2659), 1, + STATE(2655), 1, sym_method_definition, - STATE(2742), 1, + STATE(2732), 1, sym_accessibility_modifier, STATE(2748), 1, aux_sym_export_statement_repeat1, - STATE(2806), 1, + STATE(2805), 1, sym_override_modifier, - STATE(2808), 1, + STATE(2815), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, @@ -215195,7 +215342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3067), 3, + STATE(3082), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -215213,20 +215360,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90209] = 31, - ACTIONS(4031), 1, + [90374] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -215250,16 +215397,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -215280,27 +215427,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4911), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5534), 2, + ACTIONS(5532), 2, anon_sym_COMMA, anon_sym_RPAREN, ACTIONS(4907), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90314] = 31, - ACTIONS(4031), 1, + [90479] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4885), 1, anon_sym_AMP_AMP, @@ -215324,16 +215471,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(4915), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4877), 2, @@ -215361,19 +215508,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90419] = 6, - ACTIONS(4627), 1, + [90584] = 6, + ACTIONS(4529), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, + ACTIONS(4093), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4630), 3, - anon_sym_GT, + ACTIONS(4532), 3, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, @@ -215410,20 +215557,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90474] = 6, - ACTIONS(4529), 1, + [90639] = 6, + ACTIONS(4463), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 2, + ACTIONS(4167), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4532), 3, - anon_sym_GT, + ACTIONS(4466), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3499), 10, + anon_sym_GT, + ACTIONS(4459), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -215434,7 +215581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 24, + ACTIONS(4461), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -215459,12 +215606,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90529] = 8, - ACTIONS(2338), 1, + [90694] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -215472,11 +215619,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5444), 2, sym_number, sym_private_property_identifier, - STATE(3898), 3, + STATE(3900), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -215510,154 +215657,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90588] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 11, - sym__automatic_semicolon, - anon_sym_EQ, + [90753] = 13, + ACTIONS(239), 1, anon_sym_COMMA, + ACTIONS(697), 1, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1988), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90639] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4697), 1, - anon_sym_LT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_GT_GT, - ACTIONS(4717), 1, - anon_sym_AMP, - ACTIONS(4719), 1, - anon_sym_CARET, - ACTIONS(4721), 1, - anon_sym_PIPE, - ACTIONS(4725), 1, - anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_STAR_STAR, - ACTIONS(4735), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4741), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4705), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4715), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4733), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5692), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4729), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90744] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(4686), 1, anon_sym_LBRACK, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5423), 2, + ACTIONS(2348), 2, sym_number, sym_private_property_identifier, - STATE(3821), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3819), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2362), 23, anon_sym_export, anon_sym_type, @@ -215682,38 +215713,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90803] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, - ACTIONS(2338), 1, + [90822] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5423), 2, sym_number, sym_private_property_identifier, - STATE(3797), 3, + STATE(3823), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2362), 23, anon_sym_export, anon_sym_type, @@ -215738,56 +215764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90872] = 6, - ACTIONS(4463), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4173), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4466), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4459), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4461), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [90927] = 4, + [90881] = 4, ACTIONS(4921), 1, sym_regex_flags, ACTIONS(5), 2, @@ -215798,7 +215775,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -215808,6 +215784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_instanceof, anon_sym_satisfies, anon_sym_implements, @@ -215834,14 +215811,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [90978] = 31, - ACTIONS(4633), 1, + [90932] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -215873,9 +215850,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -215908,14 +215885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91083] = 32, - ACTIONS(4633), 1, + [91037] = 32, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -215951,9 +215928,9 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -215983,7 +215960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91190] = 6, + [91144] = 6, ACTIONS(4623), 1, anon_sym_EQ, ACTIONS(4868), 1, @@ -215998,7 +215975,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -216008,6 +215984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4625), 23, sym__ternary_qmark, anon_sym_as, @@ -216032,124 +216009,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91245] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, - anon_sym_LBRACK, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, + [91199] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [91314] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4704), 1, + anon_sym_LT, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4716), 1, + anon_sym_AMP_AMP, + ACTIONS(4718), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4720), 1, + anon_sym_GT_GT, + ACTIONS(4724), 1, + anon_sym_AMP, + ACTIONS(4726), 1, + anon_sym_CARET, + ACTIONS(4728), 1, + anon_sym_PIPE, + ACTIONS(4732), 1, + anon_sym_PERCENT, + ACTIONS(4734), 1, + anon_sym_STAR_STAR, + ACTIONS(4742), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(4748), 1, + sym__ternary_qmark, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4712), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4722), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4730), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4738), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4740), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, ACTIONS(5700), 2, - sym_number, - sym_private_property_identifier, - STATE(3885), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4736), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91304] = 6, + ACTIONS(4445), 1, + anon_sym_EQ, + ACTIONS(4864), 1, + anon_sym_of, + ACTIONS(5702), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4443), 12, + anon_sym_STAR, anon_sym_BANG, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4447), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [91373] = 4, - ACTIONS(4183), 1, - anon_sym_extends, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91359] = 6, + ACTIONS(4623), 1, + anon_sym_EQ, + ACTIONS(4868), 1, + anon_sym_of, + ACTIONS(5705), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4179), 13, + ACTIONS(4621), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -216159,13 +216154,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 26, + anon_sym_GT, + ACTIONS(4625), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -216186,236 +216181,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91424] = 31, - ACTIONS(4031), 1, + [91414] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5702), 2, + ACTIONS(5692), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4729), 3, + anon_sym_RBRACK, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91529] = 31, - ACTIONS(4031), 1, + [91519] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4887), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4889), 1, + anon_sym_GT_GT, + ACTIONS(4893), 1, + anon_sym_AMP, + ACTIONS(4895), 1, + anon_sym_CARET, + ACTIONS(4897), 1, + anon_sym_PIPE, + ACTIONS(4901), 1, + anon_sym_PERCENT, + ACTIONS(4903), 1, + anon_sym_STAR_STAR, + ACTIONS(4905), 1, + anon_sym_LT, + ACTIONS(4913), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4915), 1, + sym__ternary_qmark, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4866), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4877), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4883), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4891), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4899), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4909), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4911), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4907), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91624] = 4, + ACTIONS(4213), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4127), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4129), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [91675] = 31, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5062), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91634] = 31, - ACTIONS(4031), 1, + [91780] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5072), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91739] = 32, - ACTIONS(4633), 1, + [91885] = 32, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -216445,15 +216561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5352), 1, sym__ternary_qmark, - ACTIONS(5704), 1, + ACTIONS(5708), 1, anon_sym_SEMI, - ACTIONS(5706), 1, + ACTIONS(5710), 1, sym__automatic_semicolon, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -216483,10 +216599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91846] = 8, - ACTIONS(1635), 1, + [91992] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -216496,11 +216612,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4854), 2, sym_number, sym_private_property_identifier, - STATE(3460), 3, + STATE(3360), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -216534,106 +216650,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91905] = 4, - ACTIONS(4286), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4179), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4181), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [91956] = 17, - ACTIONS(2338), 1, + [92051] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(2366), 1, - anon_sym_readonly, - ACTIONS(2370), 1, - anon_sym_override, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(5708), 1, - anon_sym_RBRACE, - STATE(2805), 1, - sym_override_modifier, - STATE(4940), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5712), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3797), 3, + STATE(3800), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 18, + ACTIONS(2362), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -216641,50 +216701,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92033] = 8, - ACTIONS(2338), 1, + [92110] = 17, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(2364), 1, + anon_sym_async, + ACTIONS(2366), 1, + anon_sym_readonly, + ACTIONS(2370), 1, + anon_sym_override, + ACTIONS(4686), 1, anon_sym_LBRACK, + ACTIONS(5003), 1, + anon_sym_STAR, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(5714), 1, + anon_sym_RBRACE, + STATE(2814), 1, + sym_override_modifier, + STATE(4943), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5710), 2, + ACTIONS(2348), 2, sym_number, sym_private_property_identifier, + ACTIONS(2368), 2, + anon_sym_get, + anon_sym_set, STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3819), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 23, + ACTIONS(2362), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -216692,24 +216761,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92092] = 8, - ACTIONS(2338), 1, + [92187] = 4, + ACTIONS(4131), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4127), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4129), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92238] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5381), 2, + ACTIONS(5375), 2, sym_number, sym_private_property_identifier, - STATE(3760), 3, + STATE(3761), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -216743,24 +216859,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92151] = 8, - ACTIONS(1635), 1, + [92297] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(5716), 2, sym_number, sym_private_property_identifier, - STATE(3393), 3, + STATE(3391), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -216794,36 +216910,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92210] = 6, - ACTIONS(4435), 1, + [92356] = 7, + ACTIONS(3650), 1, anon_sym_EQ, - ACTIONS(4864), 1, - anon_sym_of, - ACTIONS(5714), 1, - anon_sym_in, + ACTIONS(4637), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4433), 12, + ACTIONS(4378), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4640), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 25, + ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -216843,34 +216960,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92265] = 12, - ACTIONS(4031), 1, + [92413] = 12, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5717), 1, + ACTIONS(5718), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4791), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -216879,6 +216995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4793), 18, sym__ternary_qmark, anon_sym_as, @@ -216898,39 +217015,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [92332] = 7, - ACTIONS(3537), 1, + [92480] = 15, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(3539), 1, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(5721), 1, + anon_sym_LT, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3505), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3499), 11, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4798), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 20, + anon_sym_GT, + ACTIONS(4800), 16, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -216944,72 +217072,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [92389] = 31, - ACTIONS(4031), 1, + [92553] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4805), 2, anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -217022,31 +217147,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92494] = 11, - ACTIONS(4031), 1, + [92658] = 11, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5720), 1, + ACTIONS(5724), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 12, + ACTIONS(4781), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -217055,7 +217179,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 20, + anon_sym_GT, + ACTIONS(4783), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, @@ -217076,61 +217201,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92559] = 6, - ACTIONS(4623), 1, - anon_sym_EQ, - ACTIONS(4868), 1, - anon_sym_of, - ACTIONS(5723), 1, - anon_sym_in, + [92723] = 8, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4621), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4625), 25, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5500), 2, + sym_number, + sym_private_property_identifier, + STATE(3864), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92614] = 8, - ACTIONS(2338), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2362), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [92782] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -217138,11 +217265,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5556), 2, sym_number, sym_private_property_identifier, - STATE(3761), 3, + STATE(3771), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -217176,10 +217303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92673] = 16, - ACTIONS(2338), 1, + [92841] = 16, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2364), 1, anon_sym_async, @@ -217189,11 +217316,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, - STATE(2805), 1, + STATE(2814), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, @@ -217204,14 +217331,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - ACTIONS(5726), 2, + ACTIONS(5727), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -217235,14 +217362,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92748] = 31, - ACTIONS(4633), 1, + [92916] = 31, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4635), 1, + ACTIONS(4629), 1, anon_sym_LBRACK, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(4809), 1, anon_sym_as, @@ -217274,9 +217401,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, STATE(2027), 1, sym_type_arguments, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -217309,34 +217436,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92853] = 12, - ACTIONS(4031), 1, + [93021] = 8, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5730), 2, + sym_number, + sym_private_property_identifier, + STATE(3884), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2362), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [93080] = 8, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5578), 2, + sym_number, + sym_private_property_identifier, + STATE(3773), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2362), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [93139] = 12, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5729), 1, + ACTIONS(5732), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4791), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -217345,6 +217573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4793), 18, sym__ternary_qmark, anon_sym_as, @@ -217364,39 +217593,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [92920] = 15, - ACTIONS(4031), 1, + [93206] = 15, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5732), 1, + ACTIONS(5735), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4798), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -217405,6 +217633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4800), 16, sym__ternary_qmark, anon_sym_RBRACK, @@ -217422,105 +217651,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [92993] = 31, - ACTIONS(4031), 1, + [93279] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, ACTIONS(5649), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5651), 1, + anon_sym_CARET, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5669), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4805), 2, anon_sym_RBRACK, anon_sym_BQUOTE, - ACTIONS(5635), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93098] = 11, - ACTIONS(4031), 1, + [93384] = 11, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5735), 1, + ACTIONS(5738), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 12, + ACTIONS(4781), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -217529,7 +217757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 20, + anon_sym_GT, + ACTIONS(4783), 20, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -217550,71 +217779,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93163] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, + [93449] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5580), 2, - sym_number, - sym_private_property_identifier, - STATE(3771), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, + ACTIONS(4131), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [93222] = 6, - ACTIONS(1709), 1, - anon_sym_EQ, - ACTIONS(4870), 1, - anon_sym_of, - ACTIONS(5738), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1707), 12, + anon_sym_extends, + ACTIONS(4127), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -217624,10 +217799,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 25, + anon_sym_GT, + ACTIONS(4129), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -217650,25 +217826,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93277] = 7, + [93500] = 7, ACTIONS(1709), 1, anon_sym_EQ, - ACTIONS(2372), 1, + ACTIONS(2376), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4139), 2, + ACTIONS(4390), 2, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4142), 2, + ACTIONS(4393), 2, anon_sym_AMP, anon_sym_PIPE, ACTIONS(1707), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -217676,6 +217851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(1711), 23, sym__ternary_qmark, anon_sym_as, @@ -217700,35 +217876,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93334] = 5, - ACTIONS(3501), 1, + [93557] = 13, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(699), 1, + anon_sym_RBRACE, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4593), 1, anon_sym_EQ, + ACTIONS(4686), 1, + anon_sym_LBRACK, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3684), 3, - anon_sym_COMMA, + ACTIONS(2348), 2, + sym_number, + sym_private_property_identifier, + STATE(3799), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2362), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [93626] = 7, + ACTIONS(4149), 1, + anon_sym_extends, + ACTIONS(4445), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4449), 2, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3499), 13, + anon_sym_LBRACK, + ACTIONS(4452), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4443), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(4447), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -217748,37 +217982,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93387] = 7, - ACTIONS(4137), 1, - anon_sym_extends, - ACTIONS(4435), 1, + [93683] = 5, + ACTIONS(3515), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4439), 2, + ACTIONS(3693), 3, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4442), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4433), 11, + anon_sym_RBRACK, + ACTIONS(3499), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 23, + anon_sym_GT, + ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -217798,30 +218030,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93444] = 8, - ACTIONS(2338), 1, + [93736] = 13, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(4686), 1, anon_sym_LBRACK, + ACTIONS(5074), 1, + anon_sym_RBRACE, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5389), 2, + ACTIONS(2348), 2, sym_number, sym_private_property_identifier, - STATE(3872), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(3819), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -217849,63 +218086,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93503] = 4, + [93805] = 8, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 2, + ACTIONS(5389), 2, + sym_number, + sym_private_property_identifier, + STATE(3870), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4179), 13, - anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4181), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93554] = 19, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2362), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [93864] = 19, ACTIONS(233), 1, anon_sym_STAR, ACTIONS(2026), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5745), 1, anon_sym_async, @@ -217915,14 +218156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(5755), 1, anon_sym_override, - STATE(2781), 1, + STATE(2785), 1, sym_accessibility_modifier, - STATE(2816), 1, + STATE(2801), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5284), 2, + ACTIONS(5282), 2, sym_number, sym_private_property_identifier, ACTIONS(5743), 2, @@ -217939,7 +218180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym__property_name, sym_computed_property_name, - STATE(5250), 3, + STATE(5253), 3, sym_spread_element, sym_method_definition, sym_pair, @@ -217958,85 +218199,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93635] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1885), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1889), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1891), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [93686] = 13, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(2338), 1, + [93945] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5385), 2, sym_number, sym_private_property_identifier, - STATE(3797), 3, + STATE(3766), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2362), 23, anon_sym_export, anon_sym_type, @@ -218061,98 +218250,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93755] = 31, - ACTIONS(4031), 1, + [94004] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4697), 1, + ACTIONS(4704), 1, anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4709), 1, + ACTIONS(4716), 1, anon_sym_AMP_AMP, - ACTIONS(4711), 1, + ACTIONS(4718), 1, anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, + ACTIONS(4720), 1, anon_sym_GT_GT, - ACTIONS(4717), 1, + ACTIONS(4724), 1, anon_sym_AMP, - ACTIONS(4719), 1, + ACTIONS(4726), 1, anon_sym_CARET, - ACTIONS(4721), 1, + ACTIONS(4728), 1, anon_sym_PIPE, - ACTIONS(4725), 1, + ACTIONS(4732), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(4734), 1, anon_sym_STAR_STAR, - ACTIONS(4735), 1, + ACTIONS(4742), 1, anon_sym_QMARK_QMARK, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4741), 1, + ACTIONS(4748), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4699), 2, + ACTIONS(4706), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4705), 2, + ACTIONS(4712), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4715), 2, + ACTIONS(4722), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4723), 2, + ACTIONS(4730), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4731), 2, + ACTIONS(4738), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4733), 2, + ACTIONS(4740), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5026), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4729), 3, + ACTIONS(4736), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93860] = 8, - ACTIONS(2338), 1, + [94109] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5450), 2, + ACTIONS(5448), 2, sym_number, sym_private_property_identifier, - STATE(3805), 3, + STATE(3802), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -218186,12 +218375,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93919] = 8, - ACTIONS(2338), 1, + [94168] = 6, + ACTIONS(3515), 1, + anon_sym_EQ, + ACTIONS(3696), 1, + anon_sym_in, + ACTIONS(3699), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3503), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [94223] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -218199,11 +218437,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5415), 2, sym_number, sym_private_property_identifier, - STATE(3904), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -218237,82 +218475,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93978] = 6, - ACTIONS(3501), 1, - anon_sym_EQ, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3699), 1, - anon_sym_of, + [94282] = 8, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 25, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5369), 2, + sym_number, + sym_private_property_identifier, + STATE(3866), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [94033] = 8, - ACTIONS(2338), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2362), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [94341] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5375), 2, + ACTIONS(5454), 2, sym_number, sym_private_property_identifier, - STATE(3858), 3, + STATE(3818), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2362), 23, anon_sym_export, anon_sym_type, @@ -218337,22 +218577,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94092] = 13, + [94400] = 13, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(672), 1, anon_sym_RBRACE, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - STATE(4824), 1, + STATE(4823), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -218360,11 +218600,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2348), 2, sym_number, sym_private_property_identifier, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -218393,24 +218633,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94161] = 8, - ACTIONS(2338), 1, + [94469] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5458), 2, + ACTIONS(5464), 2, sym_number, sym_private_property_identifier, - STATE(3824), 3, + STATE(3833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -218444,24 +218684,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94220] = 8, - ACTIONS(2338), 1, + [94528] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5466), 2, + ACTIONS(5472), 2, sym_number, sym_private_property_identifier, STATE(3755), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -218495,13 +218735,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94279] = 5, + [94587] = 5, ACTIONS(3543), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3647), 3, + ACTIONS(3600), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, @@ -218509,7 +218749,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -218519,6 +218758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -218543,72 +218783,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94332] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5474), 2, - sym_number, - sym_private_property_identifier, - STATE(3839), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94391] = 7, - ACTIONS(3658), 1, + [94640] = 7, + ACTIONS(3666), 1, anon_sym_EQ, - ACTIONS(4627), 1, + ACTIONS(4637), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, + ACTIONS(4378), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4630), 3, - anon_sym_GT, + ACTIONS(4640), 3, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, @@ -218644,22 +218833,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94448] = 13, + [94697] = 13, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5005), 1, anon_sym_RBRACE, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -218667,11 +218856,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2348), 2, sym_number, sym_private_property_identifier, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -218700,201 +218889,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94517] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, + [94766] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5298), 2, - sym_number, - sym_private_property_identifier, - STATE(3817), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(1879), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1883), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94576] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5240), 2, - sym_number, - sym_private_property_identifier, - STATE(3758), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1885), 25, sym__automatic_semicolon, - anon_sym_EQ, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94635] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, anon_sym_AMP_AMP, - ACTIONS(4887), 1, anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, anon_sym_PERCENT, - ACTIONS(4903), 1, anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5026), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4907), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [94740] = 7, - ACTIONS(3501), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [94817] = 7, + ACTIONS(3515), 1, anon_sym_EQ, - ACTIONS(4379), 1, + ACTIONS(4378), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4627), 2, + ACTIONS(4637), 2, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4630), 2, + ACTIONS(4640), 2, anon_sym_AMP, anon_sym_PIPE, ACTIONS(3499), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -218902,6 +218961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -218926,33 +218986,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94797] = 8, - ACTIONS(2338), 1, + [94874] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5395), 2, + ACTIONS(5304), 2, sym_number, sym_private_property_identifier, - STATE(3859), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2362), 23, anon_sym_export, anon_sym_type, @@ -218977,99 +219037,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94856] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, + [94933] = 7, + ACTIONS(3537), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(3539), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4885), 1, - anon_sym_AMP_AMP, - ACTIONS(4887), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4889), 1, - anon_sym_GT_GT, - ACTIONS(4893), 1, - anon_sym_AMP, - ACTIONS(4895), 1, - anon_sym_CARET, - ACTIONS(4897), 1, - anon_sym_PIPE, - ACTIONS(4901), 1, - anon_sym_PERCENT, - ACTIONS(4903), 1, - anon_sym_STAR_STAR, - ACTIONS(4905), 1, - anon_sym_LT, - ACTIONS(4913), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4915), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4866), 2, + ACTIONS(3527), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(3517), 4, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4877), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3499), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4883), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4891), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4899), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4909), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 2, + anon_sym_GT, + ACTIONS(3503), 20, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4907), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [94961] = 8, - ACTIONS(4031), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [94990] = 8, + ACTIONS(3967), 1, anon_sym_LPAREN, ACTIONS(5757), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4700), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -219078,7 +219113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 23, + anon_sym_GT, + ACTIONS(4702), 23, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219102,20 +219138,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95020] = 31, - ACTIONS(4031), 1, + [95049] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5757), 1, anon_sym_LT, @@ -219139,11 +219175,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5791), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -219151,7 +219187,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4483), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5759), 2, @@ -219176,20 +219212,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95125] = 31, - ACTIONS(4031), 1, + [95154] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5757), 1, anon_sym_LT, @@ -219213,19 +219249,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5791), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4743), 2, + ACTIONS(4750), 2, anon_sym_of, anon_sym_BQUOTE, ACTIONS(5759), 2, @@ -219250,20 +219286,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95230] = 31, - ACTIONS(4031), 1, + [95259] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5757), 1, anon_sym_LT, @@ -219287,19 +219323,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5791), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4745), 2, + ACTIONS(4752), 2, anon_sym_of, anon_sym_BQUOTE, ACTIONS(5759), 2, @@ -219324,20 +219360,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95335] = 31, - ACTIONS(4031), 1, + [95364] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5757), 1, anon_sym_LT, @@ -219361,19 +219397,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5791), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4747), 2, + ACTIONS(4754), 2, anon_sym_of, anon_sym_BQUOTE, ACTIONS(5759), 2, @@ -219398,20 +219434,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95440] = 31, - ACTIONS(4031), 1, + [95469] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5757), 1, anon_sym_LT, @@ -219435,11 +219471,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5791), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -219447,7 +219483,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4523), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5759), 2, @@ -219472,14 +219508,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95545] = 18, - ACTIONS(4031), 1, + [95574] = 18, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5757), 1, anon_sym_LT, @@ -219489,16 +219525,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(5781), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5759), 2, @@ -219510,15 +219546,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5777), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 7, + ACTIONS(4758), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 14, + anon_sym_GT, + ACTIONS(4756), 14, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219533,36 +219569,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [95624] = 13, - ACTIONS(4031), 1, + [95653] = 13, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5781), 1, anon_sym_STAR_STAR, ACTIONS(5793), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4758), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -219571,7 +219606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 17, + anon_sym_GT, + ACTIONS(4756), 17, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219589,16 +219625,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [95693] = 25, - ACTIONS(4031), 1, + [95722] = 25, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(5757), 1, anon_sym_LT, @@ -219614,16 +219650,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(5781), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5759), 2, @@ -219648,7 +219684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 8, + ACTIONS(4756), 8, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219657,16 +219693,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [95786] = 26, - ACTIONS(4031), 1, + [95815] = 26, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(5757), 1, anon_sym_LT, @@ -219684,16 +219720,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(5781), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5759), 2, @@ -219718,7 +219754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 7, + ACTIONS(4756), 7, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219726,14 +219762,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [95881] = 16, - ACTIONS(4031), 1, + [95910] = 16, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5779), 1, anon_sym_PERCENT, @@ -219741,16 +219777,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5793), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5759), 2, @@ -219759,16 +219795,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5777), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 8, + ACTIONS(4758), 8, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 16, + anon_sym_GT, + ACTIONS(4756), 16, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219785,14 +219821,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [95956] = 22, - ACTIONS(4031), 1, + [95985] = 22, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5757), 1, anon_sym_LT, @@ -219802,16 +219838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(5781), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5759), 2, @@ -219832,7 +219868,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5787), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4751), 3, + ACTIONS(4758), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, @@ -219840,7 +219876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 9, + ACTIONS(4756), 9, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219850,14 +219886,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [96043] = 23, - ACTIONS(4031), 1, + [96072] = 23, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5757), 1, anon_sym_LT, @@ -219869,19 +219905,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(5781), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, ACTIONS(5759), 2, @@ -219906,7 +219942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 9, + ACTIONS(4756), 9, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219916,14 +219952,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [96132] = 24, - ACTIONS(4031), 1, + [96161] = 24, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5757), 1, anon_sym_LT, @@ -219937,19 +219973,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(5781), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, + ACTIONS(4758), 2, anon_sym_BANG, anon_sym_PIPE, ACTIONS(5759), 2, @@ -219974,7 +220010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 8, + ACTIONS(4756), 8, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -219983,14 +220019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [96223] = 15, - ACTIONS(4031), 1, + [96252] = 15, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5779), 1, anon_sym_PERCENT, @@ -219998,25 +220034,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5793), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5759), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4751), 10, + ACTIONS(4758), 10, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -220024,7 +220059,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 16, + anon_sym_GT, + ACTIONS(4756), 16, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -220041,41 +220077,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [96296] = 16, - ACTIONS(4031), 1, + [96325] = 16, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5781), 1, anon_sym_STAR_STAR, ACTIONS(5793), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 11, + ACTIONS(4758), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -220084,7 +220119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 15, + anon_sym_GT, + ACTIONS(4756), 15, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -220100,14 +220136,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [96371] = 20, - ACTIONS(4031), 1, + [96400] = 20, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5757), 1, anon_sym_LT, @@ -220117,16 +220153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(5781), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5759), 2, @@ -220145,13 +220181,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 5, + ACTIONS(4758), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 11, + ACTIONS(4756), 11, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -220163,16 +220199,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [96454] = 27, - ACTIONS(4031), 1, + [96483] = 27, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(5757), 1, anon_sym_LT, @@ -220192,16 +220228,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, ACTIONS(5781), 1, anon_sym_STAR_STAR, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5759), 2, @@ -220226,27 +220262,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 6, + ACTIONS(4756), 6, sym__ternary_qmark, anon_sym_as, anon_sym_of, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [96551] = 31, - ACTIONS(4031), 1, + [96580] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5757), 1, anon_sym_LT, @@ -220270,11 +220306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5791), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -220282,7 +220318,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4541), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5759), 2, @@ -220307,20 +220343,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96656] = 31, - ACTIONS(4031), 1, + [96685] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5757), 1, anon_sym_LT, @@ -220344,19 +220380,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5791), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4756), 2, + ACTIONS(4763), 2, anon_sym_of, anon_sym_BQUOTE, ACTIONS(5759), 2, @@ -220381,20 +220417,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96761] = 31, - ACTIONS(4031), 1, + [96790] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5757), 1, anon_sym_LT, @@ -220418,11 +220454,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5791), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -220430,7 +220466,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4565), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5759), 2, @@ -220455,20 +220491,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96866] = 31, - ACTIONS(4031), 1, + [96895] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5757), 1, anon_sym_LT, @@ -220492,11 +220528,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5791), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -220504,7 +220540,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4573), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5759), 2, @@ -220529,20 +220565,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96971] = 31, - ACTIONS(4031), 1, + [97000] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5757), 1, anon_sym_LT, @@ -220566,11 +220602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5791), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, @@ -220578,7 +220614,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4577), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5759), 2, @@ -220603,20 +220639,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97076] = 31, - ACTIONS(4031), 1, + [97105] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5757), 1, anon_sym_LT, @@ -220640,19 +220676,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5791), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4758), 2, + ACTIONS(4765), 2, anon_sym_of, anon_sym_BQUOTE, ACTIONS(5759), 2, @@ -220677,20 +220713,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97181] = 31, - ACTIONS(4031), 1, + [97210] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5757), 1, anon_sym_LT, @@ -220714,19 +220750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5791), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4760), 2, + ACTIONS(4767), 2, anon_sym_of, anon_sym_BQUOTE, ACTIONS(5759), 2, @@ -220751,20 +220787,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97286] = 31, - ACTIONS(4031), 1, + [97315] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5757), 1, anon_sym_LT, @@ -220788,19 +220824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5791), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4772), 2, + ACTIONS(4779), 2, anon_sym_of, anon_sym_BQUOTE, ACTIONS(5759), 2, @@ -220825,18 +220861,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97391] = 4, + [97420] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 2, + ACTIONS(4213), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4179), 13, + ACTIONS(4127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -220846,7 +220881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 25, + anon_sym_GT, + ACTIONS(4129), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -220872,8 +220908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97442] = 4, - ACTIONS(3619), 1, + [97471] = 4, + ACTIONS(3593), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -220882,7 +220918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -220892,6 +220927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 26, sym__ternary_qmark, anon_sym_as, @@ -220919,34 +220955,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97493] = 12, - ACTIONS(4031), 1, + [97522] = 12, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5796), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4791), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -220955,6 +220990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4793), 18, sym__ternary_qmark, anon_sym_as, @@ -220974,39 +221010,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [97560] = 15, - ACTIONS(4031), 1, + [97589] = 15, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5799), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4798), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -221015,6 +221050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4800), 16, sym__ternary_qmark, anon_sym_of, @@ -221032,20 +221068,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [97633] = 31, - ACTIONS(4031), 1, + [97662] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5757), 1, anon_sym_LT, @@ -221069,16 +221105,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5791), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4805), 2, @@ -221106,31 +221142,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97738] = 11, - ACTIONS(4031), 1, + [97767] = 11, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5802), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 12, + ACTIONS(4781), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -221139,7 +221174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 20, + anon_sym_GT, + ACTIONS(4783), 20, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -221160,24 +221196,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97803] = 8, - ACTIONS(2338), 1, + [97832] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5395), 2, sym_number, sym_private_property_identifier, - STATE(3765), 3, + STATE(3859), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 9, + ACTIONS(3819), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -221211,61 +221247,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97862] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, + [97891] = 31, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(4885), 1, + anon_sym_AMP_AMP, + ACTIONS(4887), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4889), 1, + anon_sym_GT_GT, + ACTIONS(4893), 1, + anon_sym_AMP, + ACTIONS(4895), 1, + anon_sym_CARET, + ACTIONS(4897), 1, + anon_sym_PIPE, + ACTIONS(4901), 1, + anon_sym_PERCENT, + ACTIONS(4903), 1, + anon_sym_STAR_STAR, + ACTIONS(4905), 1, + anon_sym_LT, + ACTIONS(4913), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4915), 1, + sym__ternary_qmark, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5363), 2, - sym_number, - sym_private_property_identifier, - STATE(3792), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4877), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4883), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4891), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4899), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4909), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4911), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5026), 2, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [97921] = 7, - ACTIONS(4083), 1, + anon_sym_RPAREN, + ACTIONS(4907), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97996] = 7, + ACTIONS(4091), 1, anon_sym_QMARK, - ACTIONS(4085), 1, + ACTIONS(4093), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, @@ -221281,7 +221340,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -221289,6 +221347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, @@ -221312,21 +221371,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97978] = 7, + [98053] = 7, ACTIONS(3674), 1, anon_sym_EQ, - ACTIONS(4627), 1, + ACTIONS(4637), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, + ACTIONS(4378), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4630), 3, - anon_sym_GT, + ACTIONS(4640), 3, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, @@ -221362,8 +221421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98035] = 4, - ACTIONS(3587), 1, + [98110] = 4, + ACTIONS(3630), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -221372,7 +221431,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -221382,6 +221440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 26, sym__ternary_qmark, anon_sym_as, @@ -221409,37 +221468,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [98086] = 7, - ACTIONS(3650), 1, + [98161] = 6, + ACTIONS(1709), 1, anon_sym_EQ, - ACTIONS(4627), 1, - anon_sym_LBRACK, + ACTIONS(4870), 1, + anon_sym_of, + ACTIONS(5805), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 10, + ACTIONS(1707), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + anon_sym_GT, + ACTIONS(1711), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -221459,72 +221517,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98143] = 15, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5805), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4798), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4800), 16, - sym__ternary_qmark, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, [98216] = 20, - ACTIONS(4031), 1, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, ACTIONS(5812), 1, anon_sym_GT_GT, @@ -221534,16 +221534,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5822), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5808), 2, @@ -221562,13 +221562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4751), 5, + ACTIONS(4758), 5, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 10, + ACTIONS(4756), 10, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -221579,30 +221579,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_BQUOTE, anon_sym_satisfies, - [98298] = 11, - ACTIONS(1635), 1, + [98298] = 9, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5826), 1, - anon_sym_readonly, - STATE(2837), 1, - sym_override_modifier, + ACTIONS(5828), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4854), 2, + ACTIONS(5826), 2, sym_number, sym_private_property_identifier, - STATE(3460), 3, + STATE(3406), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -221610,7 +221606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 21, + ACTIONS(3705), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221619,12 +221615,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -221632,26 +221630,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98362] = 9, - ACTIONS(1635), 1, + [98358] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4131), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4127), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4129), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98408] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, + ACTIONS(3731), 1, + anon_sym_override, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4862), 1, - anon_sym_abstract, + ACTIONS(5830), 1, + anon_sym_readonly, + STATE(2837), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4854), 2, sym_number, sym_private_property_identifier, - STATE(3460), 3, + STATE(3360), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -221659,7 +221707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3705), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221668,14 +221716,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -221683,26 +221729,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98422] = 9, - ACTIONS(1635), 1, + [98472] = 9, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5830), 1, + ACTIONS(4862), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5828), 2, + ACTIONS(4854), 2, sym_number, sym_private_property_identifier, - STATE(3417), 3, + STATE(3360), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -221734,66 +221780,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98482] = 6, - ACTIONS(4593), 1, - anon_sym_EQ, + [98532] = 31, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4483), 1, + anon_sym_BQUOTE, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(5812), 1, + anon_sym_GT_GT, + ACTIONS(5818), 1, + anon_sym_PERCENT, + ACTIONS(5820), 1, + anon_sym_STAR_STAR, + ACTIONS(5822), 1, + anon_sym_LT, + ACTIONS(5832), 1, + anon_sym_AMP_AMP, + ACTIONS(5834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5836), 1, + anon_sym_AMP, + ACTIONS(5838), 1, + anon_sym_CARET, + ACTIONS(5840), 1, + anon_sym_PIPE, + ACTIONS(5846), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5848), 1, + sym__ternary_qmark, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1986), 6, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5808), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 7, - sym__automatic_semicolon, + anon_sym_SLASH, + ACTIONS(5810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5816), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5842), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5844), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5824), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98636] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(4750), 1, + anon_sym_BQUOTE, + ACTIONS(5812), 1, + anon_sym_GT_GT, + ACTIONS(5818), 1, + anon_sym_PERCENT, + ACTIONS(5820), 1, + anon_sym_STAR_STAR, + ACTIONS(5822), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1984), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98536] = 4, + ACTIONS(5832), 1, + anon_sym_AMP_AMP, + ACTIONS(5834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5836), 1, + anon_sym_AMP, + ACTIONS(5838), 1, + anon_sym_CARET, + ACTIONS(5840), 1, + anon_sym_PIPE, + ACTIONS(5846), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5848), 1, + sym__ternary_qmark, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5816), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5842), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5844), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5824), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98740] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 2, + ACTIONS(1855), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4179), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5850), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -221803,12 +221947,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 24, + anon_sym_GT, + ACTIONS(5853), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -221828,68 +221972,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98586] = 6, - ACTIONS(4593), 1, - anon_sym_EQ, + [98790] = 31, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(4752), 1, + anon_sym_BQUOTE, + ACTIONS(5812), 1, + anon_sym_GT_GT, + ACTIONS(5818), 1, + anon_sym_PERCENT, + ACTIONS(5820), 1, + anon_sym_STAR_STAR, + ACTIONS(5822), 1, + anon_sym_LT, + ACTIONS(5832), 1, + anon_sym_AMP_AMP, + ACTIONS(5834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5836), 1, + anon_sym_AMP, + ACTIONS(5838), 1, + anon_sym_CARET, + ACTIONS(5840), 1, + anon_sym_PIPE, + ACTIONS(5846), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5848), 1, + sym__ternary_qmark, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1990), 6, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5808), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1988), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98640] = 13, - ACTIONS(2338), 1, + anon_sym_SLASH, + ACTIONS(5810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5816), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5842), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5844), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5824), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98894] = 13, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, - ACTIONS(5278), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5708), 1, + ACTIONS(5714), 1, anon_sym_RBRACE, - STATE(4940), 1, + STATE(4943), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -221900,11 +222069,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -221931,22 +222100,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98708] = 14, - ACTIONS(2338), 1, + [98962] = 31, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(4754), 1, + anon_sym_BQUOTE, + ACTIONS(5812), 1, + anon_sym_GT_GT, + ACTIONS(5818), 1, + anon_sym_PERCENT, + ACTIONS(5820), 1, + anon_sym_STAR_STAR, + ACTIONS(5822), 1, + anon_sym_LT, + ACTIONS(5832), 1, + anon_sym_AMP_AMP, + ACTIONS(5834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5836), 1, + anon_sym_AMP, + ACTIONS(5838), 1, + anon_sym_CARET, + ACTIONS(5840), 1, + anon_sym_PIPE, + ACTIONS(5846), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5848), 1, + sym__ternary_qmark, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5816), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5842), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5844), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5824), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99066] = 14, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2364), 1, anon_sym_async, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, - ACTIONS(5278), 1, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5708), 1, + ACTIONS(5714), 1, anon_sym_RBRACE, - STATE(4940), 1, + STATE(4943), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -221957,11 +222199,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -221987,67 +222229,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98778] = 31, - ACTIONS(4031), 1, + [99136] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - ACTIONS(5832), 1, + ACTIONS(5856), 1, anon_sym_COLON, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -222060,18 +222302,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98882] = 4, + [99240] = 31, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4523), 1, + anon_sym_BQUOTE, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(5812), 1, + anon_sym_GT_GT, + ACTIONS(5818), 1, + anon_sym_PERCENT, + ACTIONS(5820), 1, + anon_sym_STAR_STAR, + ACTIONS(5822), 1, + anon_sym_LT, + ACTIONS(5832), 1, + anon_sym_AMP_AMP, + ACTIONS(5834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5836), 1, + anon_sym_AMP, + ACTIONS(5838), 1, + anon_sym_CARET, + ACTIONS(5840), 1, + anon_sym_PIPE, + ACTIONS(5846), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5848), 1, + sym__ternary_qmark, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5816), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5842), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5844), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5824), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99344] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 2, + ACTIONS(1921), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4179), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5858), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -222081,12 +222396,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4181), 24, + anon_sym_GT, + ACTIONS(5861), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -222106,19 +222421,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98932] = 4, + [99394] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1749), 3, + ACTIONS(4645), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5834), 13, + ACTIONS(5864), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -222128,7 +222442,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5837), 23, + anon_sym_GT, + ACTIONS(5867), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -222152,19 +222467,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98982] = 4, + [99444] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4645), 3, + ACTIONS(4611), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5840), 13, + ACTIONS(5870), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -222174,7 +222488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5843), 23, + anon_sym_GT, + ACTIONS(5873), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -222198,33 +222513,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99032] = 4, + [99494] = 6, + ACTIONS(4637), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4611), 3, + ACTIONS(4640), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4378), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5846), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3499), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5849), 23, + anon_sym_GT, + ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -222244,34 +222561,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99082] = 12, - ACTIONS(4031), 1, + [99548] = 12, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5852), 1, + ACTIONS(5876), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4791), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -222280,6 +222596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4793), 17, sym__ternary_qmark, anon_sym_as, @@ -222298,39 +222615,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_BQUOTE, anon_sym_satisfies, - [99148] = 15, - ACTIONS(4031), 1, + [99614] = 15, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5855), 1, + ACTIONS(5879), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(4798), 11, anon_sym_STAR, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -222339,6 +222655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(4800), 15, sym__ternary_qmark, anon_sym_AMP_AMP, @@ -222355,20 +222672,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [99220] = 31, - ACTIONS(4031), 1, + [99686] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4805), 1, anon_sym_BQUOTE, @@ -222380,30 +222697,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5822), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5860), 1, + ACTIONS(5834), 1, anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5836), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5838), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5872), 1, + ACTIONS(5846), 1, anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, + ACTIONS(5848), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5808), 2, @@ -222418,41 +222735,40 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5842), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5844), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(5824), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99324] = 11, - ACTIONS(4031), 1, + [99790] = 11, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5876), 1, + ACTIONS(5882), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4774), 12, + ACTIONS(4781), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -222461,7 +222777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4776), 19, + anon_sym_GT, + ACTIONS(4783), 19, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, @@ -222481,78 +222798,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99388] = 6, - ACTIONS(4627), 1, + [99854] = 18, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(5812), 1, + anon_sym_GT_GT, + ACTIONS(5818), 1, + anon_sym_PERCENT, + ACTIONS(5820), 1, + anon_sym_STAR_STAR, + ACTIONS(5822), 1, + anon_sym_LT, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4630), 2, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5814), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5816), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4758), 7, + anon_sym_BANG, + anon_sym_in, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4379), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3499), 11, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4756), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99932] = 13, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(5820), 1, + anon_sym_STAR_STAR, + ACTIONS(5885), 1, + anon_sym_LT, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4758), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(4756), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99442] = 11, - ACTIONS(1635), 1, + [100000] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5879), 1, + ACTIONS(5888), 1, anon_sym_readonly, - STATE(2866), 1, + STATE(2867), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(5716), 2, sym_number, sym_private_property_identifier, - STATE(3393), 3, + STATE(3391), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -222582,26 +222966,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99506] = 9, - ACTIONS(1635), 1, + [100064] = 9, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5881), 1, + ACTIONS(5890), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(5716), 2, sym_number, sym_private_property_identifier, - STATE(3393), 3, + STATE(3391), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -222633,80 +223017,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99566] = 8, - ACTIONS(4031), 1, + [100124] = 25, + ACTIONS(3967), 1, anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4758), 1, + anon_sym_BANG, + ACTIONS(5812), 1, + anon_sym_GT_GT, + ACTIONS(5818), 1, + anon_sym_PERCENT, + ACTIONS(5820), 1, + anon_sym_STAR_STAR, ACTIONS(5822), 1, anon_sym_LT, - STATE(1642), 1, + ACTIONS(5836), 1, + anon_sym_AMP, + ACTIONS(5838), 1, + anon_sym_CARET, + ACTIONS(5840), 1, + anon_sym_PIPE, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4693), 12, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5808), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5810), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5814), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5842), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4695), 22, + ACTIONS(5844), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5824), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4756), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99624] = 11, - ACTIONS(1635), 1, + [100216] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5885), 1, + ACTIONS(5894), 1, anon_sym_readonly, STATE(2873), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5883), 2, + ACTIONS(5892), 2, sym_number, sym_private_property_identifier, - STATE(3454), 3, + STATE(3458), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -222736,26 +223137,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99688] = 9, - ACTIONS(1635), 1, + [100280] = 9, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5889), 1, + ACTIONS(5898), 1, anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5887), 2, + ACTIONS(5896), 2, sym_number, sym_private_property_identifier, - STATE(3456), 3, + STATE(3461), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -222787,67 +223188,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99748] = 31, - ACTIONS(4031), 1, + [100340] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - ACTIONS(5891), 1, + ACTIONS(5900), 1, anon_sym_COLON, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -222860,23 +223261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99852] = 31, - ACTIONS(4031), 1, + [100444] = 26, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4483), 1, - anon_sym_BQUOTE, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, + ACTIONS(4758), 1, + anon_sym_BANG, ACTIONS(5812), 1, anon_sym_GT_GT, ACTIONS(5818), 1, @@ -222885,30 +223280,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5822), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5836), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5838), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5808), 2, @@ -222923,106 +223312,90 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5842), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5844), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(5824), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99956] = 31, - ACTIONS(4031), 1, + ACTIONS(4756), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100538] = 16, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4743), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, - anon_sym_GT_GT, ACTIONS(5818), 1, anon_sym_PERCENT, ACTIONS(5820), 1, anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5885), 1, anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, - anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(4758), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + anon_sym_GT, + ACTIONS(4756), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [100060] = 31, - ACTIONS(4031), 1, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100612] = 22, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4745), 1, - anon_sym_BQUOTE, ACTIONS(5812), 1, anon_sym_GT_GT, ACTIONS(5818), 1, @@ -223031,30 +223404,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5822), 1, anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, - anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5808), 2, @@ -223069,33 +223428,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5842), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5844), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4758), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, ACTIONS(5824), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100164] = 31, - ACTIONS(4031), 1, + ACTIONS(4756), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100698] = 23, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4747), 1, - anon_sym_BQUOTE, ACTIONS(5812), 1, anon_sym_GT_GT, ACTIONS(5818), 1, @@ -223104,32 +223468,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5822), 1, anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5836), 1, anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4758), 2, + anon_sym_BANG, + anon_sym_PIPE, ACTIONS(5808), 2, anon_sym_STAR, anon_sym_SLASH, @@ -223142,33 +223497,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5842), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5844), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(5824), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100268] = 31, - ACTIONS(4031), 1, + ACTIONS(4756), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100786] = 24, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4523), 1, - anon_sym_BQUOTE, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, ACTIONS(5812), 1, anon_sym_GT_GT, ACTIONS(5818), 1, @@ -223177,32 +223533,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5822), 1, anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5836), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5838), 1, anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(4758), 2, + anon_sym_BANG, + anon_sym_PIPE, ACTIONS(5808), 2, anon_sym_STAR, anon_sym_SLASH, @@ -223215,53 +223564,118 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5842), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5844), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(5824), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100372] = 12, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4756), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100876] = 15, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(5818), 1, + anon_sym_PERCENT, + ACTIONS(5820), 1, + anon_sym_STAR_STAR, + ACTIONS(5885), 1, + anon_sym_LT, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5726), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4758), 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4756), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100948] = 12, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5003), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2348), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2368), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5727), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3799), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2362), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, anon_sym_new, sym_identifier, @@ -223279,96 +223693,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100438] = 18, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [101014] = 6, + ACTIONS(4463), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(4466), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4167), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4459), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4751), 7, anon_sym_BANG, anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 13, + anon_sym_GT, + ACTIONS(4461), 22, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100516] = 13, - ACTIONS(4031), 1, + [101068] = 16, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, ACTIONS(5820), 1, anon_sym_STAR_STAR, - ACTIONS(5893), 1, + ACTIONS(5885), 1, anon_sym_LT, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 12, + ACTIONS(4758), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -223377,9 +223783,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 16, + anon_sym_GT, + ACTIONS(4756), 14, sym__ternary_qmark, - anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -223393,17 +223799,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - anon_sym_satisfies, - [100584] = 13, - ACTIONS(2338), 1, + [101142] = 13, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2364), 1, anon_sym_async, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, @@ -223416,14 +223821,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - ACTIONS(5726), 2, + ACTIONS(5727), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -223449,16 +223854,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100652] = 25, - ACTIONS(4031), 1, + [101210] = 27, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4758), 1, anon_sym_BANG, ACTIONS(5812), 1, anon_sym_GT_GT, @@ -223468,22 +223873,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5822), 1, anon_sym_LT, - ACTIONS(5862), 1, + ACTIONS(5832), 1, + anon_sym_AMP_AMP, + ACTIONS(5834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5836), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5838), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5808), 2, @@ -223498,133 +223907,83 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5842), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5844), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(5824), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100744] = 6, - ACTIONS(4463), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4466), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4173), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4459), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4461), 22, + ACTIONS(4756), 5, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100798] = 31, - ACTIONS(4031), 1, + [101306] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - ACTIONS(5896), 1, + ACTIONS(5902), 1, anon_sym_COLON, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -223637,17 +223996,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100902] = 26, - ACTIONS(4031), 1, + [101410] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4751), 1, + ACTIONS(4541), 1, + anon_sym_BQUOTE, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, ACTIONS(5812), 1, anon_sym_GT_GT, ACTIONS(5818), 1, @@ -223656,24 +224021,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5822), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5862), 1, + ACTIONS(5834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5836), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5838), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - STATE(1642), 1, + ACTIONS(5846), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5848), 1, + sym__ternary_qmark, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5808), 2, @@ -223688,90 +224059,202 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5842), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5844), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(5824), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [100996] = 16, - ACTIONS(4031), 1, + [101514] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(4763), 1, + anon_sym_BQUOTE, + ACTIONS(5812), 1, + anon_sym_GT_GT, ACTIONS(5818), 1, anon_sym_PERCENT, ACTIONS(5820), 1, anon_sym_STAR_STAR, - ACTIONS(5893), 1, + ACTIONS(5822), 1, anon_sym_LT, - STATE(1642), 1, + ACTIONS(5832), 1, + anon_sym_AMP_AMP, + ACTIONS(5834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5836), 1, + anon_sym_AMP, + ACTIONS(5838), 1, + anon_sym_CARET, + ACTIONS(5840), 1, + anon_sym_PIPE, + ACTIONS(5846), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5848), 1, + sym__ternary_qmark, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5808), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(5810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4751), 8, + ACTIONS(5842), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5844), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5824), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101618] = 6, + ACTIONS(4623), 1, + anon_sym_EQ, + ACTIONS(4666), 1, + anon_sym_RBRACK, + ACTIONS(4868), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4621), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + ACTIONS(4625), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [101672] = 6, + ACTIONS(1709), 1, + anon_sym_EQ, + ACTIONS(4681), 1, + anon_sym_RBRACK, + ACTIONS(4870), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1707), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 15, + anon_sym_GT, + ACTIONS(1711), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101070] = 22, - ACTIONS(4031), 1, + [101726] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4565), 1, + anon_sym_BQUOTE, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, ACTIONS(5812), 1, anon_sym_GT_GT, ACTIONS(5818), 1, @@ -223780,16 +224263,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5822), 1, anon_sym_LT, - STATE(1642), 1, + ACTIONS(5832), 1, + anon_sym_AMP_AMP, + ACTIONS(5834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5836), 1, + anon_sym_AMP, + ACTIONS(5838), 1, + anon_sym_CARET, + ACTIONS(5840), 1, + anon_sym_PIPE, + ACTIONS(5846), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5848), 1, + sym__ternary_qmark, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5808), 2, @@ -223804,103 +224301,106 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5842), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5844), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4751), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, ACTIONS(5824), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101156] = 23, - ACTIONS(4031), 1, + [101830] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(5812), 1, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(5594), 1, + anon_sym_LT, + ACTIONS(5600), 1, + anon_sym_AMP_AMP, + ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5818), 1, + ACTIONS(5608), 1, + anon_sym_AMP, + ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, + anon_sym_PIPE, + ACTIONS(5616), 1, anon_sym_PERCENT, - ACTIONS(5820), 1, + ACTIONS(5618), 1, anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5862), 1, - anon_sym_AMP, - STATE(1642), 1, + ACTIONS(5626), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5628), 1, + sym__ternary_qmark, + ACTIONS(5904), 1, + anon_sym_COLON, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5808), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5622), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5624), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5620), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101244] = 24, - ACTIONS(4031), 1, + [101934] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4573), 1, + anon_sym_BQUOTE, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, ACTIONS(5812), 1, anon_sym_GT_GT, ACTIONS(5818), 1, @@ -223909,25 +224409,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5822), 1, anon_sym_LT, - ACTIONS(5862), 1, + ACTIONS(5832), 1, + anon_sym_AMP_AMP, + ACTIONS(5834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5836), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5838), 1, anon_sym_CARET, - STATE(1642), 1, + ACTIONS(5840), 1, + anon_sym_PIPE, + ACTIONS(5846), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5848), 1, + sym__ternary_qmark, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4751), 2, - anon_sym_BANG, - anon_sym_PIPE, ACTIONS(5808), 2, anon_sym_STAR, anon_sym_SLASH, @@ -223940,142 +224447,150 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5842), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5844), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(5824), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101334] = 15, - ACTIONS(4031), 1, + [102038] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4577), 1, + anon_sym_BQUOTE, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(5812), 1, + anon_sym_GT_GT, ACTIONS(5818), 1, anon_sym_PERCENT, ACTIONS(5820), 1, anon_sym_STAR_STAR, - ACTIONS(5893), 1, + ACTIONS(5822), 1, anon_sym_LT, - STATE(1642), 1, + ACTIONS(5832), 1, + anon_sym_AMP_AMP, + ACTIONS(5834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5836), 1, + anon_sym_AMP, + ACTIONS(5838), 1, + anon_sym_CARET, + ACTIONS(5840), 1, + anon_sym_PIPE, + ACTIONS(5846), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5848), 1, + sym__ternary_qmark, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4751), 10, - anon_sym_BANG, + ACTIONS(5810), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5814), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5842), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4749), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5844), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5824), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101406] = 31, - ACTIONS(4031), 1, + [102142] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - ACTIONS(5898), 1, + ACTIONS(5906), 1, anon_sym_COLON, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -224088,295 +224603,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101510] = 9, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5902), 1, - anon_sym_abstract, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5900), 2, - sym_number, - sym_private_property_identifier, - STATE(3409), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3705), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [101570] = 6, - ACTIONS(4623), 1, - anon_sym_EQ, - ACTIONS(4666), 1, - anon_sym_RBRACK, - ACTIONS(4868), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4621), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4625), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101624] = 31, - ACTIONS(4031), 1, + [102246] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, + ACTIONS(4765), 1, + anon_sym_BQUOTE, + ACTIONS(5812), 1, + anon_sym_GT_GT, + ACTIONS(5818), 1, + anon_sym_PERCENT, + ACTIONS(5820), 1, + anon_sym_STAR_STAR, + ACTIONS(5822), 1, + anon_sym_LT, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5600), 1, + ACTIONS(5834), 1, anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, + ACTIONS(5836), 1, anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(5838), 1, anon_sym_CARET, - ACTIONS(5610), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, + ACTIONS(5846), 1, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, + ACTIONS(5848), 1, sym__ternary_qmark, - ACTIONS(5904), 1, - anon_sym_COLON, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5808), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5810), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5814), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + ACTIONS(5842), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + ACTIONS(5844), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, + ACTIONS(5824), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101728] = 6, - ACTIONS(1709), 1, - anon_sym_EQ, - ACTIONS(4674), 1, - anon_sym_RBRACK, - ACTIONS(4870), 1, - anon_sym_COMMA, + [102350] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1707), 13, + ACTIONS(3210), 12, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1711), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_QMARK, + ACTIONS(3208), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101782] = 16, - ACTIONS(4031), 1, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + anon_sym_extends, + [102398] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5893), 1, - anon_sym_LT, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4751), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4749), 14, - sym__ternary_qmark, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4767), 1, anon_sym_BQUOTE, - [101856] = 27, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4751), 1, - anon_sym_BANG, ACTIONS(5812), 1, anon_sym_GT_GT, ACTIONS(5818), 1, @@ -224385,26 +224746,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5822), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5860), 1, + ACTIONS(5834), 1, anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5836), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5838), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - STATE(1642), 1, + ACTIONS(5846), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5848), 1, + sym__ternary_qmark, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5808), 2, @@ -224419,83 +224784,77 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5842), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5844), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(5824), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4749), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101952] = 31, - ACTIONS(4031), 1, + [102502] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - ACTIONS(5906), 1, + ACTIONS(5908), 1, anon_sym_COLON, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -224508,23 +224867,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102056] = 31, - ACTIONS(4031), 1, + [102606] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4541), 1, - anon_sym_BQUOTE, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, + ACTIONS(4779), 1, + anon_sym_BQUOTE, ACTIONS(5812), 1, anon_sym_GT_GT, ACTIONS(5818), 1, @@ -224533,30 +224892,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5822), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5860), 1, + ACTIONS(5834), 1, anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5836), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5838), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5872), 1, + ACTIONS(5846), 1, anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, + ACTIONS(5848), 1, sym__ternary_qmark, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5808), 2, @@ -224571,91 +224930,169 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5842), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5844), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(5824), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102160] = 31, - ACTIONS(4031), 1, + [102710] = 6, + ACTIONS(3600), 1, + anon_sym_RBRACK, + ACTIONS(3637), 1, + anon_sym_COMMA, + ACTIONS(3682), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3503), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4033), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, anon_sym_AMP_AMP, - ACTIONS(5600), 1, anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, anon_sym_PERCENT, - ACTIONS(5616), 1, anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - ACTIONS(5908), 1, - anon_sym_COLON, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [102764] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(4545), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5910), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5622), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 2, + anon_sym_GT, + ACTIONS(5913), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [102264] = 4, - ACTIONS(3633), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [102814] = 15, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2364), 1, + anon_sym_async, + ACTIONS(2366), 1, + anon_sym_readonly, + ACTIONS(2370), 1, + anon_sym_override, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5003), 1, + anon_sym_STAR, + STATE(2814), 1, + sym_override_modifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2348), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2368), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5916), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3799), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2362), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102886] = 4, + ACTIONS(3643), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -224664,7 +225101,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -224674,6 +225110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 25, sym__automatic_semicolon, sym__ternary_qmark, @@ -224700,7 +225137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102314] = 4, + [102936] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -224708,11 +225145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5910), 13, + ACTIONS(5918), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -224722,7 +225158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5913), 23, + anon_sym_GT, + ACTIONS(5921), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -224746,19 +225183,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102364] = 4, + [102986] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1839), 3, + ACTIONS(1827), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5916), 13, + ACTIONS(5924), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -224768,7 +225204,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5919), 23, + anon_sym_GT, + ACTIONS(5927), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -224792,7 +225229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102414] = 4, + [103036] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -224800,11 +225237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5922), 13, + ACTIONS(5930), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -224814,7 +225250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5925), 23, + anon_sym_GT, + ACTIONS(5933), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -224838,261 +225275,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102464] = 31, - ACTIONS(4031), 1, + [103086] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4756), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5594), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5600), 1, anon_sym_AMP_AMP, - ACTIONS(5860), 1, + ACTIONS(5602), 1, anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, - anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [102568] = 6, - ACTIONS(3613), 1, - anon_sym_COMMA, - ACTIONS(3647), 1, - anon_sym_RBRACK, - ACTIONS(3689), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [102622] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4565), 1, - anon_sym_BQUOTE, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, - anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [102726] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - ACTIONS(5928), 1, + ACTIONS(5936), 1, anon_sym_COLON, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -225105,30 +225348,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102830] = 11, - ACTIONS(1635), 1, + [103190] = 9, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5932), 1, - anon_sym_readonly, - STATE(2832), 1, - sym_override_modifier, + ACTIONS(5940), 1, + anon_sym_abstract, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5930), 2, + ACTIONS(5938), 2, sym_number, sym_private_property_identifier, - STATE(3377), 3, + STATE(3465), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -225136,7 +225375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 21, + ACTIONS(3705), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225145,12 +225384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -225158,23 +225399,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [102894] = 6, - ACTIONS(4031), 1, + [103250] = 6, + ACTIONS(3967), 1, anon_sym_LPAREN, STATE(1671), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5934), 3, + ACTIONS(5942), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(4429), 13, + ACTIONS(4281), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -225184,7 +225424,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4431), 21, + anon_sym_GT, + ACTIONS(4283), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACK, @@ -225206,65 +225447,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_satisfies, - [102948] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3210), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_AMP, - anon_sym_PIPE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_QMARK, - ACTIONS(3208), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_DOT, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - anon_sym_extends, - [102996] = 32, - ACTIONS(4031), 1, + [103304] = 32, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(5026), 1, anon_sym_of, @@ -225292,18 +225488,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, ACTIONS(5791), 1, sym__ternary_qmark, - ACTIONS(5936), 1, + ACTIONS(5944), 1, anon_sym_in, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5759), 2, @@ -225325,226 +225521,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103102] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_BQUOTE, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, - anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [103206] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [103410] = 11, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(3731), 1, + anon_sym_override, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4577), 1, - anon_sym_BQUOTE, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, - anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, + ACTIONS(5949), 1, + anon_sym_readonly, + STATE(2872), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [103310] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(5947), 2, + sym_number, + sym_private_property_identifier, + STATE(3454), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5602), 1, - anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_CARET, - ACTIONS(5610), 1, - anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, - ACTIONS(5616), 1, - anon_sym_STAR_STAR, - ACTIONS(5618), 1, - anon_sym_LT, - ACTIONS(5626), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5628), 1, - sym__ternary_qmark, - ACTIONS(5939), 1, + anon_sym_SEMI, anon_sym_COLON, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5596), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5604), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5612), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5622), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5620), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [103414] = 6, + anon_sym_QMARK, + ACTIONS(3705), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [103474] = 6, ACTIONS(4529), 1, anon_sym_LBRACK, ACTIONS(5), 2, @@ -225553,7 +225583,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4532), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4085), 3, + ACTIONS(4093), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, @@ -225561,7 +225591,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -225569,129 +225598,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [103468] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, - anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(4758), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, - anon_sym_LT, - ACTIONS(5858), 1, - anon_sym_AMP_AMP, - ACTIONS(5860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, - anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_CARET, - ACTIONS(5866), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, - sym__ternary_qmark, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5808), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5810), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5814), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5816), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5868), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5870), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [103572] = 4, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1871), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5941), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5944), 23, + ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -225711,154 +225622,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103622] = 31, - ACTIONS(4031), 1, + [103528] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5633), 1, + ACTIONS(5594), 1, anon_sym_LT, - ACTIONS(5639), 1, + ACTIONS(5600), 1, anon_sym_AMP_AMP, - ACTIONS(5641), 1, + ACTIONS(5602), 1, anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5647), 1, + ACTIONS(5608), 1, anon_sym_AMP, - ACTIONS(5649), 1, + ACTIONS(5610), 1, anon_sym_CARET, - ACTIONS(5651), 1, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5655), 1, + ACTIONS(5616), 1, anon_sym_PERCENT, - ACTIONS(5657), 1, + ACTIONS(5618), 1, anon_sym_STAR_STAR, - ACTIONS(5665), 1, + ACTIONS(5626), 1, anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, + ACTIONS(5628), 1, sym__ternary_qmark, - ACTIONS(5947), 1, - anon_sym_RBRACK, - STATE(1642), 1, + ACTIONS(5951), 1, + anon_sym_COLON, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5635), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5637), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5645), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5653), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5661), 2, + ACTIONS(5622), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 2, + ACTIONS(5624), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, + ACTIONS(5620), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103726] = 15, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(2366), 1, - anon_sym_readonly, - ACTIONS(2370), 1, - anon_sym_override, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, - STATE(2805), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5949), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103798] = 3, + [103632] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3214), 12, + ACTIONS(3218), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, anon_sym_QMARK, - ACTIONS(3212), 27, + ACTIONS(3216), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225886,36 +225740,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_accessor, anon_sym_extends, - [103846] = 7, - ACTIONS(3533), 1, + [103680] = 6, + ACTIONS(4445), 1, anon_sym_EQ, - ACTIONS(4627), 1, - anon_sym_LBRACK, + ACTIONS(4788), 1, + anon_sym_RBRACK, + ACTIONS(4864), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4630), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3499), 10, + ACTIONS(4443), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 22, + anon_sym_GT, + ACTIONS(4447), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -225935,24 +225788,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103902] = 3, + [103734] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3218), 12, + ACTIONS(3214), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_AMP, anon_sym_PIPE, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, anon_sym_QMARK, - ACTIONS(3216), 27, + ACTIONS(3212), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -225980,96 +225833,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_accessor, anon_sym_extends, - [103950] = 31, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4033), 1, + [103782] = 7, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(4637), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4703), 1, - anon_sym_BANG, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(4739), 1, - anon_sym_satisfies, - ACTIONS(5633), 1, - anon_sym_LT, - ACTIONS(5639), 1, - anon_sym_AMP_AMP, - ACTIONS(5641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5643), 1, - anon_sym_GT_GT, - ACTIONS(5647), 1, - anon_sym_AMP, - ACTIONS(5649), 1, - anon_sym_CARET, - ACTIONS(5651), 1, - anon_sym_PIPE, - ACTIONS(5655), 1, - anon_sym_PERCENT, - ACTIONS(5657), 1, - anon_sym_STAR_STAR, - ACTIONS(5665), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5667), 1, - sym__ternary_qmark, - ACTIONS(5951), 1, - anon_sym_RBRACK, - STATE(1642), 1, - sym_type_arguments, - STATE(1656), 1, - sym_arguments, - STATE(4822), 1, - sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5635), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5637), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5645), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5653), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5661), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5663), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5659), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [104054] = 6, - ACTIONS(4085), 1, + ACTIONS(4378), 2, + anon_sym_COMMA, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4529), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4532), 2, + ACTIONS(4640), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3499), 11, + anon_sym_GT, + ACTIONS(3499), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -226077,10 +225859,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3503), 23, + ACTIONS(3503), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -226101,178 +225882,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104108] = 31, - ACTIONS(4031), 1, + [103838] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4760), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5641), 1, anon_sym_AMP_AMP, - ACTIONS(5860), 1, + ACTIONS(5643), 1, anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5645), 1, + anon_sym_GT_GT, + ACTIONS(5649), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5651), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5872), 1, + ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, + anon_sym_STAR_STAR, + ACTIONS(5667), 1, anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, + ACTIONS(5669), 1, sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5953), 1, + anon_sym_RBRACK, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104212] = 31, - ACTIONS(4031), 1, + [103942] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(4772), 1, - anon_sym_BQUOTE, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5635), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5641), 1, anon_sym_AMP_AMP, - ACTIONS(5860), 1, + ACTIONS(5643), 1, anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5645), 1, + anon_sym_GT_GT, + ACTIONS(5649), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5651), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5653), 1, anon_sym_PIPE, - ACTIONS(5872), 1, + ACTIONS(5657), 1, + anon_sym_PERCENT, + ACTIONS(5659), 1, + anon_sym_STAR_STAR, + ACTIONS(5667), 1, anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, + ACTIONS(5669), 1, sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5955), 1, + anon_sym_RBRACK, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5637), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5639), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5647), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5655), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5663), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5665), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5661), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104316] = 4, + [104046] = 6, + ACTIONS(4093), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4545), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5953), 13, + ACTIONS(4529), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4532), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3499), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + ACTIONS(3503), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [104100] = 8, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(5822), 1, + anon_sym_LT, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4700), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5956), 23, + anon_sym_GT, + ACTIONS(4702), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -226293,67 +226126,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104366] = 31, - ACTIONS(4031), 1, + [104158] = 6, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4065), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1986), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3819), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(4033), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1984), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [104212] = 31, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5598), 1, - anon_sym_AMP_AMP, + ACTIONS(5594), 1, + anon_sym_LT, ACTIONS(5600), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5604), 1, anon_sym_GT_GT, - ACTIONS(5606), 1, - anon_sym_AMP, ACTIONS(5608), 1, - anon_sym_CARET, + anon_sym_AMP, ACTIONS(5610), 1, + anon_sym_CARET, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5614), 1, - anon_sym_PERCENT, ACTIONS(5616), 1, - anon_sym_STAR_STAR, + anon_sym_PERCENT, ACTIONS(5618), 1, - anon_sym_LT, + anon_sym_STAR_STAR, ACTIONS(5626), 1, anon_sym_QMARK_QMARK, ACTIONS(5628), 1, sym__ternary_qmark, - ACTIONS(5959), 1, + ACTIONS(5957), 1, anon_sym_COLON, - STATE(1642), 1, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5596), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5604), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5612), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(5622), 2, @@ -226366,74 +226247,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104470] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5963), 1, - anon_sym_readonly, - STATE(2869), 1, - sym_override_modifier, + [104316] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5961), 2, - sym_number, - sym_private_property_identifier, - STATE(3406), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3705), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [104534] = 6, - ACTIONS(4435), 1, - anon_sym_EQ, - ACTIONS(4669), 1, - anon_sym_RBRACK, - ACTIONS(4864), 1, + ACTIONS(4213), 2, anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4433), 13, + anon_sym_extends, + ACTIONS(4127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -226443,11 +226267,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4437), 23, + anon_sym_GT, + ACTIONS(4129), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -226467,32 +226293,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104588] = 8, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, + [104366] = 6, + ACTIONS(4593), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5965), 2, + ACTIONS(4065), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3397), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(1988), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226516,24 +226341,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104645] = 8, - ACTIONS(1635), 1, + [104420] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, + ACTIONS(3731), 1, + anon_sym_override, ACTIONS(4595), 1, anon_sym_LBRACK, + ACTIONS(5961), 1, + anon_sym_readonly, + STATE(2869), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5967), 2, + ACTIONS(5959), 2, sym_number, sym_private_property_identifier, - STATE(3433), 3, + STATE(3403), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -226541,7 +226372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(3705), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226550,14 +226381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -226565,83 +226394,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104702] = 30, - ACTIONS(4031), 1, + [104484] = 31, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4033), 1, + ACTIONS(3969), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4703), 1, + ACTIONS(4710), 1, anon_sym_BANG, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, - ACTIONS(5812), 1, - anon_sym_GT_GT, - ACTIONS(5818), 1, - anon_sym_PERCENT, - ACTIONS(5820), 1, - anon_sym_STAR_STAR, - ACTIONS(5822), 1, + ACTIONS(5594), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5600), 1, anon_sym_AMP_AMP, - ACTIONS(5860), 1, + ACTIONS(5602), 1, anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5604), 1, + anon_sym_GT_GT, + ACTIONS(5608), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5610), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5612), 1, anon_sym_PIPE, - ACTIONS(5872), 1, + ACTIONS(5616), 1, + anon_sym_PERCENT, + ACTIONS(5618), 1, + anon_sym_STAR_STAR, + ACTIONS(5626), 1, anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, + ACTIONS(5628), 1, sym__ternary_qmark, - STATE(1642), 1, + ACTIONS(5963), 1, + anon_sym_COLON, + STATE(1580), 1, sym_type_arguments, STATE(1656), 1, sym_arguments, - STATE(4822), 1, + STATE(4828), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5808), 2, + ACTIONS(5596), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5810), 2, + ACTIONS(5598), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5814), 2, + ACTIONS(5606), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5816), 2, + ACTIONS(5614), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5622), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5624), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5824), 3, + ACTIONS(5620), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104588] = 6, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3696), 1, + anon_sym_in, + ACTIONS(3699), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3503), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [104803] = 11, - ACTIONS(2338), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [104641] = 11, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, @@ -226654,14 +226532,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - ACTIONS(5949), 2, + ACTIONS(5916), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -226688,32 +226566,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104866] = 8, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, + [104704] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(699), 1, + anon_sym_RBRACE, + ACTIONS(4593), 1, + anon_sym_EQ, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5969), 2, - sym_number, - sym_private_property_identifier, - STATE(3435), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3819), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1988), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226737,21 +226616,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104923] = 9, + [104763] = 9, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(5076), 1, + ACTIONS(5074), 1, anon_sym_RBRACE, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -226787,33 +226666,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104982] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + [104822] = 8, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(4595), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5965), 2, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + STATE(3386), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3705), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226837,33 +226715,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105041] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5076), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + [104879] = 8, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(4595), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5967), 2, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + STATE(3353), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3705), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226887,33 +226764,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105100] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4824), 1, - aux_sym_object_repeat1, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, + [104936] = 8, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(4595), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5969), 2, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + STATE(3335), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3705), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -226937,21 +226813,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105159] = 9, + [104993] = 9, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(672), 1, - anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4824), 1, - aux_sym_object_repeat1, - STATE(4835), 1, + ACTIONS(5074), 1, + anon_sym_RBRACE, + STATE(4834), 1, aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -226987,10 +226863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105218] = 8, - ACTIONS(1635), 1, + [105052] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -227000,11 +226876,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5971), 2, sym_number, sym_private_property_identifier, - STATE(3329), 3, + STATE(3361), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -227036,32 +226912,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105275] = 8, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, + [105109] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(5076), 1, + anon_sym_RBRACE, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5973), 2, - sym_number, - sym_private_property_identifier, - STATE(3331), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3819), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(1986), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1984), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227085,81 +226962,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105332] = 6, - ACTIONS(3533), 1, + [105168] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(672), 1, + anon_sym_RBRACE, + ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(3696), 1, - anon_sym_in, - ACTIONS(3699), 1, - anon_sym_of, + STATE(4823), 1, + aux_sym_object_repeat1, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3819), 4, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1986), 6, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [105385] = 10, - ACTIONS(2338), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1984), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [105227] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(672), 1, + anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(4679), 1, - anon_sym_LBRACK, + STATE(4823), 1, + aux_sym_object_repeat1, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(3819), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5726), 2, + ACTIONS(1988), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [105286] = 9, + ACTIONS(239), 1, anon_sym_COMMA, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(5076), 1, anon_sym_RBRACE, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 23, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1988), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227183,32 +227112,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105446] = 8, - ACTIONS(1635), 1, + [105345] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 2, + ACTIONS(2348), 2, sym_number, sym_private_property_identifier, - STATE(3324), 3, + ACTIONS(5727), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(3819), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(3705), 23, + ACTIONS(2362), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227232,44 +227163,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105503] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + [105406] = 12, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2364), 1, + anon_sym_async, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5003), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(2348), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2368), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5916), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3799), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(2362), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -227282,24 +227216,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105562] = 8, - ACTIONS(1635), 1, + [105471] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5977), 2, + ACTIONS(5973), 2, sym_number, sym_private_property_identifier, - STATE(3431), 3, + STATE(3434), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -227331,33 +227265,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105619] = 9, - ACTIONS(239), 1, + [105528] = 11, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5005), 1, + ACTIONS(5714), 1, anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4943), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(2348), 2, + sym_number, + sym_private_property_identifier, + STATE(3799), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(2362), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227381,7 +227317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105678] = 4, + [105591] = 4, ACTIONS(4921), 1, sym_regex_flags, ACTIONS(5), 2, @@ -227393,7 +227329,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_in, anon_sym_of, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -227403,6 +227338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, anon_sym_instanceof, anon_sym_satisfies, ACTIONS(4919), 20, @@ -227426,73 +227362,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [105727] = 8, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5979), 2, - sym_number, - sym_private_property_identifier, - STATE(3370), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3705), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [105784] = 8, - ACTIONS(1635), 1, + [105640] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5981), 2, + ACTIONS(5975), 2, sym_number, sym_private_property_identifier, - STATE(3413), 3, + STATE(3451), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -227524,21 +227411,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105841] = 9, + [105697] = 9, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4835), 1, + ACTIONS(5005), 1, + anon_sym_RBRACE, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -227574,21 +227461,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105900] = 9, + [105756] = 9, ACTIONS(239), 1, anon_sym_COMMA, - ACTIONS(697), 1, - anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4835), 1, + ACTIONS(5005), 1, + anon_sym_RBRACE, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -227624,24 +227511,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105959] = 8, - ACTIONS(1635), 1, + [105815] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5983), 2, + ACTIONS(5977), 2, sym_number, sym_private_property_identifier, - STATE(3444), 3, + STATE(3439), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -227673,24 +227560,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106016] = 8, - ACTIONS(1635), 1, + [105872] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5985), 2, + ACTIONS(5979), 2, sym_number, sym_private_property_identifier, - STATE(3339), 3, + STATE(3388), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -227722,18 +227609,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106073] = 30, - ACTIONS(4633), 1, + [105929] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(4593), 1, + anon_sym_EQ, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3819), 4, anon_sym_LPAREN, - ACTIONS(4635), 1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1986), 6, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(4637), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1984), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [105988] = 9, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + ACTIONS(4593), 1, + anon_sym_EQ, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3819), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1988), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [106047] = 30, + ACTIONS(4627), 1, + anon_sym_LPAREN, + ACTIONS(4629), 1, + anon_sym_LBRACK, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4701), 1, + ACTIONS(4708), 1, anon_sym_as, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(4739), 1, + ACTIONS(4746), 1, anon_sym_satisfies, ACTIONS(4811), 1, anon_sym_BANG, @@ -227745,30 +227732,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5822), 1, anon_sym_LT, - ACTIONS(5858), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5860), 1, + ACTIONS(5834), 1, anon_sym_PIPE_PIPE, - ACTIONS(5862), 1, + ACTIONS(5836), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5838), 1, anon_sym_CARET, - ACTIONS(5866), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5872), 1, + ACTIONS(5846), 1, anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, + ACTIONS(5848), 1, sym__ternary_qmark, - STATE(2188), 1, + STATE(2189), 1, sym_arguments, STATE(2720), 1, sym_type_arguments, - STATE(4605), 1, + STATE(4602), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4737), 2, + ACTIONS(4744), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(5808), 2, @@ -227783,34 +227770,34 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5816), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5868), 2, + ACTIONS(5842), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 2, + ACTIONS(5844), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, ACTIONS(5824), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [106174] = 8, - ACTIONS(1635), 1, + [106148] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5987), 2, + ACTIONS(5981), 2, sym_number, sym_private_property_identifier, - STATE(3405), 3, + STATE(3325), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -227842,86 +227829,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106231] = 12, - ACTIONS(2338), 1, + [106205] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(4679), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5983), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5949), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3797), 3, + STATE(3416), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106296] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, + ACTIONS(3819), 7, + sym__automatic_semicolon, anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1984), 23, + ACTIONS(3705), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227945,35 +227878,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106355] = 11, - ACTIONS(2338), 1, + [106262] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(5708), 1, - anon_sym_RBRACE, - STATE(4940), 1, - aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(5985), 2, sym_number, sym_private_property_identifier, - STATE(3797), 3, + STATE(3372), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, + ACTIONS(3819), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2362), 23, + ACTIONS(3705), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -227997,24 +227927,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106418] = 8, - ACTIONS(1635), 1, + [106319] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5989), 2, + ACTIONS(5987), 2, sym_number, sym_private_property_identifier, - STATE(3349), 3, + STATE(3373), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -228046,24 +227976,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106475] = 8, - ACTIONS(1635), 1, + [106376] = 30, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3969), 1, + anon_sym_LBRACK, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4708), 1, + anon_sym_as, + ACTIONS(4710), 1, + anon_sym_BANG, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(4746), 1, + anon_sym_satisfies, + ACTIONS(5812), 1, + anon_sym_GT_GT, + ACTIONS(5818), 1, + anon_sym_PERCENT, + ACTIONS(5820), 1, + anon_sym_STAR_STAR, + ACTIONS(5822), 1, + anon_sym_LT, + ACTIONS(5832), 1, + anon_sym_AMP_AMP, + ACTIONS(5834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5836), 1, + anon_sym_AMP, + ACTIONS(5838), 1, + anon_sym_CARET, + ACTIONS(5840), 1, + anon_sym_PIPE, + ACTIONS(5846), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5848), 1, + sym__ternary_qmark, + STATE(1580), 1, + sym_type_arguments, + STATE(1656), 1, + sym_arguments, + STATE(4828), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4744), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5808), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5810), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5816), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5842), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5844), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5824), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [106477] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5991), 2, + ACTIONS(5989), 2, sym_number, sym_private_property_identifier, - STATE(3357), 3, + STATE(3460), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -228095,24 +228096,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106532] = 8, - ACTIONS(1635), 1, + [106534] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5993), 2, + ACTIONS(5991), 2, sym_number, sym_private_property_identifier, - STATE(3368), 3, + STATE(3324), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -228144,8 +228145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106589] = 4, - ACTIONS(3658), 1, + [106591] = 4, + ACTIONS(3666), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -228154,7 +228155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -228164,6 +228164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 24, sym__ternary_qmark, anon_sym_as, @@ -228189,24 +228190,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106638] = 8, - ACTIONS(1635), 1, + [106640] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5995), 2, + ACTIONS(5993), 2, sym_number, sym_private_property_identifier, - STATE(3470), 3, + STATE(3401), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -228238,7 +228239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106695] = 4, + [106697] = 4, ACTIONS(3674), 1, anon_sym_EQ, ACTIONS(5), 2, @@ -228248,7 +228249,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -228258,6 +228258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 24, sym__ternary_qmark, anon_sym_as, @@ -228283,7 +228284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106744] = 4, + [106746] = 4, ACTIONS(3650), 1, anon_sym_EQ, ACTIONS(5), 2, @@ -228293,7 +228294,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -228303,6 +228303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 24, sym__ternary_qmark, anon_sym_as, @@ -228328,33 +228329,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106793] = 9, + [106795] = 9, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(699), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(1986), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(1984), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228378,33 +228379,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106852] = 9, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5005), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + [106854] = 8, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(4595), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5995), 2, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + STATE(3358), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(3705), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228438,57 +228438,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5997), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [106957] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6003), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(5997), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228514,8 +228471,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107003] = 4, - ACTIONS(3785), 1, + [106957] = 4, + ACTIONS(3781), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -228524,7 +228481,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -228534,6 +228490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -228558,25 +228515,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107051] = 4, - ACTIONS(6005), 1, + [107005] = 4, + ACTIONS(6001), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1801), 11, + ACTIONS(1789), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1803), 25, + ACTIONS(1791), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228602,68 +228559,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107099] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6009), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, + [107053] = 5, + ACTIONS(6007), 1, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6007), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107145] = 4, - ACTIONS(6011), 1, + ACTIONS(6010), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1801), 11, + ACTIONS(6005), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1803), 25, + ACTIONS(6003), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228689,69 +228604,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107193] = 3, + [107103] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6015), 12, + ACTIONS(6014), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6013), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107239] = 5, - ACTIONS(6021), 1, - anon_sym_SEMI, - ACTIONS(6024), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6019), 10, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6017), 25, + ACTIONS(6012), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228777,68 +228647,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107289] = 4, - ACTIONS(3763), 1, - anon_sym_EQ, + [107149] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [107337] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6028), 12, + ACTIONS(6018), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6026), 25, + ACTIONS(6016), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228864,72 +228690,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107383] = 4, - ACTIONS(6030), 1, - sym__automatic_semicolon, + [107195] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1703), 11, + ACTIONS(6022), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1705), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107431] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3672), 10, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LT, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3670), 27, + ACTIONS(6020), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_DOT, - anon_sym_class, anon_sym_async, anon_sym_new, sym_identifier, @@ -228951,24 +228733,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107477] = 3, + [107241] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + ACTIONS(6026), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(6024), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -228994,8 +228776,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107523] = 4, - ACTIONS(3771), 1, + [107287] = 4, + ACTIONS(3755), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -229004,7 +228786,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -229014,6 +228795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -229038,8 +228820,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107571] = 4, - ACTIONS(3789), 1, + [107335] = 4, + ACTIONS(3749), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -229048,7 +228830,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -229058,6 +228839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -229082,8 +228864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107619] = 4, - ACTIONS(3761), 1, + [107383] = 4, + ACTIONS(3769), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -229092,7 +228874,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -229102,6 +228883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -229126,24 +228908,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107667] = 3, + [107431] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 12, + ACTIONS(6018), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6026), 25, + ACTIONS(6016), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229169,24 +228951,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107713] = 3, + [107477] = 4, + ACTIONS(3757), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6015), 12, + ACTIONS(3499), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3503), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [107525] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6018), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6013), 25, + ACTIONS(6016), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229212,24 +229038,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107759] = 3, + [107571] = 4, + ACTIONS(3789), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6034), 12, + ACTIONS(3499), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(3503), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [107619] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6030), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6032), 25, + ACTIONS(6028), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229255,24 +229125,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107805] = 3, + [107665] = 9, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2348), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6036), 25, + ACTIONS(5916), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3799), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3819), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2362), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229296,26 +229174,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [107851] = 3, + [107723] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + ACTIONS(6022), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(6020), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229341,24 +229217,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107897] = 3, + [107769] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 12, + ACTIONS(6022), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6036), 25, + ACTIONS(6020), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229384,24 +229260,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107943] = 3, + [107815] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 12, + ACTIONS(6026), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6026), 25, + ACTIONS(6024), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229427,24 +229303,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [107989] = 3, + [107861] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + ACTIONS(6018), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(6016), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229470,24 +229346,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108035] = 3, + [107907] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + ACTIONS(6026), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(6024), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229513,24 +229389,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108081] = 3, + [107953] = 5, + ACTIONS(6036), 1, + anon_sym_SEMI, + ACTIONS(6039), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5999), 12, - sym__automatic_semicolon, + ACTIONS(6034), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5997), 25, + ACTIONS(6032), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229556,24 +229434,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108127] = 3, + [108003] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 12, + ACTIONS(6014), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6007), 25, + ACTIONS(6012), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229599,68 +229477,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108173] = 4, - ACTIONS(3787), 1, - anon_sym_EQ, + [108049] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [108221] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6042), 12, + ACTIONS(6018), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6040), 25, + ACTIONS(6016), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229686,24 +229520,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108267] = 3, + [108095] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6046), 12, + ACTIONS(6026), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6044), 25, + ACTIONS(6024), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229729,24 +229563,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108313] = 3, + [108141] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 12, + ACTIONS(6026), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6036), 25, + ACTIONS(6024), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229772,24 +229606,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108359] = 3, + [108187] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 12, + ACTIONS(5999), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6007), 25, + ACTIONS(5997), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229815,24 +229649,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108405] = 3, + [108233] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6050), 12, + ACTIONS(6043), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6048), 25, + ACTIONS(6041), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229858,24 +229692,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108451] = 3, + [108279] = 4, + ACTIONS(6045), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6046), 12, - sym__automatic_semicolon, + ACTIONS(1703), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6044), 25, + ACTIONS(1705), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229901,69 +229736,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108497] = 5, - ACTIONS(89), 1, - anon_sym_BQUOTE, - STATE(2254), 1, - sym_template_string, + [108327] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1889), 13, + ACTIONS(6026), 12, + sym__automatic_semicolon, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1891), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [108547] = 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6024), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [108373] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 12, + ACTIONS(6049), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6036), 25, + ACTIONS(6047), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -229989,24 +229822,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108593] = 3, + [108419] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6046), 12, + ACTIONS(6053), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6044), 25, + ACTIONS(6051), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230032,24 +229865,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108639] = 3, + [108465] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + ACTIONS(6057), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(6055), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230075,32 +229908,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108685] = 9, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, + [108511] = 8, + ACTIONS(6059), 1, + anon_sym_LPAREN, + ACTIONS(6061), 1, + anon_sym_DOT, + ACTIONS(6063), 1, + anon_sym_LT, + STATE(2804), 1, + sym_arguments, + STATE(5181), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(3577), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5949), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2362), 23, + anon_sym_AT, + ACTIONS(3575), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230124,24 +229954,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108743] = 3, + anon_sym_abstract, + anon_sym_accessor, + [108567] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6015), 12, + ACTIONS(6057), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6013), 25, + ACTIONS(6055), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230167,28 +229999,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108789] = 3, + [108613] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 12, + ACTIONS(6067), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6065), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [108659] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3656), 10, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6036), 25, + ACTIONS(3654), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_DOT, + anon_sym_class, anon_sym_async, anon_sym_new, sym_identifier, @@ -230210,24 +230085,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108835] = 3, + [108705] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6054), 12, + ACTIONS(6071), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6052), 25, + ACTIONS(6069), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230253,68 +230128,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108881] = 3, + [108751] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1801), 12, + ACTIONS(1789), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1803), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [108927] = 4, - ACTIONS(6056), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1703), 11, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1705), 25, + ACTIONS(1791), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230340,67 +230171,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [108975] = 3, + [108797] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 12, + ACTIONS(6075), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6036), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [109021] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6060), 12, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6058), 25, + ACTIONS(6073), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230426,24 +230214,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109067] = 3, + [108843] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 12, + ACTIONS(6022), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6007), 25, + ACTIONS(6020), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230469,24 +230257,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109113] = 3, + [108889] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 12, + ACTIONS(6079), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6007), 25, + ACTIONS(6077), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230512,68 +230300,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109159] = 4, - ACTIONS(3751), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [109207] = 3, + [108935] = 4, + ACTIONS(6081), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1843), 12, - sym__automatic_semicolon, + ACTIONS(1703), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1845), 25, + ACTIONS(1705), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230599,24 +230344,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109253] = 3, + [108983] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6046), 12, + ACTIONS(6022), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6044), 25, + ACTIONS(6020), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230642,24 +230387,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109299] = 3, + [109029] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6015), 12, + ACTIONS(6014), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6013), 25, + ACTIONS(6012), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230685,24 +230430,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109345] = 3, + [109075] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 12, + ACTIONS(1831), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6026), 25, + ACTIONS(1833), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230728,24 +230473,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109391] = 3, + [109121] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 12, + ACTIONS(6022), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6001), 25, + ACTIONS(6020), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230771,116 +230516,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109437] = 4, - ACTIONS(3791), 1, - anon_sym_EQ, + [109167] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3503), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [109485] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6015), 12, + ACTIONS(6043), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6013), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [109531] = 8, - ACTIONS(6062), 1, - anon_sym_LPAREN, - ACTIONS(6064), 1, - anon_sym_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(2802), 1, - sym_arguments, - STATE(5459), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3583), 7, - anon_sym_STAR, - anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3581), 25, + ACTIONS(6041), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230906,26 +230559,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109587] = 5, - ACTIONS(6072), 1, - anon_sym_SEMI, - ACTIONS(6075), 1, - sym__automatic_semicolon, + [109213] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6070), 10, + ACTIONS(6043), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6068), 25, + ACTIONS(6041), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230951,24 +230602,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109637] = 3, + [109259] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6046), 12, + ACTIONS(6057), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6044), 25, + ACTIONS(6055), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230994,24 +230645,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109683] = 3, + [109305] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6079), 12, + ACTIONS(6014), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6077), 25, + ACTIONS(6012), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231037,24 +230688,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109729] = 3, + [109351] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 12, + ACTIONS(6067), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6036), 25, + ACTIONS(6065), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231080,8 +230731,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109775] = 4, - ACTIONS(3773), 1, + [109397] = 4, + ACTIONS(3785), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -231090,7 +230741,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -231100,6 +230750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -231124,8 +230775,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109823] = 4, - ACTIONS(3779), 1, + [109445] = 4, + ACTIONS(3791), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -231134,7 +230785,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, + ACTIONS(3503), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [109493] = 4, + ACTIONS(3751), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3499), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -231144,6 +230838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT, ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, @@ -231168,24 +230863,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109871] = 3, + [109541] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6079), 12, + ACTIONS(6022), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6020), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [109587] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6043), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6077), 25, + ACTIONS(6041), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231211,24 +230949,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109917] = 3, + [109633] = 5, + ACTIONS(89), 1, + anon_sym_BQUOTE, + STATE(2255), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 12, + ACTIONS(1883), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(1885), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [109683] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6057), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6055), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [109729] = 4, + ACTIONS(6083), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1789), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6026), 25, + ACTIONS(1791), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231254,24 +231081,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [109963] = 3, + [109777] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6083), 12, + ACTIONS(6014), 12, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6081), 25, + ACTIONS(6012), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231297,23 +231124,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110009] = 3, + [109823] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6087), 11, + ACTIONS(6057), 12, + sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6055), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [109869] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6043), 12, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6085), 25, + ACTIONS(6041), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231339,28 +231210,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110054] = 6, - ACTIONS(4593), 1, - anon_sym_EQ, + [109915] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5726), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, + ACTIONS(6026), 12, + sym__automatic_semicolon, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + anon_sym_AT, + ACTIONS(6024), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231384,19 +231251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110105] = 5, - ACTIONS(4633), 1, - anon_sym_LPAREN, - STATE(2350), 1, - sym_arguments, + anon_sym_abstract, + anon_sym_accessor, + [109961] = 4, + ACTIONS(3777), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4429), 13, + ACTIONS(3499), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -231406,9 +231272,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4431), 21, + anon_sym_GT, + ACTIONS(3503), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -231427,70 +231295,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [110154] = 7, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(5708), 1, - anon_sym_RBRACE, - STATE(4940), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1988), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [110207] = 3, + [110009] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6091), 11, + ACTIONS(6087), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6089), 25, + ACTIONS(6085), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231516,37 +231339,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110252] = 14, - ACTIONS(2338), 1, + [110054] = 14, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2370), 1, anon_sym_override, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6089), 1, anon_sym_STAR, - ACTIONS(6095), 1, + ACTIONS(6091), 1, anon_sym_async, - ACTIONS(6099), 1, + ACTIONS(6095), 1, anon_sym_readonly, - STATE(2804), 1, + STATE(2802), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6097), 2, + ACTIONS(6093), 2, sym_number, sym_private_property_identifier, - ACTIONS(6101), 2, + ACTIONS(6097), 2, anon_sym_get, anon_sym_set, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3798), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231569,16 +231392,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110319] = 6, - ACTIONS(4593), 1, - anon_sym_EQ, + [110121] = 5, + ACTIONS(4627), 1, + anon_sym_LPAREN, + STATE(2351), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4281), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + ACTIONS(4283), 21, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [110170] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5726), 2, + ACTIONS(6101), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6099), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [110215] = 7, + ACTIONS(5276), 1, anon_sym_COMMA, + ACTIONS(5714), 1, anon_sym_RBRACE, - ACTIONS(3843), 4, + STATE(4943), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -231614,7 +231524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110370] = 3, + [110268] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -231623,10 +231533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, @@ -231656,23 +231566,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110415] = 3, + [110313] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1843), 11, + ACTIONS(6087), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1845), 25, + ACTIONS(6085), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231698,23 +231608,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110460] = 3, + [110358] = 6, + ACTIONS(4593), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1801), 11, + ACTIONS(5727), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3819), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1990), 6, anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1988), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110409] = 6, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5727), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(3819), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1986), 6, + anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1803), 25, + ACTIONS(1984), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231738,9 +231698,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [110505] = 3, + [110460] = 7, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(5714), 1, + anon_sym_RBRACE, + STATE(4943), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3819), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1988), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110513] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -231749,10 +231753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, @@ -231782,23 +231786,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110550] = 3, + [110558] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6087), 11, + ACTIONS(1789), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6085), 25, + ACTIONS(1791), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231824,29 +231828,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [110595] = 7, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(5708), 1, - anon_sym_RBRACE, - STATE(4940), 1, - aux_sym_object_repeat1, + [110603] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1986), 6, + ACTIONS(1831), 11, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(1984), 23, + anon_sym_AT, + ACTIONS(1833), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231870,38 +231868,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110648] = 10, - ACTIONS(2338), 1, + anon_sym_abstract, + anon_sym_accessor, + [110648] = 11, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6111), 1, anon_sym_STAR, + ACTIONS(6113), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6097), 2, + ACTIONS(6115), 2, sym_number, sym_private_property_identifier, - ACTIONS(6101), 2, + ACTIONS(6117), 2, anon_sym_get, anon_sym_set, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3798), 3, + STATE(3770), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 21, + ACTIONS(2362), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -231918,41 +231919,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110706] = 17, - ACTIONS(1635), 1, + [110708] = 17, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4649), 1, + ACTIONS(5096), 1, anon_sym_STAR, - ACTIONS(4653), 1, + ACTIONS(5098), 1, anon_sym_async, - ACTIONS(4789), 1, - anon_sym_accessor, - ACTIONS(6111), 1, + ACTIONS(6121), 1, anon_sym_static, - ACTIONS(6113), 1, + ACTIONS(6123), 1, anon_sym_readonly, - ACTIONS(6115), 1, + ACTIONS(6125), 1, anon_sym_declare, - ACTIONS(6117), 1, + ACTIONS(6127), 1, anon_sym_abstract, - STATE(2813), 1, + ACTIONS(6129), 1, + anon_sym_accessor, + STATE(2810), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4655), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4659), 2, + ACTIONS(5104), 2, anon_sym_get, anon_sym_set, - STATE(3050), 3, + ACTIONS(6119), 2, + sym_number, + sym_private_property_identifier, + STATE(3058), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -231973,48 +231974,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110778] = 11, - ACTIONS(2338), 1, + [110780] = 17, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(3731), 1, + anon_sym_override, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(6119), 1, + ACTIONS(4649), 1, anon_sym_STAR, - ACTIONS(6121), 1, + ACTIONS(4653), 1, anon_sym_async, + ACTIONS(4677), 1, + anon_sym_accessor, + ACTIONS(6131), 1, + anon_sym_static, + ACTIONS(6133), 1, + anon_sym_readonly, + ACTIONS(6135), 1, + anon_sym_declare, + ACTIONS(6137), 1, + anon_sym_abstract, + STATE(2803), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6123), 2, + ACTIONS(4655), 2, sym_number, sym_private_property_identifier, - ACTIONS(6125), 2, + ACTIONS(4659), 2, anon_sym_get, anon_sym_set, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3768), 3, + STATE(3071), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 20, + ACTIONS(3705), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -232022,30 +232029,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110838] = 9, - ACTIONS(2338), 1, + [110852] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(6127), 1, - anon_sym_EQ_GT, + ACTIONS(6089), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6097), 2, + ACTIONS(6093), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(6097), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3798), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(2362), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232055,8 +232065,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232069,38 +232077,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110894] = 10, - ACTIONS(2338), 1, + [110910] = 11, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(6129), 1, + ACTIONS(6139), 1, anon_sym_STAR, + ACTIONS(6141), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6131), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - ACTIONS(6133), 2, + ACTIONS(6145), 2, anon_sym_get, anon_sym_set, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3835), 3, + STATE(3851), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 21, + ACTIONS(2362), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -232117,31 +232126,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110952] = 11, - ACTIONS(2338), 1, + [110970] = 11, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(6089), 1, anon_sym_STAR, - ACTIONS(6095), 1, + ACTIONS(6091), 1, anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6097), 2, + ACTIONS(6093), 2, sym_number, sym_private_property_identifier, - ACTIONS(6101), 2, + ACTIONS(6097), 2, anon_sym_get, anon_sym_set, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3798), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232166,33 +232175,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111012] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(6119), 1, - anon_sym_STAR, + [111030] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6123), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6125), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3843), 3, + ACTIONS(5916), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3819), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - STATE(3768), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 21, + ACTIONS(1986), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(1984), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232202,6 +232204,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232214,26 +232218,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111070] = 5, + [111078] = 10, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(6139), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5949), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3843), 4, + ACTIONS(6143), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6145), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3819), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1986), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1984), 23, + STATE(3851), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2362), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232243,8 +232254,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -232257,29 +232266,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111118] = 10, - ACTIONS(2338), 1, + [111136] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(6135), 1, + ACTIONS(6147), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6137), 2, + ACTIONS(6149), 2, sym_number, sym_private_property_identifier, - ACTIONS(6139), 2, + ACTIONS(6151), 2, anon_sym_get, anon_sym_set, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3851), 3, + STATE(3756), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232305,26 +232314,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111176] = 5, + [111194] = 9, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(6153), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5949), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3843), 4, + ACTIONS(6093), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3819), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1988), 23, + STATE(3888), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2362), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232348,39 +232361,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111224] = 11, - ACTIONS(2338), 1, + [111250] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(6135), 1, + ACTIONS(6111), 1, anon_sym_STAR, - ACTIONS(6141), 1, - anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6137), 2, + ACTIONS(6115), 2, sym_number, sym_private_property_identifier, - ACTIONS(6139), 2, + ACTIONS(6117), 2, anon_sym_get, anon_sym_set, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3851), 3, + STATE(3770), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 20, + ACTIONS(2362), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -232397,54 +232409,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111284] = 17, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5096), 1, - anon_sym_STAR, - ACTIONS(5098), 1, - anon_sym_async, - ACTIONS(6145), 1, - anon_sym_static, - ACTIONS(6147), 1, - anon_sym_readonly, - ACTIONS(6149), 1, - anon_sym_declare, - ACTIONS(6151), 1, - anon_sym_abstract, - ACTIONS(6153), 1, - anon_sym_accessor, - STATE(2797), 1, - sym_override_modifier, + [111308] = 5, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5104), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6143), 2, + ACTIONS(5916), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3819), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1990), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(3058), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 16, + ACTIONS(1988), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -232453,23 +232453,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [111356] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5580), 2, + ACTIONS(5578), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3771), 3, + STATE(3773), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232498,11 +232498,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [111409] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -232510,11 +232510,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6155), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3873), 3, + STATE(3875), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232543,11 +232543,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [111462] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -232555,11 +232555,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5363), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3792), 3, + STATE(3794), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232588,9 +232588,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [111515] = 13, - ACTIONS(1635), 1, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, @@ -232612,7 +232612,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4854), 2, sym_number, sym_private_property_identifier, - STATE(3460), 3, + STATE(3360), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232638,11 +232638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [111578] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -232650,11 +232650,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5423), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3821), 3, + STATE(3823), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232687,19 +232687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, STATE(2748), 1, aux_sym_export_statement_repeat1, - STATE(2808), 1, + STATE(2815), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 6, + ACTIONS(3622), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3600), 25, + ACTIONS(3620), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -232726,11 +232726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_accessor, [111680] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -232738,7 +232738,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5395), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -232771,11 +232771,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [111733] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -232783,11 +232783,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6160), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3879), 3, + STATE(3878), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232816,11 +232816,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [111786] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -232828,11 +232828,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6162), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3800), 3, + STATE(3803), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232861,23 +232861,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [111839] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6123), 2, + ACTIONS(6115), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3768), 3, + STATE(3770), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232906,23 +232906,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [111892] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6164), 2, + ACTIONS(5448), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3866), 3, + STATE(3802), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232951,23 +232951,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [111945] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5450), 2, + ACTIONS(5454), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3805), 3, + STATE(3818), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -232996,23 +232996,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [111998] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5466), 2, + ACTIONS(5464), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3755), 3, + STATE(3833), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233041,23 +233041,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [112051] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5474), 2, + ACTIONS(5472), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3839), 3, + STATE(3755), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233086,23 +233086,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [112104] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6166), 2, + ACTIONS(6164), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3844), 3, + STATE(3841), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233131,19 +233131,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [112157] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6137), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -233176,19 +233176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [112210] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5502), 2, + ACTIONS(5500), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -233221,23 +233221,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, [112263] = 8, - ACTIONS(2338), 1, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5700), 2, + ACTIONS(5730), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3885), 3, + STATE(3884), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233265,32 +233265,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112316] = 13, - ACTIONS(1635), 1, + [112316] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5304), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3819), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3821), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2362), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112369] = 13, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(6170), 1, + ACTIONS(6168), 1, anon_sym_static, - ACTIONS(6172), 1, + ACTIONS(6170), 1, anon_sym_readonly, - ACTIONS(6174), 1, + ACTIONS(6172), 1, anon_sym_abstract, - ACTIONS(6176), 1, + ACTIONS(6174), 1, anon_sym_accessor, - STATE(2877), 1, + STATE(2851), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6168), 2, + ACTIONS(6166), 2, sym_number, sym_private_property_identifier, - STATE(3465), 3, + STATE(3468), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233315,24 +233360,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112379] = 8, - ACTIONS(2338), 1, + [112432] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5520), 2, + ACTIONS(5518), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3777), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233360,24 +233405,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112432] = 8, - ACTIONS(2338), 1, + [112485] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5298), 2, + ACTIONS(6093), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3817), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233405,24 +233450,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112485] = 8, - ACTIONS(2338), 1, + [112538] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6097), 2, + ACTIONS(6149), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3798), 3, + STATE(3756), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233450,24 +233495,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112538] = 8, - ACTIONS(2338), 1, + [112591] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6131), 2, + ACTIONS(5556), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3835), 3, + STATE(3771), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233495,20 +233540,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112591] = 8, - ACTIONS(2338), 1, + [112644] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5556), 2, + ACTIONS(5444), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3819), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3900), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2362), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112697] = 8, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5415), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3819), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3838), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2362), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112750] = 8, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5240), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3819), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3760), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2362), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112803] = 8, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5375), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -233540,24 +233720,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112644] = 8, - ACTIONS(2338), 1, + [112856] = 8, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5444), 2, + ACTIONS(6176), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(3898), 3, + STATE(3763), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2362), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112909] = 8, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6178), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3819), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(3876), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233585,24 +233810,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112697] = 8, - ACTIONS(2338), 1, + [112962] = 9, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, + ACTIONS(6180), 1, + anon_sym_RBRACE, + STATE(4668), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5415), 2, + ACTIONS(6182), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3904), 3, + STATE(3957), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233630,24 +233855,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112750] = 8, - ACTIONS(2338), 1, + [113016] = 9, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, + ACTIONS(6184), 1, + anon_sym_RBRACE, + STATE(4697), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5240), 2, + ACTIONS(6186), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3758), 3, + STATE(4141), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233675,44 +233900,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112803] = 8, - ACTIONS(2338), 1, + [113070] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2290), 1, + anon_sym_namespace, + ACTIONS(2294), 1, + anon_sym_import, + ACTIONS(2296), 1, + anon_sym_var, + ACTIONS(2298), 1, + anon_sym_let, + ACTIONS(2300), 1, + anon_sym_const, + ACTIONS(2305), 1, + anon_sym_class, + ACTIONS(2307), 1, + anon_sym_async, + ACTIONS(2309), 1, + anon_sym_function, + ACTIONS(2314), 1, + anon_sym_declare, + ACTIONS(2318), 1, + anon_sym_abstract, + ACTIONS(2320), 1, + anon_sym_interface, + ACTIONS(2322), 1, + anon_sym_enum, + ACTIONS(2352), 1, + anon_sym_type, + ACTIONS(2354), 1, + anon_sym_module, + ACTIONS(2356), 1, + anon_sym_global, + STATE(825), 1, + sym_internal_module, + STATE(869), 1, + sym_declaration, + STATE(1285), 1, + sym_decorator, + STATE(4085), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(837), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [113150] = 14, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(3731), 1, + anon_sym_override, + ACTIONS(4591), 1, + anon_sym_STAR, + ACTIONS(4595), 1, anon_sym_LBRACK, + ACTIONS(4597), 1, + anon_sym_async, + ACTIONS(4601), 1, + anon_sym_readonly, + ACTIONS(6188), 1, + anon_sym_static, + STATE(2812), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5381), 2, + ACTIONS(4599), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3760), 3, + ACTIONS(4603), 2, + anon_sym_get, + anon_sym_set, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3705), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -233720,24 +234008,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112856] = 8, - ACTIONS(2338), 1, + [113214] = 9, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, + ACTIONS(6190), 1, + anon_sym_RBRACE, + STATE(5188), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6178), 2, + ACTIONS(6192), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3762), 3, + STATE(4463), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233765,24 +234053,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112909] = 8, - ACTIONS(2338), 1, + [113268] = 9, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, + ACTIONS(6194), 1, + anon_sym_RBRACE, + STATE(5188), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5458), 2, + ACTIONS(6192), 2, sym_number, sym_private_property_identifier, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3824), 3, + STATE(4463), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233810,74 +234098,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112962] = 14, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4591), 1, - anon_sym_STAR, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(4597), 1, - anon_sym_async, - ACTIONS(4601), 1, - anon_sym_readonly, - ACTIONS(6180), 1, - anon_sym_static, - STATE(2801), 1, - sym_override_modifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4599), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4603), 2, - anon_sym_get, - anon_sym_set, - STATE(3117), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113026] = 9, - ACTIONS(1551), 1, + [113322] = 9, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(6182), 1, + ACTIONS(6196), 1, anon_sym_RBRACE, - STATE(5183), 1, + STATE(5188), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(6192), 2, sym_number, sym_private_property_identifier, - STATE(4522), 3, + STATE(4463), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233905,28 +234143,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113080] = 9, - ACTIONS(1551), 1, + [113376] = 12, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(3731), 1, + anon_sym_override, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(6186), 1, - anon_sym_RBRACE, - STATE(5183), 1, - sym_enum_assignment, + ACTIONS(5830), 1, + anon_sym_readonly, + ACTIONS(6198), 1, + anon_sym_STAR, + STATE(2808), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(6200), 2, sym_number, sym_private_property_identifier, - STATE(4522), 3, + ACTIONS(6202), 2, + anon_sym_get, + anon_sym_set, + STATE(3052), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3705), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233935,14 +234180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -233950,24 +234191,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113134] = 9, - ACTIONS(1551), 1, + [113436] = 9, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(6188), 1, + ACTIONS(6204), 1, anon_sym_RBRACE, - STATE(5183), 1, + STATE(5188), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(6192), 2, sym_number, sym_private_property_identifier, - STATE(4522), 3, + STATE(4463), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -233995,24 +234236,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113188] = 9, - ACTIONS(1551), 1, + [113490] = 9, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(6190), 1, + ACTIONS(6206), 1, anon_sym_RBRACE, - STATE(5183), 1, + STATE(5188), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(6192), 2, sym_number, sym_private_property_identifier, - STATE(4522), 3, + STATE(4463), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234040,7 +234281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113242] = 22, + [113544] = 22, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2290), 1, @@ -234071,20 +234312,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(2352), 1, anon_sym_type, - ACTIONS(6192), 1, + ACTIONS(6208), 1, anon_sym_default, - STATE(824), 1, + STATE(825), 1, sym_internal_module, STATE(926), 1, sym_declaration, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(4084), 1, + STATE(4085), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(836), 13, + STATE(837), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -234098,73 +234339,35 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [113322] = 9, - ACTIONS(1551), 1, + [113624] = 12, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(3731), 1, + anon_sym_override, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(6194), 1, - anon_sym_RBRACE, - STATE(5183), 1, - sym_enum_assignment, + ACTIONS(6210), 1, + anon_sym_STAR, + ACTIONS(6214), 1, + anon_sym_readonly, + STATE(2800), 1, + sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(6212), 2, sym_number, sym_private_property_identifier, - STATE(4522), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(6216), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113376] = 9, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(6196), 1, - anon_sym_RBRACE, - STATE(5183), 1, - sym_enum_assignment, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6184), 2, - sym_number, - sym_private_property_identifier, - STATE(4522), 3, + STATE(3079), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3705), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234173,14 +234376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -234188,10 +234387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113430] = 14, - ACTIONS(2338), 1, + [113684] = 14, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, ACTIONS(2364), 1, anon_sym_async, @@ -234199,13 +234398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2370), 1, anon_sym_override, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5003), 1, anon_sym_STAR, - ACTIONS(6198), 1, + ACTIONS(6218), 1, anon_sym_static, - STATE(2805), 1, + STATE(2814), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, @@ -234216,7 +234415,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2368), 2, anon_sym_get, anon_sym_set, - STATE(3797), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234238,43 +234437,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113494] = 12, - ACTIONS(1635), 1, + [113748] = 14, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(3731), 1, anon_sym_override, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5826), 1, - anon_sym_readonly, - ACTIONS(6200), 1, + ACTIONS(5033), 1, anon_sym_STAR, - STATE(2817), 1, + ACTIONS(5035), 1, + anon_sym_async, + ACTIONS(5039), 1, + anon_sym_readonly, + ACTIONS(6220), 1, + anon_sym_static, + STATE(2794), 1, sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6202), 2, + ACTIONS(5037), 2, sym_number, sym_private_property_identifier, - ACTIONS(6204), 2, + ACTIONS(5041), 2, anon_sym_get, anon_sym_set, - STATE(3072), 3, + STATE(3145), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3705), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -234286,35 +234487,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113554] = 12, - ACTIONS(1635), 1, + [113812] = 22, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(2392), 1, + anon_sym_type, + ACTIONS(2394), 1, + anon_sym_namespace, + ACTIONS(2396), 1, + anon_sym_import, + ACTIONS(2398), 1, + anon_sym_var, + ACTIONS(2400), 1, + anon_sym_let, + ACTIONS(2402), 1, + anon_sym_const, + ACTIONS(2404), 1, + anon_sym_class, + ACTIONS(2406), 1, + anon_sym_async, + ACTIONS(2408), 1, + anon_sym_function, + ACTIONS(2410), 1, + anon_sym_declare, + ACTIONS(2414), 1, + anon_sym_abstract, + ACTIONS(2418), 1, + anon_sym_interface, + ACTIONS(2420), 1, + anon_sym_enum, + ACTIONS(3821), 1, + anon_sym_module, + ACTIONS(6222), 1, + anon_sym_default, + STATE(1285), 1, + sym_decorator, + STATE(3916), 1, + sym_internal_module, + STATE(4062), 1, + sym_declaration, + STATE(4323), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3912), 13, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [113892] = 9, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, - anon_sym_override, - ACTIONS(4595), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(6206), 1, - anon_sym_STAR, - ACTIONS(6210), 1, - anon_sym_readonly, - STATE(2798), 1, - sym_override_modifier, + ACTIONS(6224), 1, + anon_sym_RBRACE, + STATE(5188), 1, + sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6208), 2, + ACTIONS(6192), 2, sym_number, sym_private_property_identifier, - ACTIONS(6212), 2, + STATE(4463), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2362), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3051), 3, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113946] = 9, + ACTIONS(1557), 1, + anon_sym_DQUOTE, + ACTIONS(1559), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(6226), 1, + anon_sym_RBRACE, + STATE(5188), 1, + sym_enum_assignment, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6192), 2, + sym_number, + sym_private_property_identifier, + STATE(4463), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(2362), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234323,10 +234620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -234334,7 +234635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113614] = 22, + [114000] = 22, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2392), 1, @@ -234357,23 +234658,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(2410), 1, anon_sym_declare, + ACTIONS(2412), 1, + anon_sym_module, ACTIONS(2414), 1, anon_sym_abstract, + ACTIONS(2416), 1, + anon_sym_global, ACTIONS(2418), 1, anon_sym_interface, ACTIONS(2420), 1, anon_sym_enum, - ACTIONS(3845), 1, - anon_sym_module, - ACTIONS(6214), 1, - anon_sym_default, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, STATE(3916), 1, sym_internal_module, - STATE(4062), 1, + STATE(3947), 1, sym_declaration, - STATE(4322), 1, + STATE(4323), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -234392,24 +234693,24 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [113694] = 9, - ACTIONS(1551), 1, + [114080] = 9, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(6216), 1, + ACTIONS(6228), 1, anon_sym_RBRACE, - STATE(4673), 1, + STATE(5188), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6218), 2, + ACTIONS(6192), 2, sym_number, sym_private_property_identifier, - STATE(3958), 3, + STATE(4463), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234437,7 +234738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113748] = 22, + [114134] = 22, ACTIONS(99), 1, anon_sym_AT, ACTIONS(2290), 1, @@ -234468,20 +234769,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(2352), 1, anon_sym_type, - ACTIONS(6220), 1, + ACTIONS(6230), 1, anon_sym_default, - STATE(824), 1, + STATE(825), 1, sym_internal_module, STATE(926), 1, sym_declaration, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(4084), 1, + STATE(4085), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(836), 13, + STATE(837), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -234495,49 +234796,83 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [113828] = 14, - ACTIONS(1635), 1, + [114214] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3577), 7, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1637), 1, anon_sym_SQUOTE, - ACTIONS(3731), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(3575), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + anon_sym_accessor, + [114255] = 11, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5035), 1, + ACTIONS(5121), 1, anon_sym_STAR, - ACTIONS(5037), 1, + ACTIONS(5123), 1, anon_sym_async, - ACTIONS(5041), 1, + ACTIONS(5127), 1, anon_sym_readonly, - ACTIONS(6222), 1, - anon_sym_static, - STATE(2807), 1, - sym_override_modifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5039), 2, + ACTIONS(5125), 2, sym_number, sym_private_property_identifier, - ACTIONS(5043), 2, + ACTIONS(5129), 2, anon_sym_get, anon_sym_set, - STATE(3108), 3, + STATE(3097), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 17, + ACTIONS(3705), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -234545,28 +234880,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113892] = 9, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(6224), 1, - anon_sym_RBRACE, - STATE(4703), 1, - sym_enum_assignment, + [114312] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6226), 2, + ACTIONS(3660), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(4142), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, + anon_sym_AT, + ACTIONS(3658), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234590,28 +234916,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113946] = 9, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(6228), 1, - anon_sym_RBRACE, - STATE(5183), 1, - sym_enum_assignment, + anon_sym_abstract, + anon_sym_accessor, + [114353] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(3641), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(4522), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, + anon_sym_AT, + ACTIONS(3639), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234635,24 +234954,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114000] = 9, - ACTIONS(1551), 1, + anon_sym_abstract, + anon_sym_accessor, + [114394] = 8, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(6230), 1, - anon_sym_RBRACE, - STATE(5183), 1, + STATE(5188), 1, sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(6192), 2, sym_number, sym_private_property_identifier, - STATE(4522), 3, + STATE(4463), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234680,145 +234999,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114054] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2290), 1, - anon_sym_namespace, - ACTIONS(2294), 1, - anon_sym_import, - ACTIONS(2296), 1, - anon_sym_var, - ACTIONS(2298), 1, - anon_sym_let, - ACTIONS(2300), 1, - anon_sym_const, - ACTIONS(2305), 1, - anon_sym_class, - ACTIONS(2307), 1, - anon_sym_async, - ACTIONS(2309), 1, - anon_sym_function, - ACTIONS(2314), 1, - anon_sym_declare, - ACTIONS(2318), 1, - anon_sym_abstract, - ACTIONS(2320), 1, - anon_sym_interface, - ACTIONS(2322), 1, - anon_sym_enum, - ACTIONS(2352), 1, - anon_sym_type, - ACTIONS(2354), 1, - anon_sym_module, - ACTIONS(2356), 1, - anon_sym_global, - STATE(824), 1, - sym_internal_module, - STATE(869), 1, - sym_declaration, - STATE(1297), 1, - sym_decorator, - STATE(4084), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(836), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [114134] = 22, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(2392), 1, - anon_sym_type, - ACTIONS(2394), 1, - anon_sym_namespace, - ACTIONS(2396), 1, - anon_sym_import, - ACTIONS(2398), 1, - anon_sym_var, - ACTIONS(2400), 1, - anon_sym_let, - ACTIONS(2402), 1, - anon_sym_const, - ACTIONS(2404), 1, - anon_sym_class, - ACTIONS(2406), 1, - anon_sym_async, - ACTIONS(2408), 1, - anon_sym_function, - ACTIONS(2410), 1, - anon_sym_declare, - ACTIONS(2412), 1, - anon_sym_module, - ACTIONS(2414), 1, - anon_sym_abstract, - ACTIONS(2416), 1, - anon_sym_global, - ACTIONS(2418), 1, - anon_sym_interface, - ACTIONS(2420), 1, - anon_sym_enum, - STATE(1297), 1, - sym_decorator, - STATE(3916), 1, - sym_internal_module, - STATE(3947), 1, - sym_declaration, - STATE(4322), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3912), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [114214] = 11, - ACTIONS(1635), 1, + [114445] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5500), 1, + ACTIONS(5244), 1, anon_sym_STAR, - ACTIONS(5506), 1, + ACTIONS(5246), 1, anon_sym_async, ACTIONS(6232), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5508), 2, + ACTIONS(5248), 2, sym_number, sym_private_property_identifier, - ACTIONS(5510), 2, + ACTIONS(5250), 2, anon_sym_get, anon_sym_set, - STATE(3070), 3, + STATE(3157), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234842,10 +235045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114271] = 11, - ACTIONS(1635), 1, + [114502] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4591), 1, anon_sym_STAR, @@ -234864,7 +235067,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4603), 2, anon_sym_get, anon_sym_set, - STATE(3117), 3, + STATE(3114), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -234888,40 +235091,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114328] = 11, - ACTIONS(1635), 1, + [114559] = 9, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(5150), 1, + ACTIONS(6198), 1, anon_sym_STAR, - ACTIONS(5152), 1, - anon_sym_async, - ACTIONS(6236), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5158), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6234), 2, + ACTIONS(5712), 2, sym_number, sym_private_property_identifier, - STATE(3080), 3, + ACTIONS(6234), 2, + anon_sym_get, + anon_sym_set, + STATE(3800), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(2362), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -234934,30 +235135,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114385] = 3, + [114612] = 11, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(2364), 1, + anon_sym_async, + ACTIONS(2366), 1, + anon_sym_readonly, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5003), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3583), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2348), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3581), 25, + ACTIONS(2368), 2, + anon_sym_get, + anon_sym_set, + STATE(3799), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2362), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -234970,35 +235181,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [114426] = 11, - ACTIONS(1635), 1, + [114669] = 11, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(5150), 1, + ACTIONS(6111), 1, anon_sym_STAR, - ACTIONS(5152), 1, + ACTIONS(6113), 1, anon_sym_async, - ACTIONS(6240), 1, + ACTIONS(6236), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5158), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6238), 2, + ACTIONS(6115), 2, sym_number, sym_private_property_identifier, - STATE(3054), 3, + ACTIONS(6117), 2, + anon_sym_get, + anon_sym_set, + STATE(3770), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(2362), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235018,38 +235227,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114483] = 9, - ACTIONS(2338), 1, + [114726] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(6200), 1, + ACTIONS(5086), 1, anon_sym_STAR, + ACTIONS(5088), 1, + anon_sym_async, + ACTIONS(5092), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5710), 2, + ACTIONS(5090), 2, sym_number, sym_private_property_identifier, - ACTIONS(6242), 2, + ACTIONS(5094), 2, anon_sym_get, anon_sym_set, - STATE(3799), 3, + STATE(3049), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 21, + ACTIONS(3705), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235062,40 +235273,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114536] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5518), 1, - anon_sym_STAR, - ACTIONS(5524), 1, - anon_sym_async, - ACTIONS(6244), 1, - anon_sym_readonly, + [114783] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5526), 2, + ACTIONS(3612), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(5528), 2, - anon_sym_get, - anon_sym_set, - STATE(3098), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 19, + anon_sym_AT, + ACTIONS(3610), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235108,29 +235309,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114593] = 11, - ACTIONS(1635), 1, + anon_sym_abstract, + anon_sym_accessor, + [114824] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5035), 1, + ACTIONS(5096), 1, anon_sym_STAR, - ACTIONS(5037), 1, + ACTIONS(5098), 1, anon_sym_async, - ACTIONS(5041), 1, + ACTIONS(6240), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5039), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5043), 2, + ACTIONS(5104), 2, anon_sym_get, anon_sym_set, - STATE(3108), 3, + ACTIONS(6238), 2, + sym_number, + sym_private_property_identifier, + STATE(3059), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235154,29 +235357,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114650] = 11, - ACTIONS(1635), 1, + [114881] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5164), 1, + ACTIONS(5033), 1, anon_sym_STAR, - ACTIONS(5166), 1, + ACTIONS(5035), 1, anon_sym_async, - ACTIONS(5170), 1, + ACTIONS(5039), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5168), 2, + ACTIONS(5037), 2, sym_number, sym_private_property_identifier, - ACTIONS(5172), 2, + ACTIONS(5041), 2, anon_sym_get, anon_sym_set, - STATE(3133), 3, + STATE(3145), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235200,30 +235403,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114707] = 3, + [114938] = 11, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(5498), 1, + anon_sym_STAR, + ACTIONS(5504), 1, + anon_sym_async, + ACTIONS(6242), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3639), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5506), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3637), 25, + ACTIONS(5508), 2, + anon_sym_get, + anon_sym_set, + STATE(3078), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3705), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235236,24 +235449,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [114748] = 4, + [114995] = 9, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(6244), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1990), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5730), 2, sym_number, sym_private_property_identifier, - ACTIONS(1988), 23, + ACTIONS(6246), 2, + anon_sym_get, + anon_sym_set, + STATE(3884), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2362), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235263,8 +235481,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235277,33 +235493,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114791] = 11, - ACTIONS(2338), 1, + [115048] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(6119), 1, + ACTIONS(5150), 1, anon_sym_STAR, - ACTIONS(6121), 1, + ACTIONS(5152), 1, anon_sym_async, - ACTIONS(6246), 1, + ACTIONS(6250), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6123), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6125), 2, + ACTIONS(5158), 2, anon_sym_get, anon_sym_set, - STATE(3768), 3, + ACTIONS(6248), 2, + sym_number, + sym_private_property_identifier, + STATE(3086), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 19, + ACTIONS(3705), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235323,33 +235539,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114848] = 11, - ACTIONS(2338), 1, + [115105] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(6093), 1, + ACTIONS(5150), 1, anon_sym_STAR, - ACTIONS(6095), 1, + ACTIONS(5152), 1, anon_sym_async, - ACTIONS(6099), 1, + ACTIONS(6254), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6097), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6101), 2, + ACTIONS(5158), 2, anon_sym_get, anon_sym_set, - STATE(3798), 3, + ACTIONS(6252), 2, + sym_number, + sym_private_property_identifier, + STATE(3070), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 19, + ACTIONS(3705), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235369,29 +235585,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114905] = 11, - ACTIONS(1635), 1, + [115162] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5096), 1, + ACTIONS(5516), 1, anon_sym_STAR, - ACTIONS(5098), 1, + ACTIONS(5522), 1, anon_sym_async, - ACTIONS(6250), 1, + ACTIONS(6256), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5104), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6248), 2, + ACTIONS(5524), 2, sym_number, sym_private_property_identifier, - STATE(3063), 3, + ACTIONS(5526), 2, + anon_sym_get, + anon_sym_set, + STATE(3144), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235415,29 +235631,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114962] = 11, - ACTIONS(1635), 1, + [115219] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5121), 1, + ACTIONS(5164), 1, anon_sym_STAR, - ACTIONS(5123), 1, + ACTIONS(5166), 1, anon_sym_async, - ACTIONS(5127), 1, + ACTIONS(5170), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5125), 2, + ACTIONS(5168), 2, sym_number, sym_private_property_identifier, - ACTIONS(5129), 2, + ACTIONS(5172), 2, anon_sym_get, anon_sym_set, - STATE(3110), 3, + STATE(3158), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235461,19 +235677,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115019] = 3, + [115276] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3668), 7, + ACTIONS(3819), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1990), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3666), 25, + ACTIONS(1988), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235497,81 +235716,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [115060] = 11, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5407), 1, - anon_sym_STAR, - ACTIONS(5409), 1, - anon_sym_async, - ACTIONS(6254), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6252), 2, - sym_number, - sym_private_property_identifier, - STATE(3077), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [115117] = 11, - ACTIONS(1635), 1, + [115319] = 11, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(4649), 1, + ACTIONS(6089), 1, anon_sym_STAR, - ACTIONS(4653), 1, + ACTIONS(6091), 1, anon_sym_async, - ACTIONS(4657), 1, + ACTIONS(6095), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4655), 2, + ACTIONS(6093), 2, sym_number, sym_private_property_identifier, - ACTIONS(4659), 2, + ACTIONS(6097), 2, anon_sym_get, anon_sym_set, - STATE(3050), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(2362), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235591,11 +235762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115174] = 3, + [115376] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3656), 7, + ACTIONS(3664), 7, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -235603,7 +235774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(3654), 25, + ACTIONS(3662), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235629,30 +235800,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_abstract, anon_sym_accessor, - [115215] = 3, + [115417] = 11, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(5407), 1, + anon_sym_STAR, + ACTIONS(5409), 1, + anon_sym_async, + ACTIONS(6260), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3593), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(5413), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6258), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3591), 25, + STATE(3084), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3705), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235665,31 +235846,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - anon_sym_accessor, - [115256] = 11, - ACTIONS(1635), 1, + [115474] = 11, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5086), 1, + ACTIONS(4649), 1, anon_sym_STAR, - ACTIONS(5088), 1, + ACTIONS(4653), 1, anon_sym_async, - ACTIONS(5092), 1, + ACTIONS(4657), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5090), 2, + ACTIONS(4655), 2, sym_number, sym_private_property_identifier, - ACTIONS(5094), 2, + ACTIONS(4659), 2, anon_sym_get, anon_sym_set, - STATE(3055), 3, + STATE(3071), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235713,22 +235892,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115313] = 8, - ACTIONS(1551), 1, + [115531] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - STATE(5183), 1, - sym_enum_assignment, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6184), 2, + ACTIONS(5395), 2, sym_number, sym_private_property_identifier, - STATE(4522), 3, + STATE(3859), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235756,40 +235933,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115364] = 11, - ACTIONS(1635), 1, + [115579] = 7, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5244), 1, - anon_sym_STAR, - ACTIONS(5246), 1, - anon_sym_async, - ACTIONS(6256), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5248), 2, + ACTIONS(6262), 2, sym_number, sym_private_property_identifier, - ACTIONS(5250), 2, - anon_sym_get, - anon_sym_set, - STATE(3124), 3, + STATE(3447), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 19, + ACTIONS(3705), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235802,40 +235974,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115421] = 11, - ACTIONS(2338), 1, + [115627] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(2364), 1, - anon_sym_async, - ACTIONS(2366), 1, - anon_sym_readonly, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(5003), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2348), 2, + ACTIONS(4688), 2, sym_number, sym_private_property_identifier, - ACTIONS(2368), 2, - anon_sym_get, - anon_sym_set, - STATE(3797), 3, + STATE(3904), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 19, + ACTIONS(2362), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235848,29 +236015,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115478] = 9, - ACTIONS(2338), 1, + [115675] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(6258), 1, - anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5700), 2, + ACTIONS(6115), 2, sym_number, sym_private_property_identifier, - ACTIONS(6260), 2, - anon_sym_get, - anon_sym_set, - STATE(3885), 3, + STATE(3770), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 21, + ACTIONS(2362), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -235880,6 +236042,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -235892,20 +236056,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115531] = 7, - ACTIONS(2338), 1, + [115723] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5298), 2, + ACTIONS(6178), 2, sym_number, sym_private_property_identifier, - STATE(3817), 3, + STATE(3876), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -235933,61 +236097,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115579] = 7, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6162), 2, - sym_number, - sym_private_property_identifier, - STATE(3800), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [115627] = 7, - ACTIONS(2338), 1, + [115771] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5423), 2, + ACTIONS(5448), 2, sym_number, sym_private_property_identifier, - STATE(3821), 3, + STATE(3802), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -236015,20 +236138,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115675] = 7, - ACTIONS(1635), 1, + [115819] = 7, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6262), 2, + ACTIONS(4669), 2, sym_number, sym_private_property_identifier, - STATE(3327), 3, + STATE(3336), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -236056,24 +236179,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115723] = 7, - ACTIONS(1635), 1, + [115867] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6264), 2, + ACTIONS(5454), 2, sym_number, sym_private_property_identifier, - STATE(3446), 3, + STATE(3818), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2362), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236097,20 +236220,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115771] = 7, - ACTIONS(2338), 1, + [115915] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4681), 2, + ACTIONS(5464), 2, sym_number, sym_private_property_identifier, - STATE(3838), 3, + STATE(3833), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -236138,24 +236261,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115819] = 7, - ACTIONS(2338), 1, + [115963] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, + ACTIONS(6266), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6123), 2, + ACTIONS(6264), 2, sym_number, sym_private_property_identifier, - STATE(3768), 3, + STATE(3394), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3705), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236164,7 +236289,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -236179,20 +236303,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115867] = 7, - ACTIONS(2338), 1, + [116013] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6164), 2, + ACTIONS(5578), 2, sym_number, sym_private_property_identifier, - STATE(3866), 3, + STATE(3773), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -236220,20 +236344,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115915] = 7, - ACTIONS(2338), 1, + [116061] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5450), 2, + ACTIONS(5472), 2, sym_number, sym_private_property_identifier, - STATE(3805), 3, + STATE(3755), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -236261,24 +236385,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115963] = 7, - ACTIONS(2338), 1, + [116109] = 7, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5389), 2, + ACTIONS(6268), 2, sym_number, sym_private_property_identifier, - STATE(3872), 3, + STATE(3395), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3705), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236302,20 +236426,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116011] = 7, - ACTIONS(2338), 1, + [116157] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5458), 2, + ACTIONS(6164), 2, sym_number, sym_private_property_identifier, - STATE(3824), 3, + STATE(3841), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -236343,24 +236467,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116059] = 7, - ACTIONS(1635), 1, + [116205] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6266), 2, + ACTIONS(2348), 2, sym_number, sym_private_property_identifier, - STATE(3340), 3, + STATE(3799), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2362), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236384,20 +236508,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116107] = 7, - ACTIONS(2338), 1, + [116253] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5466), 2, + ACTIONS(6143), 2, sym_number, sym_private_property_identifier, - STATE(3755), 3, + STATE(3851), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -236425,20 +236549,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116155] = 7, - ACTIONS(2338), 1, + [116301] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5474), 2, + ACTIONS(5385), 2, sym_number, sym_private_property_identifier, - STATE(3839), 3, + STATE(3766), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -236466,26 +236590,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116203] = 8, - ACTIONS(1635), 1, + [116349] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(6270), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6268), 2, + ACTIONS(5500), 2, sym_number, sym_private_property_identifier, - STATE(3326), 3, + STATE(3864), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(2362), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236494,6 +236616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -236508,20 +236631,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116253] = 7, - ACTIONS(2338), 1, + [116397] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5580), 2, + ACTIONS(5389), 2, sym_number, sym_private_property_identifier, - STATE(3771), 3, + STATE(3870), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -236549,24 +236672,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116301] = 7, - ACTIONS(2338), 1, + [116445] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, + ACTIONS(5888), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6166), 2, + ACTIONS(5716), 2, sym_number, sym_private_property_identifier, - STATE(3844), 3, + STATE(3391), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3705), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236575,7 +236700,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -236590,24 +236714,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116349] = 7, - ACTIONS(2338), 1, + [116495] = 7, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6137), 2, + ACTIONS(5716), 2, sym_number, sym_private_property_identifier, - STATE(3851), 3, + STATE(3391), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3705), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236631,20 +236755,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116397] = 7, - ACTIONS(2338), 1, + [116543] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5502), 2, + ACTIONS(5304), 2, sym_number, sym_private_property_identifier, - STATE(3864), 3, + STATE(3821), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -236672,26 +236796,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116445] = 8, - ACTIONS(1635), 1, + [116591] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(5879), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(5730), 2, sym_number, sym_private_property_identifier, - STATE(3393), 3, + STATE(3884), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(2362), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236700,6 +236822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -236714,20 +236837,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116495] = 7, - ACTIONS(1635), 1, + [116639] = 7, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5712), 2, + ACTIONS(4854), 2, sym_number, sym_private_property_identifier, - STATE(3393), 3, + STATE(3360), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -236755,61 +236878,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116543] = 7, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2348), 2, - sym_number, - sym_private_property_identifier, - STATE(3797), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [116591] = 7, - ACTIONS(2338), 1, + [116687] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5423), 2, sym_number, sym_private_property_identifier, - STATE(3765), 3, + STATE(3823), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -236837,24 +236919,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116639] = 7, - ACTIONS(2338), 1, + [116735] = 7, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5700), 2, + ACTIONS(6270), 2, sym_number, sym_private_property_identifier, - STATE(3885), 3, + STATE(3455), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3705), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236878,24 +236960,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116687] = 7, - ACTIONS(1635), 1, + [116783] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, + ACTIONS(6274), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4854), 2, + ACTIONS(6272), 2, sym_number, sym_private_property_identifier, - STATE(3460), 3, + STATE(3463), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(3705), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236904,7 +236988,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -236919,20 +237002,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116735] = 7, - ACTIONS(1635), 1, + [116833] = 7, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6272), 2, + ACTIONS(6276), 2, sym_number, sym_private_property_identifier, - STATE(3450), 3, + STATE(3464), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -236960,22 +237043,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116783] = 8, - ACTIONS(1635), 1, + [116881] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(6276), 1, + ACTIONS(5830), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6274), 2, + ACTIONS(4854), 2, sym_number, sym_private_property_identifier, - STATE(3459), 3, + STATE(3360), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -237002,24 +237085,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116833] = 7, - ACTIONS(1635), 1, + [116931] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, + ACTIONS(6280), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(6278), 2, sym_number, sym_private_property_identifier, - STATE(3461), 3, + STATE(3469), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(3705), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237028,7 +237113,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -237043,26 +237127,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116881] = 8, - ACTIONS(1635), 1, + [116981] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(6282), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6280), 2, + ACTIONS(6162), 2, sym_number, sym_private_property_identifier, - STATE(3468), 3, + STATE(3803), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(2362), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237071,6 +237153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -237085,26 +237168,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116931] = 8, - ACTIONS(1635), 1, + [117029] = 7, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(6286), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6284), 2, + ACTIONS(6282), 2, sym_number, sym_private_property_identifier, - STATE(3338), 3, + STATE(3376), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3705), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237113,6 +237194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -237127,24 +237209,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116981] = 7, - ACTIONS(1635), 1, + [117077] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6288), 2, + ACTIONS(5518), 2, sym_number, sym_private_property_identifier, - STATE(3345), 3, + STATE(3791), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2362), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237168,24 +237250,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117029] = 7, - ACTIONS(2338), 1, + [117125] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4595), 1, anon_sym_LBRACK, + ACTIONS(6286), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5710), 2, + ACTIONS(6284), 2, sym_number, sym_private_property_identifier, - STATE(3799), 3, + STATE(3431), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3705), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237194,7 +237278,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -237209,20 +237292,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117077] = 7, - ACTIONS(2338), 1, + [117175] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6097), 2, + ACTIONS(6093), 2, sym_number, sym_private_property_identifier, - STATE(3798), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -237250,20 +237333,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117125] = 7, - ACTIONS(2338), 1, + [117223] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6131), 2, + ACTIONS(6160), 2, sym_number, sym_private_property_identifier, - STATE(3835), 3, + STATE(3878), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -237291,22 +237374,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117173] = 8, - ACTIONS(1635), 1, + [117271] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5712), 2, + sym_number, + sym_private_property_identifier, + STATE(3800), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2362), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [117319] = 7, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6149), 2, + sym_number, + sym_private_property_identifier, + STATE(3756), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2362), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [117367] = 8, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(6292), 1, + ACTIONS(6290), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6290), 2, + ACTIONS(6288), 2, sym_number, sym_private_property_identifier, - STATE(3421), 3, + STATE(3389), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -237333,20 +237498,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117223] = 7, - ACTIONS(2338), 1, + [117417] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5375), 2, + ACTIONS(5369), 2, sym_number, sym_private_property_identifier, - STATE(3858), 3, + STATE(3866), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -237374,24 +237539,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117271] = 7, - ACTIONS(1635), 1, + [117465] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4595), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6294), 2, + ACTIONS(5363), 2, sym_number, sym_private_property_identifier, - STATE(3427), 3, + STATE(3794), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 23, + ACTIONS(2362), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237415,12 +237580,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117319] = 7, - ACTIONS(2338), 1, + [117513] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -237428,7 +237593,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5444), 2, sym_number, sym_private_property_identifier, - STATE(3898), 3, + STATE(3900), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -237456,12 +237621,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117367] = 7, - ACTIONS(2338), 1, + [117561] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -237469,7 +237634,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5556), 2, sym_number, sym_private_property_identifier, - STATE(3761), 3, + STATE(3771), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -237497,26 +237662,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117415] = 8, - ACTIONS(1635), 1, + [117609] = 7, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5826), 1, - anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4854), 2, + ACTIONS(6292), 2, sym_number, sym_private_property_identifier, - STATE(3460), 3, + STATE(3470), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(3705), 22, + ACTIONS(3705), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237525,6 +237688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -237539,12 +237703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117465] = 7, - ACTIONS(2338), 1, + [117657] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, @@ -237552,7 +237716,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5415), 2, sym_number, sym_private_property_identifier, - STATE(3904), 3, + STATE(3838), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -237580,20 +237744,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117513] = 7, - ACTIONS(2338), 1, + [117705] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5363), 2, + ACTIONS(5240), 2, sym_number, sym_private_property_identifier, - STATE(3792), 3, + STATE(3760), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -237621,20 +237785,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117561] = 7, - ACTIONS(2338), 1, + [117753] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5240), 2, + ACTIONS(5375), 2, sym_number, sym_private_property_identifier, - STATE(3758), 3, + STATE(3761), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -237662,20 +237826,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117609] = 7, - ACTIONS(2338), 1, + [117801] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6160), 2, + ACTIONS(6176), 2, sym_number, sym_private_property_identifier, - STATE(3879), 3, + STATE(3763), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -237703,24 +237867,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117657] = 7, - ACTIONS(2338), 1, + [117849] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(6296), 1, + anon_sym_readonly, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6294), 2, + sym_number, + sym_private_property_identifier, + STATE(3466), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3705), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [117899] = 8, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(4595), 1, anon_sym_LBRACK, + ACTIONS(6298), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5381), 2, + ACTIONS(5995), 2, sym_number, sym_private_property_identifier, - STATE(3760), 3, + STATE(3358), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2362), 23, + ACTIONS(3705), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [117949] = 7, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5995), 2, + sym_number, + sym_private_property_identifier, + STATE(3358), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3705), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237744,20 +237992,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117705] = 7, - ACTIONS(1635), 1, + [117997] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, + ACTIONS(6302), 1, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4781), 2, + ACTIONS(6300), 2, sym_number, sym_private_property_identifier, - STATE(3411), 3, + STATE(3375), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(3705), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [118047] = 7, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(4595), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6304), 2, + sym_number, + sym_private_property_identifier, + STATE(3378), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -237785,20 +238075,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117753] = 7, - ACTIONS(2338), 1, + [118095] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(4679), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6178), 2, + ACTIONS(6155), 2, sym_number, sym_private_property_identifier, - STATE(3762), 3, + STATE(3875), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -237826,22 +238116,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117801] = 8, - ACTIONS(1635), 1, + [118143] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(6298), 1, + ACTIONS(6308), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6296), 2, + ACTIONS(6306), 2, sym_number, sym_private_property_identifier, - STATE(3416), 3, + STATE(3350), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -237868,22 +238158,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117851] = 8, - ACTIONS(1635), 1, + [118193] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(6300), 1, + ACTIONS(6312), 1, anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5975), 2, + ACTIONS(6310), 2, sym_number, sym_private_property_identifier, - STATE(3324), 3, + STATE(3398), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -237910,145 +238200,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117901] = 7, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5975), 2, - sym_number, - sym_private_property_identifier, - STATE(3324), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [117949] = 8, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(6304), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6302), 2, - sym_number, - sym_private_property_identifier, - STATE(3325), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [117999] = 8, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(6308), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6306), 2, - sym_number, - sym_private_property_identifier, - STATE(3364), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [118049] = 7, - ACTIONS(1635), 1, + [118243] = 7, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6310), 2, + ACTIONS(6314), 2, sym_number, sym_private_property_identifier, - STATE(3367), 3, + STATE(3400), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -238076,134 +238241,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118097] = 7, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5395), 2, - sym_number, - sym_private_property_identifier, - STATE(3859), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [118145] = 7, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6155), 2, - sym_number, - sym_private_property_identifier, - STATE(3873), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [118193] = 8, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(4595), 1, - anon_sym_LBRACK, - ACTIONS(6314), 1, - anon_sym_readonly, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6312), 2, - sym_number, - sym_private_property_identifier, - STATE(3400), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3705), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [118243] = 7, - ACTIONS(1635), 1, + [118291] = 7, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -238213,7 +238254,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6316), 2, sym_number, sym_private_property_identifier, - STATE(3403), 3, + STATE(3351), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -238241,10 +238282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118291] = 8, - ACTIONS(1635), 1, + [118339] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -238256,7 +238297,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6318), 2, sym_number, sym_private_property_identifier, - STATE(3424), 3, + STATE(3410), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -238283,10 +238324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118341] = 7, - ACTIONS(1635), 1, + [118389] = 7, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -238296,7 +238337,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6322), 2, sym_number, sym_private_property_identifier, - STATE(3425), 3, + STATE(3411), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -238324,10 +238365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118389] = 8, - ACTIONS(1635), 1, + [118437] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(4595), 1, anon_sym_LBRACK, @@ -238339,7 +238380,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6324), 2, sym_number, sym_private_property_identifier, - STATE(3430), 3, + STATE(3363), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -238366,47 +238407,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118439] = 7, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5520), 2, - sym_number, - sym_private_property_identifier, - STATE(3777), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2362), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, [118487] = 4, ACTIONS(6328), 1, sym_identifier, @@ -238441,15 +238441,15 @@ static const uint16_t ts_small_parse_table[] = { [118522] = 9, ACTIONS(3535), 1, anon_sym_LPAREN, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, ACTIONS(6332), 1, anon_sym_DOT, ACTIONS(6334), 1, anon_sym_QMARK_DOT, - STATE(2922), 1, + STATE(2927), 1, sym_arguments, - STATE(2966), 1, + STATE(3033), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, @@ -238465,10 +238465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, [118563] = 9, ACTIONS(3535), 1, @@ -238477,19 +238477,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(3539), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, - STATE(2919), 1, + STATE(2936), 1, sym_arguments, - STATE(2954), 1, + STATE(3032), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 2, + ACTIONS(3527), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(3505), 12, + ACTIONS(3517), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -238497,31 +238497,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, [118604] = 9, ACTIONS(3535), 1, anon_sym_LPAREN, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, ACTIONS(6336), 1, anon_sym_DOT, ACTIONS(6338), 1, anon_sym_QMARK_DOT, - STATE(2935), 1, + STATE(2922), 1, sym_arguments, - STATE(2964), 1, + STATE(3034), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4063), 2, + ACTIONS(4071), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4065), 12, + ACTIONS(4073), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -238529,19 +238529,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, [118645] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4413), 2, + ACTIONS(4416), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4415), 17, + ACTIONS(4418), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238551,22 +238551,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [118673] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 2, + ACTIONS(4420), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4419), 17, + ACTIONS(4422), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238576,22 +238576,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [118701] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4417), 2, + ACTIONS(4139), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4419), 17, + ACTIONS(4141), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238601,22 +238601,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [118729] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 2, + ACTIONS(4135), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4133), 17, + ACTIONS(4137), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238626,22 +238626,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [118757] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 2, + ACTIONS(4139), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4129), 17, + ACTIONS(4141), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238651,22 +238651,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [118785] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4131), 2, + ACTIONS(4135), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4133), 17, + ACTIONS(4137), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238676,22 +238676,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [118813] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4127), 2, + ACTIONS(4151), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4129), 17, + ACTIONS(4153), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238701,22 +238701,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [118841] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4145), 2, + ACTIONS(4169), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4147), 17, + ACTIONS(4171), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238726,22 +238726,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [118869] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 2, + ACTIONS(4151), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4165), 17, + ACTIONS(4153), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238751,22 +238751,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [118897] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4145), 2, + ACTIONS(4169), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4147), 17, + ACTIONS(4171), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238776,22 +238776,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [118925] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4163), 2, + ACTIONS(4253), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4165), 17, + ACTIONS(4255), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238801,22 +238801,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [118953] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 2, + ACTIONS(4308), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4280), 17, + ACTIONS(4310), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238826,22 +238826,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [118981] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4253), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4125), 17, + ACTIONS(4255), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238851,22 +238851,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119009] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 2, + ACTIONS(4253), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4298), 17, + ACTIONS(4255), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238876,22 +238876,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119037] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4296), 2, + ACTIONS(4300), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4298), 17, + ACTIONS(4302), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238901,22 +238901,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119065] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 2, + ACTIONS(4300), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4260), 17, + ACTIONS(4302), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238926,22 +238926,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119093] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 2, + ACTIONS(4308), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4280), 17, + ACTIONS(4310), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238951,22 +238951,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119121] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4413), 2, + ACTIONS(4292), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4415), 17, + ACTIONS(4294), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -238976,22 +238976,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119149] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4278), 2, + ACTIONS(4296), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4280), 17, + ACTIONS(4298), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239001,22 +239001,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119177] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 2, + ACTIONS(4300), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4290), 17, + ACTIONS(4302), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239026,22 +239026,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119205] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4237), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4125), 17, + ACTIONS(4239), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239051,22 +239051,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119233] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 2, + ACTIONS(4241), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4290), 17, + ACTIONS(4243), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239076,22 +239076,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119261] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4240), 2, + ACTIONS(4241), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4242), 17, + ACTIONS(4243), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239101,22 +239101,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119289] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 2, + ACTIONS(4241), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4246), 17, + ACTIONS(4243), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239126,22 +239126,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119317] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4274), 2, + ACTIONS(4249), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4276), 17, + ACTIONS(4251), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239151,22 +239151,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119345] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 2, + ACTIONS(4296), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4246), 17, + ACTIONS(4298), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239176,22 +239176,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119373] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4244), 2, + ACTIONS(4249), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4246), 17, + ACTIONS(4251), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239201,22 +239201,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119401] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 2, + ACTIONS(4308), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4260), 17, + ACTIONS(4310), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239226,22 +239226,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119429] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4288), 2, + ACTIONS(4396), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4290), 17, + ACTIONS(4398), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239251,13 +239251,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119457] = 3, ACTIONS(5), 2, @@ -239276,22 +239276,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119485] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4258), 2, + ACTIONS(4412), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4260), 17, + ACTIONS(4414), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239301,22 +239301,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119513] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4387), 2, + ACTIONS(4416), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4389), 17, + ACTIONS(4418), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239326,22 +239326,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119541] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4395), 2, + ACTIONS(4420), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4397), 17, + ACTIONS(4422), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239351,22 +239351,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119569] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4123), 2, + ACTIONS(4249), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4125), 17, + ACTIONS(4251), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239376,21 +239376,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_GT, anon_sym_extends, [119597] = 3, - ACTIONS(1923), 1, + ACTIONS(1749), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1921), 17, + ACTIONS(1747), 17, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239409,12 +239409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_PIPE_RBRACE, [119624] = 3, - ACTIONS(1927), 1, + ACTIONS(1745), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1925), 17, + ACTIONS(1743), 17, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239433,43 +239433,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_PIPE_RBRACE, [119651] = 3, + ACTIONS(4332), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4284), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4286), 15, + ACTIONS(4334), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [119677] = 7, - ACTIONS(4077), 1, - anon_sym_EQ, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(6340), 1, + [119677] = 4, + ACTIONS(1891), 1, anon_sym_DOT, - ACTIONS(6342), 1, - anon_sym_is, - STATE(2995), 1, - sym_type_arguments, + ACTIONS(4285), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 12, + ACTIONS(4287), 15, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -239477,18 +239472,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [119711] = 3, - ACTIONS(4341), 1, + [119705] = 3, + ACTIONS(3691), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 16, + ACTIONS(3491), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239498,21 +239495,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [119737] = 3, + [119731] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4381), 2, + ACTIONS(4245), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4383), 15, + ACTIONS(4247), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239521,20 +239518,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, - [119763] = 3, - ACTIONS(4349), 1, + [119757] = 3, + ACTIONS(4328), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 16, + ACTIONS(4330), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239544,25 +239541,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [119783] = 4, + ACTIONS(1887), 1, anon_sym_DOT, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4287), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [119789] = 5, - ACTIONS(6344), 1, + [119811] = 5, + ACTIONS(6340), 1, anon_sym_DOT, - ACTIONS(6346), 1, + ACTIONS(6342), 1, anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4399), 2, + ACTIONS(4384), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4401), 13, + ACTIONS(4386), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239571,130 +239592,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, - [119819] = 3, - ACTIONS(4353), 1, + [119841] = 6, + ACTIONS(4077), 1, anon_sym_EQ, + ACTIONS(6063), 1, + anon_sym_LT, + ACTIONS(6344), 1, + anon_sym_DOT, + STATE(3035), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 16, - anon_sym_as, + ACTIONS(3567), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [119845] = 9, - ACTIONS(3507), 1, - anon_sym_LPAREN, - ACTIONS(4057), 1, - anon_sym_PIPE, - ACTIONS(6348), 1, + [119873] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4312), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4314), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(6350), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(6352), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_extends, + [119899] = 7, + ACTIONS(4077), 1, + anon_sym_EQ, + ACTIONS(6063), 1, anon_sym_LT, - STATE(3125), 1, - sym_arguments, - STATE(3257), 1, + ACTIONS(6344), 1, + anon_sym_DOT, + ACTIONS(6346), 1, + anon_sym_is, + STATE(3035), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4059), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(3567), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119883] = 5, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, + [119933] = 3, + ACTIONS(3703), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3517), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3505), 13, + ACTIONS(3493), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [119959] = 3, + ACTIONS(4340), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4342), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [119913] = 15, - ACTIONS(1635), 1, + [119985] = 15, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - ACTIONS(6354), 1, + ACTIONS(6348), 1, sym_identifier, - ACTIONS(6356), 1, + ACTIONS(6350), 1, anon_sym_STAR, - ACTIONS(6358), 1, + ACTIONS(6352), 1, anon_sym_type, - ACTIONS(6360), 1, + ACTIONS(6354), 1, anon_sym_LBRACE, - ACTIONS(6362), 1, + ACTIONS(6356), 1, anon_sym_typeof, - ACTIONS(6366), 1, + ACTIONS(6360), 1, anon_sym_DOT, - STATE(4137), 1, + STATE(4136), 1, sym_string, STATE(4145), 1, sym_import_require_clause, - STATE(5185), 1, + STATE(5187), 1, sym_import_clause, - STATE(5314), 1, + STATE(5313), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5825), 2, + STATE(5782), 2, sym_namespace_import, sym_named_imports, - ACTIONS(6364), 3, + ACTIONS(6358), 3, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT, - [119963] = 3, - ACTIONS(3703), 1, + [120035] = 5, + ACTIONS(3537), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_QMARK_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3527), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(3517), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_extends, + [120065] = 3, + ACTIONS(4336), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 16, + ACTIONS(4338), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239704,22 +239795,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [119989] = 4, - ACTIONS(1893), 1, + [120091] = 9, + ACTIONS(3519), 1, + anon_sym_LPAREN, + ACTIONS(3521), 1, anon_sym_DOT, - ACTIONS(4203), 1, + ACTIONS(3525), 1, + anon_sym_QMARK_DOT, + ACTIONS(3527), 1, + anon_sym_PIPE, + ACTIONS(6362), 1, + anon_sym_LT, + STATE(3146), 1, + sym_arguments, + STATE(3270), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3517), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120129] = 9, + ACTIONS(3519), 1, + anon_sym_LPAREN, + ACTIONS(4057), 1, + anon_sym_PIPE, + ACTIONS(6362), 1, + anon_sym_LT, + ACTIONS(6364), 1, + anon_sym_DOT, + ACTIONS(6366), 1, + anon_sym_QMARK_DOT, + STATE(3147), 1, + sym_arguments, + STATE(3287), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4059), 10, + sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120167] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 15, + ACTIONS(4133), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4131), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239728,32 +239876,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_GT, anon_sym_extends, - [120017] = 9, - ACTIONS(3507), 1, + [120193] = 9, + ACTIONS(3519), 1, anon_sym_LPAREN, - ACTIONS(4063), 1, + ACTIONS(4071), 1, anon_sym_PIPE, - ACTIONS(6352), 1, + ACTIONS(6362), 1, anon_sym_LT, ACTIONS(6368), 1, anon_sym_DOT, ACTIONS(6370), 1, anon_sym_QMARK_DOT, - STATE(3106), 1, + STATE(3151), 1, sym_arguments, - STATE(3255), 1, + STATE(3232), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 10, + ACTIONS(4073), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -239764,16 +239912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120055] = 4, - ACTIONS(1897), 1, - anon_sym_DOT, - ACTIONS(4203), 1, + [120231] = 6, + ACTIONS(3535), 1, + anon_sym_LPAREN, + ACTIONS(4117), 1, anon_sym_EQ, + ACTIONS(6372), 1, + anon_sym_DOT, + STATE(2942), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 15, - anon_sym_as, + ACTIONS(4119), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -239781,49 +239932,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_GT, anon_sym_extends, - [120083] = 3, - ACTIONS(3687), 1, + [120262] = 4, + ACTIONS(4261), 1, anon_sym_EQ, + ACTIONS(6374), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3487), 16, + ACTIONS(4263), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120109] = 6, - ACTIONS(4077), 1, + [120289] = 3, + ACTIONS(4113), 1, anon_sym_EQ, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(6340), 1, - anon_sym_DOT, - STATE(2995), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 13, + ACTIONS(4115), 15, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -239831,20 +239975,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120141] = 3, + anon_sym_is, + [120314] = 3, + ACTIONS(4215), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4300), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4302), 15, + ACTIONS(4213), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239853,73 +239997,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - [120167] = 3, - ACTIONS(4327), 1, + [120339] = 3, + ACTIONS(4275), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 16, + ACTIONS(4277), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120193] = 9, - ACTIONS(3507), 1, - anon_sym_LPAREN, - ACTIONS(3509), 1, - anon_sym_DOT, - ACTIONS(3513), 1, - anon_sym_QMARK_DOT, - ACTIONS(3517), 1, - anon_sym_PIPE, - ACTIONS(6352), 1, - anon_sym_LT, - STATE(3128), 1, - sym_arguments, - STATE(3248), 1, - sym_type_arguments, + [120364] = 3, + ACTIONS(1767), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(1765), 15, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120231] = 3, - ACTIONS(4323), 1, + anon_sym_is, + [120389] = 5, + ACTIONS(4085), 1, anon_sym_EQ, + ACTIONS(6063), 1, + anon_sym_LT, + STATE(3038), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4325), 15, - anon_sym_as, + ACTIONS(4087), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -239927,42 +240066,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120256] = 3, - ACTIONS(1779), 1, + [120418] = 4, + ACTIONS(4233), 1, anon_sym_EQ, + ACTIONS(6376), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 15, + ACTIONS(4235), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [120281] = 3, - ACTIONS(4185), 1, + [120444] = 3, + ACTIONS(4123), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 15, + ACTIONS(4125), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -239971,24 +240109,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120306] = 5, - ACTIONS(4087), 1, + [120468] = 3, + ACTIONS(4267), 1, anon_sym_EQ, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(2948), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 13, + ACTIONS(4269), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -239996,44 +240130,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120335] = 6, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(4117), 1, + [120492] = 5, + ACTIONS(4193), 1, anon_sym_EQ, - ACTIONS(6372), 1, - anon_sym_DOT, - STATE(2938), 1, - sym_arguments, + ACTIONS(6376), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 12, + ACTIONS(4201), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4195), 10, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [120366] = 3, - ACTIONS(4099), 1, + anon_sym_GT, + anon_sym_QMARK, + [120520] = 3, + ACTIONS(4376), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 15, + ACTIONS(4378), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240042,22 +240174,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [120391] = 4, - ACTIONS(4453), 1, + [120544] = 3, + ACTIONS(4091), 1, anon_sym_EQ, - ACTIONS(6374), 1, - anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 14, + ACTIONS(4093), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240066,87 +240195,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120418] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6378), 1, - sym_number, - ACTIONS(6380), 1, - anon_sym_unique, - STATE(5813), 1, - sym_string, - STATE(5814), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6376), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120452] = 3, - ACTIONS(4296), 1, - anon_sym_PIPE, + [120568] = 3, + ACTIONS(4372), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4374), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120476] = 3, - ACTIONS(4296), 1, anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [120592] = 3, + ACTIONS(4380), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4382), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120500] = 3, - ACTIONS(4308), 1, + [120616] = 3, + ACTIONS(4408), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 14, + ACTIONS(4410), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240155,122 +240258,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120524] = 7, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6382), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5747), 2, - sym_string, - sym_predefined_type, - ACTIONS(6376), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120556] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6384), 1, - sym_number, - STATE(5751), 1, - sym_string, - STATE(5755), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6376), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120590] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6386), 1, - sym_number, - STATE(5763), 1, - sym_string, - STATE(5767), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6376), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120624] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6388), 1, - sym_number, - STATE(5772), 1, - sym_string, - STATE(5773), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6376), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120658] = 3, - ACTIONS(4365), 1, + [120640] = 3, + ACTIONS(4304), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 14, + ACTIONS(4306), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240279,19 +240279,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120682] = 3, - ACTIONS(4292), 1, + [120664] = 3, + ACTIONS(4344), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 14, + ACTIONS(4346), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240300,217 +240300,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [120706] = 8, - ACTIONS(6390), 1, - anon_sym_LPAREN, - ACTIONS(6392), 1, - anon_sym_DOT, - ACTIONS(6394), 1, - anon_sym_QMARK_DOT, - ACTIONS(6396), 1, - anon_sym_LT, - STATE(3227), 1, - sym_arguments, - STATE(3394), 1, - sym_type_arguments, + [120688] = 3, + ACTIONS(4396), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 9, + ACTIONS(4398), 14, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [120740] = 8, - ACTIONS(6390), 1, - anon_sym_LPAREN, - ACTIONS(6396), 1, - anon_sym_LT, - ACTIONS(6398), 1, anon_sym_DOT, - ACTIONS(6400), 1, anon_sym_QMARK_DOT, - STATE(3231), 1, - sym_arguments, - STATE(3415), 1, - sym_type_arguments, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120712] = 3, + ACTIONS(4412), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4065), 9, + ACTIONS(4414), 14, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [120774] = 8, - ACTIONS(6390), 1, - anon_sym_LPAREN, - ACTIONS(6396), 1, - anon_sym_LT, - ACTIONS(6402), 1, anon_sym_DOT, - ACTIONS(6404), 1, anon_sym_QMARK_DOT, - STATE(3221), 1, - sym_arguments, - STATE(3439), 1, - sym_type_arguments, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120736] = 3, + ACTIONS(4416), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4059), 9, + ACTIONS(4418), 14, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [120808] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6406), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [120830] = 7, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6408), 1, - sym_number, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5794), 2, - sym_string, - sym_predefined_type, - ACTIONS(6376), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120862] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6410), 1, - sym_number, - STATE(5806), 1, - sym_string, - STATE(5807), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6376), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120896] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6412), 1, - sym_number, - STATE(5822), 1, - sym_string, - STATE(5829), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6376), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [120930] = 5, - ACTIONS(4230), 1, + anon_sym_PIPE_RBRACE, + [120760] = 3, + ACTIONS(4364), 1, anon_sym_EQ, - ACTIONS(6414), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4232), 10, + ACTIONS(4366), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, - [120958] = 3, - ACTIONS(4387), 1, + anon_sym_extends, + [120784] = 3, + ACTIONS(4420), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 14, + ACTIONS(4422), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240525,13 +240411,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120982] = 3, - ACTIONS(4345), 1, + [120808] = 3, + ACTIONS(4199), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 14, + ACTIONS(4201), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240540,19 +240426,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121006] = 3, - ACTIONS(4395), 1, + [120832] = 3, + ACTIONS(4416), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4397), 14, + ACTIONS(4418), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240567,13 +240453,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121030] = 3, - ACTIONS(4391), 1, + [120856] = 3, + ACTIONS(4109), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 14, + ACTIONS(4111), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -240582,19 +240468,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121054] = 3, - ACTIONS(4413), 1, + [120880] = 3, + ACTIONS(4420), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 14, + ACTIONS(4422), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240609,13 +240495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121078] = 3, - ACTIONS(4417), 1, + [120904] = 3, + ACTIONS(4139), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 14, + ACTIONS(4141), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240630,33 +240516,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121102] = 2, + [120928] = 3, + ACTIONS(4135), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6416), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [121124] = 3, - ACTIONS(4413), 1, + ACTIONS(4137), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120952] = 3, + ACTIONS(4139), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 14, + ACTIONS(4141), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240671,13 +240558,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121148] = 3, - ACTIONS(4417), 1, + [120976] = 3, + ACTIONS(4135), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 14, + ACTIONS(4137), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240692,13 +240579,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121172] = 3, - ACTIONS(4131), 1, + [121000] = 3, + ACTIONS(4151), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4133), 14, + ACTIONS(4153), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240713,13 +240600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121196] = 3, - ACTIONS(4127), 1, + [121024] = 3, + ACTIONS(4169), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4129), 14, + ACTIONS(4171), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240734,34 +240621,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121220] = 3, - ACTIONS(4236), 1, + [121048] = 4, + ACTIONS(4199), 1, anon_sym_EQ, + ACTIONS(6376), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 14, + ACTIONS(4201), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121244] = 3, - ACTIONS(4131), 1, + [121074] = 3, + ACTIONS(4151), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4133), 14, + ACTIONS(4153), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240776,13 +240664,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121268] = 3, - ACTIONS(4127), 1, + [121098] = 3, + ACTIONS(4169), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4129), 14, + ACTIONS(4171), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -240797,22 +240685,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121292] = 7, - ACTIONS(1551), 1, + [121122] = 7, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6418), 1, sym_number, + ACTIONS(6382), 1, + anon_sym_unique, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5664), 2, + STATE(5747), 2, sym_string, sym_predefined_type, - ACTIONS(6376), 9, + ACTIONS(6378), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240822,23 +240710,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121324] = 8, - ACTIONS(1551), 1, + [121154] = 8, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6382), 1, anon_sym_unique, - ACTIONS(6420), 1, + ACTIONS(6384), 1, sym_number, - STATE(5524), 1, - sym_predefined_type, - STATE(5862), 1, + STATE(5752), 1, sym_string, + STATE(5757), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, + ACTIONS(6378), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240848,23 +240736,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121358] = 8, - ACTIONS(1551), 1, + [121188] = 8, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6382), 1, anon_sym_unique, - ACTIONS(6422), 1, + ACTIONS(6386), 1, sym_number, - STATE(5533), 1, + STATE(5772), 1, sym_string, - STATE(5536), 1, + STATE(5773), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, + ACTIONS(6378), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240874,23 +240762,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121392] = 8, - ACTIONS(1551), 1, + [121222] = 8, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6382), 1, anon_sym_unique, - ACTIONS(6424), 1, + ACTIONS(6388), 1, sym_number, - STATE(5591), 1, + STATE(5775), 1, sym_string, - STATE(5598), 1, + STATE(5786), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, + ACTIONS(6378), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -240900,74 +240788,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121426] = 3, - ACTIONS(4145), 1, + [121256] = 7, + ACTIONS(4077), 1, anon_sym_PIPE, + ACTIONS(6362), 1, + anon_sym_LT, + ACTIONS(6390), 1, + anon_sym_DOT, + ACTIONS(6392), 1, + anon_sym_is, + STATE(3225), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4147), 14, + ACTIONS(3567), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121450] = 3, - ACTIONS(4163), 1, - anon_sym_PIPE, + [121288] = 8, + ACTIONS(6394), 1, + anon_sym_LPAREN, + ACTIONS(6396), 1, + anon_sym_DOT, + ACTIONS(6398), 1, + anon_sym_QMARK_DOT, + ACTIONS(6400), 1, + anon_sym_LT, + STATE(3249), 1, + sym_arguments, + STATE(3339), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 14, + ACTIONS(3517), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121474] = 3, - ACTIONS(4145), 1, anon_sym_PIPE, + anon_sym_extends, + [121322] = 8, + ACTIONS(6394), 1, + anon_sym_LPAREN, + ACTIONS(6400), 1, + anon_sym_LT, + ACTIONS(6402), 1, + anon_sym_DOT, + ACTIONS(6404), 1, + anon_sym_QMARK_DOT, + STATE(3292), 1, + sym_arguments, + STATE(3343), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4147), 14, + ACTIONS(4059), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [121356] = 8, + ACTIONS(6394), 1, + anon_sym_LPAREN, + ACTIONS(6400), 1, + anon_sym_LT, + ACTIONS(6406), 1, anon_sym_DOT, + ACTIONS(6408), 1, anon_sym_QMARK_DOT, + STATE(3239), 1, + sym_arguments, + STATE(3347), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4073), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121498] = 2, + [121390] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6426), 15, + ACTIONS(6410), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -240983,64 +240911,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [121520] = 3, - ACTIONS(4409), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4411), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [121544] = 3, - ACTIONS(4163), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4165), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121568] = 7, - ACTIONS(1551), 1, + [121412] = 7, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6382), 1, anon_sym_unique, - ACTIONS(6428), 1, + ACTIONS(6412), 1, sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5778), 2, + STATE(5795), 2, sym_string, sym_predefined_type, - ACTIONS(6376), 9, + ACTIONS(6378), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241050,23 +240936,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121600] = 8, - ACTIONS(1551), 1, + [121444] = 8, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6382), 1, anon_sym_unique, - ACTIONS(6430), 1, + ACTIONS(6414), 1, sym_number, - STATE(5782), 1, + STATE(5806), 1, sym_string, - STATE(5789), 1, + STATE(5807), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, + ACTIONS(6378), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241076,23 +240962,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121634] = 8, - ACTIONS(1551), 1, + [121478] = 8, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6382), 1, anon_sym_unique, - ACTIONS(6432), 1, + ACTIONS(6416), 1, sym_number, - STATE(5793), 1, + STATE(5818), 1, sym_string, - STATE(5795), 1, + STATE(5822), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, + ACTIONS(6378), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241102,23 +240988,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121668] = 8, - ACTIONS(1551), 1, + [121512] = 8, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(6380), 1, + ACTIONS(6382), 1, anon_sym_unique, - ACTIONS(6434), 1, + ACTIONS(6418), 1, sym_number, - STATE(5804), 1, + STATE(5829), 1, sym_string, - STATE(5805), 1, + STATE(5831), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, + ACTIONS(6378), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -241128,13 +241014,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [121702] = 3, - ACTIONS(4304), 1, + [121546] = 3, + ACTIONS(4085), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 14, + ACTIONS(4087), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241143,226 +241029,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [121726] = 7, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6436), 1, - sym_number, + [121570] = 3, + ACTIONS(4237), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5483), 2, - sym_string, - sym_predefined_type, - ACTIONS(6376), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121758] = 4, - ACTIONS(4254), 1, + ACTIONS(4239), 14, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(6414), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [121594] = 3, + ACTIONS(4241), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4256), 13, - anon_sym_as, + ACTIONS(4243), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [121784] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6438), 1, - sym_number, - STATE(5576), 1, - sym_string, - STATE(5627), 1, - sym_predefined_type, + anon_sym_PIPE_RBRACE, + [121618] = 3, + ACTIONS(4241), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121818] = 3, - ACTIONS(4195), 1, + ACTIONS(4243), 14, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4197), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [121842] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6440), 1, - sym_number, - STATE(5548), 1, - sym_string, - STATE(5575), 1, - sym_predefined_type, + anon_sym_PIPE_RBRACE, + [121642] = 3, + ACTIONS(4241), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121876] = 3, - ACTIONS(4262), 1, + ACTIONS(4243), 14, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4264), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [121900] = 3, - ACTIONS(4266), 1, - anon_sym_EQ, + anon_sym_PIPE_RBRACE, + [121666] = 3, + ACTIONS(4249), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4268), 14, - anon_sym_as, + ACTIONS(4251), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [121924] = 8, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - ACTIONS(6380), 1, - anon_sym_unique, - ACTIONS(6442), 1, - sym_number, - STATE(5647), 1, - sym_string, - STATE(5648), 1, - sym_predefined_type, + anon_sym_PIPE_RBRACE, + [121690] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6376), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [121958] = 3, - ACTIONS(4171), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4173), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [121982] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6444), 15, + ACTIONS(6420), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241378,55 +241160,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [122004] = 3, - ACTIONS(4187), 1, - anon_sym_EQ, + [121712] = 3, + ACTIONS(4249), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4189), 14, - anon_sym_as, + ACTIONS(4251), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [122028] = 3, - ACTIONS(4191), 1, - anon_sym_EQ, + anon_sym_PIPE_RBRACE, + [121736] = 3, + ACTIONS(4249), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4193), 14, - anon_sym_as, + ACTIONS(4251), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [121760] = 3, + ACTIONS(4253), 1, anon_sym_PIPE, - anon_sym_QMARK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4255), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, anon_sym_extends, - [122052] = 3, - ACTIONS(4222), 1, + anon_sym_PIPE_RBRACE, + [121784] = 3, + ACTIONS(4257), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 14, + ACTIONS(4259), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241435,19 +241238,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122076] = 3, - ACTIONS(4226), 1, + [121808] = 3, + ACTIONS(4404), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4228), 14, + ACTIONS(4406), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241456,122 +241259,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122100] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6446), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122122] = 3, - ACTIONS(4240), 1, - anon_sym_PIPE, + [121832] = 7, + ACTIONS(1557), 1, + anon_sym_DQUOTE, + ACTIONS(1559), 1, + anon_sym_SQUOTE, + ACTIONS(6382), 1, + anon_sym_unique, + ACTIONS(6422), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122146] = 3, - ACTIONS(4244), 1, - anon_sym_PIPE, + STATE(5525), 2, + sym_string, + sym_predefined_type, + ACTIONS(6378), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [121864] = 8, + ACTIONS(1557), 1, + anon_sym_DQUOTE, + ACTIONS(1559), 1, + anon_sym_SQUOTE, + ACTIONS(6382), 1, + anon_sym_unique, + ACTIONS(6424), 1, + sym_number, + STATE(5533), 1, + sym_string, + STATE(5537), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122170] = 3, - ACTIONS(4244), 1, - anon_sym_PIPE, + ACTIONS(6378), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [121898] = 8, + ACTIONS(1557), 1, + anon_sym_DQUOTE, + ACTIONS(1559), 1, + anon_sym_SQUOTE, + ACTIONS(6382), 1, + anon_sym_unique, + ACTIONS(6426), 1, + sym_number, + STATE(5555), 1, + sym_string, + STATE(5566), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122194] = 2, + ACTIONS(6378), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [121932] = 8, + ACTIONS(1557), 1, + anon_sym_DQUOTE, + ACTIONS(1559), 1, + anon_sym_SQUOTE, + ACTIONS(6382), 1, + anon_sym_unique, + ACTIONS(6428), 1, + sym_number, + STATE(5626), 1, + sym_string, + STATE(5646), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6448), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [122216] = 3, - ACTIONS(4244), 1, + ACTIONS(6378), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [121966] = 3, + ACTIONS(4253), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 14, + ACTIONS(4255), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241586,11 +241389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122240] = 2, + [121990] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6450), 15, + ACTIONS(6430), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241606,140 +241409,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [122262] = 3, - ACTIONS(4377), 1, - anon_sym_EQ, + [122012] = 7, + ACTIONS(1557), 1, + anon_sym_DQUOTE, + ACTIONS(1559), 1, + anon_sym_SQUOTE, + ACTIONS(6382), 1, + anon_sym_unique, + ACTIONS(6432), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [122286] = 4, - ACTIONS(4236), 1, - anon_sym_EQ, - ACTIONS(6414), 1, - anon_sym_LBRACK, + STATE(5797), 2, + sym_string, + sym_predefined_type, + ACTIONS(6378), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [122044] = 8, + ACTIONS(1557), 1, + anon_sym_DQUOTE, + ACTIONS(1559), 1, + anon_sym_SQUOTE, + ACTIONS(6382), 1, + anon_sym_unique, + ACTIONS(6434), 1, + sym_number, + STATE(5808), 1, + sym_string, + STATE(5811), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [122312] = 3, - ACTIONS(4083), 1, - anon_sym_EQ, + ACTIONS(6378), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [122078] = 8, + ACTIONS(1557), 1, + anon_sym_DQUOTE, + ACTIONS(1559), 1, + anon_sym_SQUOTE, + ACTIONS(6382), 1, + anon_sym_unique, + ACTIONS(6436), 1, + sym_number, + STATE(5814), 1, + sym_string, + STATE(5820), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [122336] = 3, - ACTIONS(4149), 1, - anon_sym_EQ, + ACTIONS(6378), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [122112] = 8, + ACTIONS(1557), 1, + anon_sym_DQUOTE, + ACTIONS(1559), 1, + anon_sym_SQUOTE, + ACTIONS(6382), 1, + anon_sym_unique, + ACTIONS(6438), 1, + sym_number, + STATE(5836), 1, + sym_string, + STATE(5843), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4151), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [122360] = 3, - ACTIONS(4175), 1, - anon_sym_EQ, + ACTIONS(6378), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [122146] = 7, + ACTIONS(1557), 1, + anon_sym_DQUOTE, + ACTIONS(1559), 1, + anon_sym_SQUOTE, + ACTIONS(6382), 1, + anon_sym_unique, + ACTIONS(6440), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, + STATE(5719), 2, + sym_string, + sym_predefined_type, + ACTIONS(6378), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [122178] = 3, + ACTIONS(4292), 1, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [122384] = 3, - ACTIONS(4087), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 14, - anon_sym_as, + ACTIONS(4294), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [122408] = 3, - ACTIONS(4258), 1, + anon_sym_PIPE_RBRACE, + [122202] = 3, + ACTIONS(4296), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 14, + ACTIONS(4298), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241754,34 +241579,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122432] = 3, - ACTIONS(4199), 1, - anon_sym_EQ, + [122226] = 8, + ACTIONS(1557), 1, + anon_sym_DQUOTE, + ACTIONS(1559), 1, + anon_sym_SQUOTE, + ACTIONS(6382), 1, + anon_sym_unique, + ACTIONS(6442), 1, + sym_number, + STATE(5664), 1, + sym_string, + STATE(5870), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [122456] = 3, - ACTIONS(4258), 1, + ACTIONS(6378), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [122260] = 3, + ACTIONS(4296), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 14, + ACTIONS(4298), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241796,13 +241626,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122480] = 3, - ACTIONS(4258), 1, + [122284] = 3, + ACTIONS(4296), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 14, + ACTIONS(4298), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241817,13 +241647,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122504] = 3, - ACTIONS(4123), 1, + [122308] = 3, + ACTIONS(4300), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 14, + ACTIONS(4302), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241838,13 +241668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122528] = 3, - ACTIONS(4123), 1, + [122332] = 3, + ACTIONS(4300), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 14, + ACTIONS(4302), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241859,34 +241689,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122552] = 3, - ACTIONS(4315), 1, - anon_sym_EQ, + [122356] = 8, + ACTIONS(1557), 1, + anon_sym_DQUOTE, + ACTIONS(1559), 1, + anon_sym_SQUOTE, + ACTIONS(6382), 1, + anon_sym_unique, + ACTIONS(6444), 1, + sym_number, + STATE(5563), 1, + sym_string, + STATE(5684), 1, + sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 14, - anon_sym_as, + ACTIONS(6378), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [122390] = 3, + ACTIONS(4300), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4302), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [122576] = 3, - ACTIONS(4123), 1, + anon_sym_PIPE_RBRACE, + [122414] = 3, + ACTIONS(4308), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 14, + ACTIONS(4310), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241901,38 +241757,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122600] = 7, - ACTIONS(4077), 1, + [122438] = 3, + ACTIONS(4308), 1, anon_sym_PIPE, - ACTIONS(6352), 1, - anon_sym_LT, - ACTIONS(6452), 1, - anon_sym_DOT, - ACTIONS(6454), 1, - anon_sym_is, - STATE(3251), 1, - sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 10, + ACTIONS(4310), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122632] = 3, - ACTIONS(4274), 1, + [122462] = 3, + ACTIONS(4308), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4276), 14, + ACTIONS(4310), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -241947,13 +241799,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122656] = 3, - ACTIONS(4135), 1, + [122486] = 8, + ACTIONS(1557), 1, + anon_sym_DQUOTE, + ACTIONS(1559), 1, + anon_sym_SQUOTE, + ACTIONS(6382), 1, + anon_sym_unique, + ACTIONS(6446), 1, + sym_number, + STATE(5647), 1, + sym_string, + STATE(5648), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6378), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [122520] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6448), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [122542] = 3, + ACTIONS(4189), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 14, + ACTIONS(4191), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241962,19 +241860,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122680] = 3, - ACTIONS(4357), 1, + [122566] = 3, + ACTIONS(4203), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4359), 14, + ACTIONS(4205), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241983,19 +241881,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122704] = 3, - ACTIONS(4449), 1, + [122590] = 3, + ACTIONS(4225), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 14, + ACTIONS(4227), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242004,19 +241902,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122728] = 3, - ACTIONS(4153), 1, + [122614] = 3, + ACTIONS(4229), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4155), 14, + ACTIONS(4231), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242025,17 +241923,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122752] = 2, + [122638] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6456), 15, + ACTIONS(6450), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -242051,34 +241949,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [122774] = 3, - ACTIONS(4278), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4280), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122798] = 3, - ACTIONS(4369), 1, + [122660] = 3, + ACTIONS(4368), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4371), 14, + ACTIONS(4370), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242087,17 +241964,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122822] = 2, + [122684] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6458), 15, + ACTIONS(6452), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -242113,11 +241990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [122844] = 2, + [122706] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6460), 15, + ACTIONS(6454), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -242133,76 +242010,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [122866] = 3, - ACTIONS(4278), 1, - anon_sym_PIPE, + [122728] = 3, + ACTIONS(4455), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4457), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122890] = 3, - ACTIONS(4278), 1, anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [122752] = 3, + ACTIONS(4217), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4219), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122914] = 3, - ACTIONS(4288), 1, anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [122776] = 3, + ACTIONS(4316), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4318), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [122938] = 3, - ACTIONS(4167), 1, + [122800] = 3, + ACTIONS(4173), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4169), 14, + ACTIONS(4175), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242211,19 +242088,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122962] = 3, - ACTIONS(4095), 1, + [122824] = 3, + ACTIONS(4147), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 14, + ACTIONS(4149), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242232,82 +242109,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [122986] = 3, - ACTIONS(4288), 1, - anon_sym_PIPE, + [122848] = 3, + ACTIONS(4155), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4157), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123010] = 3, - ACTIONS(4288), 1, anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [122872] = 3, + ACTIONS(4271), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 14, - sym__automatic_semicolon, + ACTIONS(4273), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [122896] = 3, + ACTIONS(4145), 1, anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4143), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123034] = 3, - ACTIONS(4296), 1, + [122920] = 3, + ACTIONS(4165), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4167), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_extends, + [122944] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 14, - sym__automatic_semicolon, + ACTIONS(6456), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [122966] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6458), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [122988] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6460), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [123010] = 3, + ACTIONS(4400), 1, anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4402), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [123058] = 3, - ACTIONS(4270), 1, + [123034] = 3, + ACTIONS(4320), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 14, + ACTIONS(4322), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -242316,386 +242295,445 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, - [123082] = 13, - ACTIONS(2570), 1, + [123058] = 3, + ACTIONS(4253), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4255), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123082] = 14, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(6350), 1, + anon_sym_STAR, + ACTIONS(6354), 1, + anon_sym_LBRACE, ACTIONS(6462), 1, - anon_sym_EQ, + sym_identifier, + ACTIONS(6464), 1, + anon_sym_type, ACTIONS(6466), 1, - anon_sym_BANG, + anon_sym_COMMA, ACTIONS(6468), 1, - anon_sym_LPAREN, + anon_sym_from, + STATE(4331), 1, + sym_string, + STATE(4332), 1, + sym_import_require_clause, + STATE(5313), 1, + sym__import_identifier, + STATE(5369), 1, + sym_import_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5782), 2, + sym_namespace_import, + sym_named_imports, + [123127] = 13, + ACTIONS(2570), 1, + anon_sym_LT, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6474), 1, + anon_sym_BANG, + ACTIONS(6476), 1, + anon_sym_LPAREN, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6472), 1, + ACTIONS(6480), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(4313), 1, + STATE(4309), 1, sym_type_annotation, - STATE(4968), 1, + STATE(4966), 1, sym__initializer, - STATE(5324), 1, + STATE(5323), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123125] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(3451), 1, - sym_type_predicate, - STATE(5662), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6474), 2, - sym_identifier, - sym_this, - ACTIONS(217), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [123154] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(1634), 1, - sym_type_predicate, - STATE(5721), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6476), 2, - sym_identifier, - sym_this, - ACTIONS(217), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [123183] = 13, + [123170] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6480), 1, + ACTIONS(6484), 1, anon_sym_BANG, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - ACTIONS(6484), 1, + ACTIONS(6488), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(3795), 1, + STATE(3867), 1, sym__call_signature, - STATE(4247), 1, + STATE(4340), 1, sym_type_annotation, - STATE(4833), 1, + STATE(5012), 1, sym__initializer, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6478), 3, + ACTIONS(6482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123226] = 13, + [123213] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6476), 1, + anon_sym_LPAREN, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6480), 1, + ACTIONS(6492), 1, anon_sym_BANG, - ACTIONS(6486), 1, + ACTIONS(6494), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(4247), 1, + STATE(3991), 1, sym_type_annotation, - STATE(4846), 1, - sym__call_signature, - STATE(4847), 1, + STATE(4806), 1, sym__initializer, - STATE(5222), 1, + STATE(5162), 1, + sym__call_signature, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6478), 3, + ACTIONS(6490), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123269] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(1939), 1, - sym_type_predicate, - STATE(5853), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6488), 2, - sym_identifier, - sym_this, - ACTIONS(217), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [123298] = 11, + [123256] = 11, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3909), 1, + ACTIONS(3816), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(3600), 1, + STATE(3602), 1, sym_formal_parameters, - STATE(4824), 1, + STATE(4823), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(5138), 1, + STATE(5238), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 5, + ACTIONS(3819), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [123337] = 13, + [123295] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(3288), 1, anon_sym_LPAREN, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6492), 1, + ACTIONS(6484), 1, anon_sym_BANG, - ACTIONS(6494), 1, + ACTIONS(6496), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4023), 1, + STATE(4340), 1, sym_type_annotation, - STATE(4999), 1, + STATE(5090), 1, + sym__call_signature, + STATE(5093), 1, sym__initializer, - STATE(5348), 1, + STATE(5224), 1, sym_type_parameters, - STATE(5360), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6482), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123380] = 13, + [123338] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6482), 1, + anon_sym_EQ, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6498), 1, - anon_sym_BANG, + ACTIONS(6478), 1, + anon_sym_COLON, ACTIONS(6500), 1, + anon_sym_BANG, + ACTIONS(6502), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(3867), 1, - sym__call_signature, - STATE(4340), 1, + STATE(4372), 1, sym_type_annotation, - STATE(5013), 1, + STATE(5099), 1, sym__initializer, - STATE(5281), 1, + STATE(5354), 1, sym_type_parameters, + STATE(5442), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6496), 3, + ACTIONS(6498), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123423] = 13, + [123381] = 6, + ACTIONS(215), 1, + anon_sym_unique, + STATE(3271), 1, + sym_type_predicate, + STATE(5711), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6504), 2, + sym_identifier, + sym_this, + ACTIONS(217), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [123410] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6502), 1, + ACTIONS(6506), 1, anon_sym_BANG, - ACTIONS(6504), 1, + ACTIONS(6508), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(3992), 1, + STATE(4374), 1, sym_type_annotation, - STATE(4802), 1, + STATE(5106), 1, sym__initializer, - STATE(5155), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, + STATE(5448), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6498), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123466] = 11, + [123453] = 6, + ACTIONS(215), 1, + anon_sym_unique, + STATE(1635), 1, + sym_type_predicate, + STATE(5739), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6510), 2, + sym_identifier, + sym_this, + ACTIONS(217), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [123482] = 11, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3930), 1, + ACTIONS(3938), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(3600), 1, + STATE(3602), 1, sym_formal_parameters, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, - STATE(5138), 1, + STATE(5238), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 5, + ACTIONS(3819), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [123505] = 13, + [123521] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6512), 1, + anon_sym_BANG, + ACTIONS(6514), 1, + anon_sym_QMARK, + STATE(3893), 1, + sym_formal_parameters, + STATE(3937), 1, + sym_type_annotation, + STATE(5128), 1, + sym__initializer, + STATE(5354), 1, + sym_type_parameters, + STATE(5372), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6498), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [123564] = 13, + ACTIONS(2570), 1, + anon_sym_LT, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6476), 1, + anon_sym_LPAREN, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6508), 1, + ACTIONS(6516), 1, anon_sym_BANG, - ACTIONS(6510), 1, + ACTIONS(6518), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(3935), 1, + STATE(4083), 1, sym_type_annotation, - STATE(5004), 1, + STATE(4578), 1, sym__initializer, - STATE(5286), 1, + STATE(5251), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6506), 3, + ACTIONS(6498), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123548] = 13, + [123607] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - ACTIONS(6514), 1, + ACTIONS(6522), 1, anon_sym_BANG, - ACTIONS(6516), 1, + ACTIONS(6524), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(3906), 1, + STATE(3827), 1, sym__call_signature, - STATE(3987), 1, + STATE(3984), 1, sym_type_annotation, - STATE(4774), 1, + STATE(4772), 1, sym__initializer, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6512), 3, + ACTIONS(6520), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123591] = 4, - ACTIONS(4083), 1, + [123650] = 4, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(6342), 1, + ACTIONS(6346), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 12, + ACTIONS(4111), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -242703,119 +242741,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_extends, - [123616] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(3042), 1, - sym_type_predicate, - STATE(5569), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6518), 2, - sym_identifier, - sym_this, - ACTIONS(217), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [123645] = 4, - ACTIONS(4087), 1, + [123675] = 11, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(3813), 1, + anon_sym_COMMA, + ACTIONS(3865), 1, + anon_sym_RBRACE, + ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(6520), 1, - anon_sym_is, + STATE(3602), 1, + sym_formal_parameters, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, + STATE(5238), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(3819), 5, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [123670] = 13, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [123714] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6522), 1, + ACTIONS(6526), 1, anon_sym_BANG, - ACTIONS(6524), 1, + ACTIONS(6528), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(4082), 1, + STATE(3993), 1, sym_type_annotation, - STATE(4582), 1, + STATE(4814), 1, sym__initializer, - STATE(5299), 1, + STATE(5173), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6506), 3, + ACTIONS(6490), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123713] = 6, - ACTIONS(215), 1, - anon_sym_unique, - STATE(3042), 1, - sym_type_predicate, - STATE(5715), 1, - sym_predefined_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6526), 2, - sym_identifier, - sym_this, - ACTIONS(217), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [123742] = 6, + [123757] = 6, ACTIONS(215), 1, anon_sym_unique, - STATE(3229), 1, + STATE(2963), 1, sym_type_predicate, - STATE(5698), 1, + STATE(5716), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6528), 2, + ACTIONS(6530), 2, sym_identifier, sym_this, ACTIONS(217), 9, @@ -242828,570 +242827,571 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [123771] = 13, + [123786] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6532), 1, - anon_sym_BANG, ACTIONS(6534), 1, + anon_sym_BANG, + ACTIONS(6536), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(3923), 1, + STATE(3922), 1, sym_type_annotation, - STATE(4735), 1, + STATE(4652), 1, sym__initializer, - STATE(5219), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, + STATE(5360), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(6532), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123814] = 13, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6462), 1, + [123829] = 4, + ACTIONS(4091), 1, anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6538), 1, - anon_sym_BANG, - ACTIONS(6540), 1, - anon_sym_QMARK, - STATE(3895), 1, - sym_formal_parameters, - STATE(4268), 1, - sym_type_annotation, - STATE(4876), 1, - sym__initializer, - STATE(5273), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + ACTIONS(6346), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6536), 3, - sym__automatic_semicolon, + ACTIONS(4093), 12, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [123857] = 13, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6544), 1, - anon_sym_BANG, - ACTIONS(6546), 1, - anon_sym_QMARK, - STATE(3365), 1, - sym_formal_parameters, - STATE(3830), 1, - sym__call_signature, - STATE(4100), 1, - sym_type_annotation, - STATE(4636), 1, - sym__initializer, - STATE(5281), 1, - sym_type_parameters, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_extends, + [123854] = 6, + ACTIONS(4077), 1, + anon_sym_PIPE, + ACTIONS(6362), 1, + anon_sym_LT, + ACTIONS(6390), 1, + anon_sym_DOT, + STATE(3225), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6542), 3, + ACTIONS(3567), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [123900] = 11, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [123883] = 11, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3840), 1, + ACTIONS(3862), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(3600), 1, + STATE(3602), 1, sym_formal_parameters, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, - STATE(5138), 1, + STATE(5238), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 5, + ACTIONS(3819), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [123939] = 13, + [123922] = 4, + ACTIONS(4085), 1, + anon_sym_EQ, + ACTIONS(6538), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4087), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_extends, + [123947] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6482), 1, + anon_sym_EQ, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6550), 1, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6540), 1, anon_sym_BANG, - ACTIONS(6552), 1, + ACTIONS(6542), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(3834), 1, - sym__call_signature, - STATE(4293), 1, + STATE(4023), 1, sym_type_annotation, - STATE(4920), 1, + STATE(5002), 1, sym__initializer, - STATE(5281), 1, + STATE(5354), 1, sym_type_parameters, + STATE(5364), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6548), 3, + ACTIONS(6490), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123982] = 13, + [123990] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6554), 1, + ACTIONS(6486), 1, + anon_sym_LPAREN, + ACTIONS(6546), 1, anon_sym_BANG, - ACTIONS(6556), 1, + ACTIONS(6548), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(4121), 1, + STATE(3797), 1, + sym__call_signature, + STATE(4247), 1, sym_type_annotation, - STATE(4665), 1, + STATE(4833), 1, sym__initializer, - STATE(5234), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6544), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124025] = 13, + [124033] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6498), 1, + ACTIONS(6486), 1, + anon_sym_LPAREN, + ACTIONS(6552), 1, anon_sym_BANG, - ACTIONS(6558), 1, + ACTIONS(6554), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(4340), 1, - sym_type_annotation, - STATE(5092), 1, + STATE(3832), 1, sym__call_signature, - STATE(5095), 1, + STATE(4101), 1, + sym_type_annotation, + STATE(4630), 1, sym__initializer, - STATE(5222), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6496), 3, + ACTIONS(6550), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124068] = 6, - ACTIONS(3507), 1, + [124076] = 13, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(4117), 1, - anon_sym_PIPE, - ACTIONS(6560), 1, - anon_sym_DOT, - STATE(3169), 1, - sym_arguments, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6556), 1, + anon_sym_BANG, + ACTIONS(6558), 1, + anon_sym_QMARK, + STATE(3893), 1, + sym_formal_parameters, + STATE(4120), 1, + sym_type_annotation, + STATE(4660), 1, + sym__initializer, + STATE(5234), 1, + sym__call_signature, + STATE(5354), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 10, + ACTIONS(6472), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124097] = 13, + [124119] = 6, + ACTIONS(215), 1, + anon_sym_unique, + STATE(2963), 1, + sym_type_predicate, + STATE(5687), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6560), 2, + sym_identifier, + sym_this, + ACTIONS(217), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [124148] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, ACTIONS(6562), 1, anon_sym_BANG, ACTIONS(6564), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(4259), 1, + STATE(4028), 1, sym_type_annotation, - STATE(4863), 1, + STATE(5020), 1, sym__initializer, - STATE(5215), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, + STATE(5389), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6490), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124140] = 11, + [124191] = 6, + ACTIONS(215), 1, + anon_sym_unique, + STATE(1940), 1, + sym_type_predicate, + STATE(5709), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6566), 2, + sym_identifier, + sym_this, + ACTIONS(217), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [124220] = 11, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(3837), 1, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3850), 1, + ACTIONS(3847), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(3600), 1, + STATE(3602), 1, sym_formal_parameters, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, - STATE(5138), 1, + STATE(5238), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 5, + ACTIONS(3819), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [124179] = 13, + [124259] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6566), 1, + ACTIONS(6486), 1, + anon_sym_LPAREN, + ACTIONS(6570), 1, anon_sym_BANG, - ACTIONS(6568), 1, + ACTIONS(6572), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(4373), 1, + STATE(3834), 1, + sym__call_signature, + STATE(4298), 1, sym_type_annotation, - STATE(5101), 1, + STATE(4920), 1, sym__initializer, - STATE(5348), 1, + STATE(5316), 1, sym_type_parameters, - STATE(5445), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6506), 3, + ACTIONS(6568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124222] = 13, + [124302] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(3288), 1, anon_sym_LPAREN, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6570), 1, + ACTIONS(6546), 1, anon_sym_BANG, - ACTIONS(6572), 1, + ACTIONS(6574), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4270), 1, + STATE(4247), 1, sym_type_annotation, - STATE(4891), 1, - sym__initializer, - STATE(5245), 1, + STATE(4844), 1, sym__call_signature, - STATE(5348), 1, + STATE(4845), 1, + sym__initializer, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6544), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124265] = 14, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6360), 1, - anon_sym_LBRACE, - ACTIONS(6574), 1, + [124345] = 6, + ACTIONS(215), 1, + anon_sym_unique, + STATE(3392), 1, + sym_type_predicate, + STATE(5672), 1, + sym_predefined_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6576), 2, sym_identifier, - ACTIONS(6576), 1, - anon_sym_type, + sym_this, + ACTIONS(217), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [124374] = 6, + ACTIONS(3519), 1, + anon_sym_LPAREN, + ACTIONS(4117), 1, + anon_sym_PIPE, ACTIONS(6578), 1, - anon_sym_COMMA, - ACTIONS(6580), 1, - anon_sym_from, - STATE(4332), 1, - sym_string, - STATE(4333), 1, - sym_import_require_clause, - STATE(5314), 1, - sym__import_identifier, - STATE(5370), 1, - sym_import_clause, + anon_sym_DOT, + STATE(3203), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5825), 2, - sym_namespace_import, - sym_named_imports, - [124310] = 13, + ACTIONS(4119), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [124403] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, ACTIONS(6582), 1, anon_sym_BANG, ACTIONS(6584), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(3911), 1, + STATE(4266), 1, sym_type_annotation, - STATE(5102), 1, + STATE(4873), 1, sym__initializer, - STATE(5348), 1, - sym_type_parameters, - STATE(5432), 1, + STATE(5290), 1, sym__call_signature, + STATE(5354), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6580), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124353] = 13, + [124446] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, ACTIONS(6586), 1, anon_sym_BANG, ACTIONS(6588), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(4256), 1, + STATE(4257), 1, sym_type_annotation, - STATE(4831), 1, + STATE(4861), 1, sym__initializer, - STATE(5252), 1, + STATE(5215), 1, sym__call_signature, - STATE(5348), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6490), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [124396] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(3600), 1, - sym_formal_parameters, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - STATE(5138), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [124435] = 6, - ACTIONS(4077), 1, - anon_sym_PIPE, - ACTIONS(6352), 1, - anon_sym_LT, - ACTIONS(6452), 1, - anon_sym_DOT, - STATE(3251), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3567), 10, + ACTIONS(6472), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124464] = 4, - ACTIONS(4095), 1, - anon_sym_EQ, - ACTIONS(6342), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4097), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, [124489] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, ACTIONS(6590), 1, anon_sym_BANG, ACTIONS(6592), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(4377), 1, + STATE(4270), 1, sym_type_annotation, - STATE(5107), 1, + STATE(4889), 1, sym__initializer, - STATE(5348), 1, - sym_type_parameters, - STATE(5450), 1, + STATE(5247), 1, sym__call_signature, + STATE(5354), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6506), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [124532] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, ACTIONS(6594), 1, anon_sym_BANG, ACTIONS(6596), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(4027), 1, + STATE(3911), 1, sym_type_annotation, - STATE(5019), 1, + STATE(4614), 1, sym__initializer, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5390), 1, + STATE(5445), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, @@ -243403,25 +243403,25 @@ static const uint16_t ts_small_parse_table[] = { [124575] = 13, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, ACTIONS(6598), 1, anon_sym_BANG, ACTIONS(6600), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(3995), 1, + STATE(4328), 1, sym_type_annotation, - STATE(4813), 1, + STATE(4847), 1, sym__initializer, - STATE(5169), 1, + STATE(5184), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, @@ -243433,9 +243433,9 @@ static const uint16_t ts_small_parse_table[] = { [124618] = 6, ACTIONS(215), 1, anon_sym_unique, - STATE(3042), 1, + STATE(2963), 1, sym_type_predicate, - STATE(5687), 1, + STATE(5565), 1, sym_predefined_type, ACTIONS(5), 2, sym_html_comment, @@ -243453,102 +243453,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [124647] = 3, - ACTIONS(4327), 1, + [124647] = 6, + ACTIONS(4229), 1, + anon_sym_EQ, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, anon_sym_PIPE, + ACTIONS(6608), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 12, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4231), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + [124675] = 4, + ACTIONS(4360), 1, + anon_sym_EQ, + ACTIONS(6604), 1, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124669] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4362), 11, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_LT, + anon_sym_GT, anon_sym_extends, - [124689] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4290), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + [124699] = 4, + ACTIONS(1891), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(4285), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [124709] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4290), 13, + ACTIONS(4287), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124729] = 2, + anon_sym_PIPE_RBRACE, + [124723] = 3, + ACTIONS(3212), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 13, + ACTIONS(3214), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [124749] = 2, + anon_sym_PIPE_RBRACE, + [124745] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 13, + ACTIONS(4398), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243562,11 +243552,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124769] = 2, + [124765] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4298), 13, + ACTIONS(4414), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243580,11 +243570,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124789] = 2, + [124785] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4389), 13, + ACTIONS(4418), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243598,29 +243588,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124809] = 2, + [124805] = 3, + ACTIONS(4328), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4397), 13, + ACTIONS(4330), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [124829] = 2, + anon_sym_PIPE_RBRACE, + [124827] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 13, + ACTIONS(4422), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243634,86 +243625,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124849] = 10, + [124847] = 10, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6606), 1, + ACTIONS(6612), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4046), 1, + STATE(3945), 1, sym__call_signature, - STATE(4047), 1, + STATE(3988), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6604), 5, + ACTIONS(6610), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [124885] = 11, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(6340), 1, - anon_sym_DOT, - ACTIONS(6608), 1, - anon_sym_EQ, - ACTIONS(6613), 1, - anon_sym_COLON, - ACTIONS(6615), 1, - anon_sym_extends, - STATE(2995), 1, - sym_type_arguments, - STATE(4432), 1, - sym_constraint, - STATE(5334), 1, - sym_default_type, + [124883] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6610), 2, + ACTIONS(4418), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3567), 3, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - [124923] = 6, - ACTIONS(6396), 1, anon_sym_LT, - ACTIONS(6618), 1, - anon_sym_DOT, - ACTIONS(6620), 1, - anon_sym_is, - STATE(3404), 1, - sym_type_arguments, + anon_sym_extends, + [124903] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 9, + ACTIONS(4422), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [124951] = 2, + [124923] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4419), 13, + ACTIONS(4141), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243727,72 +243705,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [124971] = 6, - ACTIONS(4210), 1, - anon_sym_EQ, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4212), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [124999] = 3, - ACTIONS(3212), 1, + [124943] = 3, + ACTIONS(4332), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3214), 12, + ACTIONS(4334), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125021] = 4, - ACTIONS(1897), 1, - anon_sym_DOT, - ACTIONS(4203), 1, + [124965] = 3, + ACTIONS(4336), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 11, + ACTIONS(4338), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, - anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125045] = 2, + [124987] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4147), 13, + ACTIONS(4137), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243806,152 +243761,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125065] = 3, - ACTIONS(4300), 1, - anon_sym_PIPE, + [125007] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 12, + ACTIONS(4141), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125087] = 10, - ACTIONS(2570), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6630), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(4337), 1, - sym__call_signature, - STATE(4338), 1, - sym_type_annotation, - STATE(5222), 1, - sym_type_parameters, + anon_sym_extends, + [125027] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 5, + ACTIONS(4137), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125123] = 10, - ACTIONS(2570), 1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6634), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(4277), 1, - sym__call_signature, - STATE(4279), 1, - sym_type_annotation, - STATE(5222), 1, - sym_type_parameters, + anon_sym_extends, + [125047] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6632), 5, + ACTIONS(4153), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125159] = 2, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125067] = 3, + ACTIONS(4340), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4415), 13, + ACTIONS(4342), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [125179] = 10, + anon_sym_PIPE_RBRACE, + [125089] = 10, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6638), 1, + ACTIONS(6616), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(3946), 1, + STATE(3690), 1, sym__call_signature, - STATE(3991), 1, + STATE(4337), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6636), 5, + ACTIONS(6614), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125215] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4419), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125235] = 6, - ACTIONS(4218), 1, + [125125] = 6, + ACTIONS(4324), 1, anon_sym_EQ, - ACTIONS(6622), 1, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 9, + ACTIONS(4326), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -243959,31 +243880,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, - [125263] = 2, + anon_sym_GT, + [125153] = 3, + ACTIONS(3703), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4133), 13, + ACTIONS(3493), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [125283] = 2, + anon_sym_PIPE_RBRACE, + [125175] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4129), 13, + ACTIONS(4171), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -243997,30 +243919,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125303] = 3, - ACTIONS(4341), 1, - anon_sym_PIPE, + [125195] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 12, + ACTIONS(4153), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125325] = 2, + [125215] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4246), 13, + ACTIONS(4171), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244034,101 +243955,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125345] = 10, + [125235] = 10, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6640), 1, + ACTIONS(6620), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(3638), 1, + STATE(3641), 1, sym__call_signature, STATE(4279), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6632), 5, + ACTIONS(6618), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125381] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4246), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + [125271] = 11, + ACTIONS(6063), 1, anon_sym_LT, - anon_sym_extends, - [125401] = 3, - ACTIONS(4349), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4351), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(6344), 1, anon_sym_DOT, - anon_sym_AMP, + ACTIONS(6622), 1, + anon_sym_EQ, + ACTIONS(6627), 1, + anon_sym_COLON, + ACTIONS(6629), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125423] = 3, - ACTIONS(4353), 1, - anon_sym_PIPE, + STATE(3035), 1, + sym_type_arguments, + STATE(4427), 1, + sym_constraint, + STATE(5330), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(6624), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_GT, + ACTIONS(3567), 3, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125445] = 6, - ACTIONS(4315), 1, + anon_sym_PIPE, + [125309] = 6, + ACTIONS(4221), 1, anon_sym_EQ, - ACTIONS(6622), 1, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 9, + ACTIONS(4223), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -244136,37 +244028,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, - [125473] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4246), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125493] = 5, - ACTIONS(4399), 1, + anon_sym_GT, + [125337] = 3, + ACTIONS(3208), 1, anon_sym_PIPE, - ACTIONS(6642), 1, - anon_sym_DOT, - ACTIONS(6644), 1, - anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4401), 10, + ACTIONS(3210), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244174,59 +244044,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125519] = 10, + [125359] = 10, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6646), 1, + ACTIONS(6634), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(3683), 1, + STATE(4051), 1, sym__call_signature, - STATE(4047), 1, + STATE(4052), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6604), 5, + ACTIONS(6632), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [125555] = 3, - ACTIONS(4381), 1, - anon_sym_PIPE, + [125395] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 12, + ACTIONS(4239), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125577] = 2, + [125415] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4133), 13, + ACTIONS(4243), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244240,11 +244111,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125597] = 2, + [125435] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4129), 13, + ACTIONS(4243), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244258,50 +244129,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125617] = 3, - ACTIONS(4284), 1, - anon_sym_PIPE, + [125455] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 12, + ACTIONS(4243), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125639] = 4, - ACTIONS(4361), 1, - anon_sym_EQ, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4363), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [125663] = 2, + [125475] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 13, + ACTIONS(4251), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244315,125 +244165,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125683] = 5, - ACTIONS(4087), 1, + [125495] = 6, + ACTIONS(4435), 1, + anon_sym_EQ, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6352), 1, - anon_sym_LT, - STATE(3239), 1, - sym_type_arguments, + ACTIONS(6608), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4437), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + [125523] = 6, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(6604), 1, anon_sym_AMP, + ACTIONS(6606), 1, + anon_sym_PIPE, + ACTIONS(6608), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125709] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4441), 9, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [125729] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6648), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(3670), 1, - sym__call_signature, - STATE(3991), 1, - sym_type_annotation, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6636), 5, - sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125765] = 3, - ACTIONS(3216), 1, - anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + [125551] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3218), 12, + ACTIONS(4251), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125787] = 10, - ACTIONS(2570), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6652), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(4051), 1, - sym__call_signature, - STATE(4052), 1, - sym_type_annotation, - STATE(5222), 1, - sym_type_parameters, + anon_sym_extends, + [125571] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6650), 5, + ACTIONS(4251), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125823] = 4, - ACTIONS(1893), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(4203), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [125591] = 5, + ACTIONS(4384), 1, anon_sym_PIPE, + ACTIONS(6636), 1, + anon_sym_DOT, + ACTIONS(6638), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 11, + ACTIONS(4386), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -244442,14 +244264,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [125847] = 2, + [125617] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 13, + ACTIONS(4255), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244463,55 +244284,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125867] = 6, - ACTIONS(4421), 1, - anon_sym_EQ, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4423), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [125895] = 6, - ACTIONS(4425), 1, - anon_sym_EQ, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4427), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [125923] = 2, + [125637] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4260), 13, + ACTIONS(4255), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244525,30 +244302,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125943] = 3, - ACTIONS(3687), 1, - anon_sym_PIPE, + [125657] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3487), 12, + ACTIONS(4294), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [125965] = 2, + [125677] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 13, + ACTIONS(4298), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244562,30 +244338,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [125985] = 3, - ACTIONS(3208), 1, - anon_sym_PIPE, + [125697] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3210), 12, + ACTIONS(4298), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126007] = 2, + [125717] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 13, + ACTIONS(4298), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244599,50 +244374,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [126027] = 4, - ACTIONS(4157), 1, - anon_sym_EQ, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4159), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_extends, - [126051] = 3, - ACTIONS(3703), 1, - anon_sym_PIPE, + [125737] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 12, + ACTIONS(4302), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126073] = 2, + [125757] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4125), 13, + ACTIONS(4302), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244656,11 +244410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [126093] = 2, + [125777] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4165), 13, + ACTIONS(4302), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244674,33 +244428,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [126113] = 6, - ACTIONS(4226), 1, - anon_sym_EQ, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4228), 9, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [126141] = 2, + [125797] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4242), 13, + ACTIONS(4310), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244714,11 +244446,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [126161] = 2, + [125817] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4276), 13, + ACTIONS(4310), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244732,11 +244464,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [126181] = 2, + [125837] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 13, + ACTIONS(4310), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -244750,148 +244482,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [126201] = 4, - ACTIONS(4248), 1, - anon_sym_EQ, - ACTIONS(6654), 1, - anon_sym_extends, + [125857] = 10, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6640), 1, + anon_sym_QMARK, + STATE(3317), 1, + sym_formal_parameters, + STATE(4335), 1, + sym__call_signature, + STATE(4337), 1, + sym_type_annotation, + STATE(5224), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 11, - anon_sym_LBRACE, + ACTIONS(6614), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [125893] = 10, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(6642), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - [126225] = 5, - ACTIONS(3509), 1, - anon_sym_DOT, - ACTIONS(3513), 1, - anon_sym_QMARK_DOT, - ACTIONS(3517), 1, - anon_sym_PIPE, + ACTIONS(6644), 1, + anon_sym_QMARK, + STATE(3317), 1, + sym_formal_parameters, + STATE(3615), 1, + sym__call_signature, + STATE(4052), 1, + sym_type_annotation, + STATE(5224), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3505), 10, + ACTIONS(6632), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [126251] = 2, + [125929] = 3, + ACTIONS(3216), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4280), 13, + ACTIONS(3218), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [126271] = 10, + anon_sym_PIPE_RBRACE, + [125951] = 10, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(6656), 1, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6658), 1, + ACTIONS(6648), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(3613), 1, + STATE(4045), 1, sym__call_signature, - STATE(4052), 1, + STATE(4046), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6650), 5, + ACTIONS(6646), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [126307] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4280), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [126327] = 10, + [125987] = 10, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6660), 1, + ACTIONS(6650), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(3690), 1, + STATE(4278), 1, sym__call_signature, - STATE(4338), 1, + STATE(4279), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6628), 5, + ACTIONS(6618), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [126363] = 6, - ACTIONS(4319), 1, + [126023] = 3, + ACTIONS(4133), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4131), 12, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(6622), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(6624), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126045] = 3, + ACTIONS(4312), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4314), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126067] = 4, + ACTIONS(4207), 1, + anon_sym_EQ, + ACTIONS(6652), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4321), 9, + ACTIONS(4209), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -244899,350 +244659,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_EQ_GT, - [126391] = 2, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + [126091] = 6, + ACTIONS(6400), 1, + anon_sym_LT, + ACTIONS(6654), 1, + anon_sym_DOT, + ACTIONS(6656), 1, + anon_sym_is, + STATE(3383), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4147), 13, + ACTIONS(3567), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [126411] = 2, + [126119] = 6, + ACTIONS(4304), 1, + anon_sym_EQ, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, + anon_sym_PIPE, + ACTIONS(6608), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1921), 12, - anon_sym_as, + ACTIONS(4306), 9, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AMP, + anon_sym_EQ_GT, + anon_sym_GT, + [126147] = 3, + ACTIONS(4245), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_extends, - [126430] = 9, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3307), 1, - sym_formal_parameters, - STATE(3693), 1, - sym__call_signature, - STATE(4106), 1, - sym_type_annotation, - STATE(5222), 1, - sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6662), 5, + ACTIONS(4247), 12, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [126463] = 9, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, + [126169] = 4, + ACTIONS(4159), 1, + anon_sym_EQ, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4161), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - STATE(3307), 1, - sym_formal_parameters, - STATE(3682), 1, - sym__call_signature, - STATE(4043), 1, - sym_type_annotation, - STATE(5222), 1, - sym_type_parameters, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_extends, + [126193] = 5, + ACTIONS(4085), 1, + anon_sym_PIPE, + ACTIONS(6362), 1, + anon_sym_LT, + STATE(3256), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6664), 5, + ACTIONS(4087), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [126496] = 3, - ACTIONS(4185), 1, + [126219] = 6, + ACTIONS(4177), 1, + anon_sym_EQ, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, + anon_sym_PIPE, + ACTIONS(6608), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4179), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_GT, + [126247] = 3, + ACTIONS(3691), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 11, + ACTIONS(3491), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126517] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6482), 1, - anon_sym_LPAREN, - STATE(3365), 1, - sym_formal_parameters, - STATE(3869), 1, - sym__call_signature, - STATE(4341), 1, - sym_type_annotation, - STATE(5026), 1, - sym__initializer, - STATE(5281), 1, - sym_type_parameters, + [126269] = 4, + ACTIONS(1887), 1, + anon_sym_DOT, + ACTIONS(4285), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(4287), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126554] = 9, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126293] = 10, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3307), 1, + ACTIONS(6658), 1, + anon_sym_QMARK, + STATE(3317), 1, sym_formal_parameters, - STATE(4042), 1, + STATE(3684), 1, sym__call_signature, - STATE(4043), 1, + STATE(4046), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6664), 5, + ACTIONS(6646), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [126587] = 9, + [126329] = 10, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3307), 1, + ACTIONS(6660), 1, + anon_sym_QMARK, + STATE(3317), 1, sym_formal_parameters, - STATE(3671), 1, + STATE(3672), 1, sym__call_signature, - STATE(4026), 1, + STATE(3988), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6668), 5, + ACTIONS(6610), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [126620] = 3, - ACTIONS(3316), 1, + [126365] = 5, + ACTIONS(3521), 1, + anon_sym_DOT, + ACTIONS(3525), 1, + anon_sym_QMARK_DOT, + ACTIONS(3527), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3318), 11, + ACTIONS(3517), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126641] = 3, - ACTIONS(4323), 1, - anon_sym_PIPE, + [126391] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4325), 11, + ACTIONS(4255), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126662] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3307), 1, - sym_formal_parameters, - STATE(4341), 1, - sym_type_annotation, - STATE(5059), 1, - sym__call_signature, - STATE(5078), 1, - sym__initializer, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6666), 3, - sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [126699] = 8, - ACTIONS(3537), 1, - anon_sym_DOT, - ACTIONS(3539), 1, - anon_sym_QMARK_DOT, - ACTIONS(6670), 1, - anon_sym_LPAREN, - ACTIONS(6672), 1, - anon_sym_LT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3505), 6, - anon_sym_as, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126730] = 8, - ACTIONS(6336), 1, anon_sym_DOT, - ACTIONS(6338), 1, anon_sym_QMARK_DOT, - ACTIONS(6670), 1, - anon_sym_LPAREN, - ACTIONS(6672), 1, - anon_sym_LT, - STATE(2935), 1, - sym_arguments, - STATE(2964), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4065), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [126761] = 12, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6360), 1, - anon_sym_LBRACE, - ACTIONS(6574), 1, - sym_identifier, - ACTIONS(6576), 1, - anon_sym_type, - STATE(4332), 1, - sym_string, - STATE(4333), 1, - sym_import_require_clause, - STATE(5314), 1, - sym__import_identifier, - STATE(5370), 1, - sym_import_clause, + [126411] = 7, + ACTIONS(3813), 1, + anon_sym_COMMA, + ACTIONS(3865), 1, + anon_sym_RBRACE, + ACTIONS(4593), 1, + anon_sym_EQ, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5825), 2, - sym_namespace_import, - sym_named_imports, - [126800] = 8, - ACTIONS(6332), 1, - anon_sym_DOT, - ACTIONS(6334), 1, - anon_sym_QMARK_DOT, - ACTIONS(6670), 1, + ACTIONS(3819), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(6672), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(2922), 1, - sym_arguments, - STATE(2966), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4059), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [126831] = 4, - ACTIONS(4083), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [126440] = 4, + ACTIONS(4085), 1, anon_sym_PIPE, - ACTIONS(6454), 1, + ACTIONS(6662), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 10, + ACTIONS(4087), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245253,153 +244960,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [126854] = 11, + [126463] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6482), 1, + anon_sym_EQ, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3365), 1, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(3893), 1, sym_formal_parameters, - STATE(3880), 1, - sym__call_signature, - STATE(4354), 1, + STATE(4043), 1, sym_type_annotation, - STATE(5044), 1, + STATE(5118), 1, sym__initializer, - STATE(5281), 1, + STATE(5354), 1, sym_type_parameters, + STATE(5432), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6664), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126891] = 11, + [126500] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(4044), 1, + STATE(3924), 1, sym_type_annotation, - STATE(5121), 1, + STATE(4799), 1, sym__initializer, - STATE(5348), 1, - sym_type_parameters, - STATE(5423), 1, + STATE(5151), 1, sym__call_signature, + STATE(5354), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6676), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126928] = 11, + [126537] = 9, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4358), 1, + STATE(4324), 1, + sym__call_signature, + STATE(4325), 1, sym_type_annotation, - STATE(5050), 1, - sym__initializer, - STATE(5348), 1, + STATE(5224), 1, sym_type_parameters, - STATE(5429), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6668), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [126965] = 11, + anon_sym_PIPE_RBRACE, + [126570] = 9, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6482), 1, + ACTIONS(3288), 1, anon_sym_LPAREN, - STATE(3365), 1, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(3317), 1, sym_formal_parameters, - STATE(3803), 1, + STATE(4041), 1, sym__call_signature, - STATE(4254), 1, + STATE(4042), 1, sym_type_annotation, - STATE(4852), 1, - sym__initializer, - STATE(5281), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6670), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127002] = 9, + anon_sym_PIPE_RBRACE, + [126603] = 9, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(3994), 1, + STATE(3992), 1, sym__call_signature, - STATE(4026), 1, + STATE(4027), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6668), 5, + ACTIONS(6672), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127035] = 11, + [126636] = 8, + ACTIONS(6332), 1, + anon_sym_DOT, + ACTIONS(6334), 1, + anon_sym_QMARK_DOT, + ACTIONS(6674), 1, + anon_sym_LPAREN, + ACTIONS(6676), 1, + anon_sym_LT, + STATE(2927), 1, + sym_arguments, + STATE(3033), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4059), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [126667] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(3909), 1, + STATE(4316), 1, sym_type_annotation, - STATE(4560), 1, + STATE(4983), 1, sym__initializer, - STATE(5348), 1, - sym_type_parameters, - STATE(5359), 1, + STATE(5346), 1, sym__call_signature, + STATE(5354), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -245407,13 +245133,32 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127072] = 3, - ACTIONS(3398), 1, + [126704] = 4, + ACTIONS(4109), 1, + anon_sym_PIPE, + ACTIONS(6392), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4111), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [126727] = 3, + ACTIONS(3400), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3400), 11, + ACTIONS(3402), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -245425,415 +245170,395 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127093] = 11, + [126748] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(3925), 1, + STATE(4081), 1, sym_type_annotation, - STATE(4791), 1, + STATE(4584), 1, sym__initializer, - STATE(5141), 1, + STATE(5302), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [127130] = 4, - ACTIONS(4087), 1, - anon_sym_PIPE, - ACTIONS(6682), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4089), 10, + ACTIONS(6666), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127153] = 8, + [126785] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(4593), 1, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(3600), 1, + ACTIONS(6476), 1, + anon_sym_LPAREN, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(3893), 1, sym_formal_parameters, - STATE(5138), 1, + STATE(4014), 1, + sym_type_annotation, + STATE(4932), 1, + sym__initializer, + STATE(5275), 1, + sym__call_signature, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4071), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3843), 5, + ACTIONS(6680), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, + [126822] = 11, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6476), 1, + anon_sym_LPAREN, + ACTIONS(6478), 1, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [127184] = 4, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(6454), 1, - anon_sym_is, + STATE(3893), 1, + sym_formal_parameters, + STATE(3910), 1, + sym_type_annotation, + STATE(4534), 1, + sym__initializer, + STATE(5312), 1, + sym__call_signature, + STATE(5354), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 10, + ACTIONS(6666), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [127207] = 9, + [126859] = 9, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4326), 1, + STATE(4103), 1, sym__call_signature, - STATE(4328), 1, + STATE(4104), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6684), 5, + ACTIONS(6682), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127240] = 9, + [126892] = 9, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(3640), 1, + STATE(3689), 1, sym__call_signature, - STATE(4284), 1, + STATE(4325), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 5, + ACTIONS(6668), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127273] = 11, + [126925] = 9, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4287), 1, - sym_type_annotation, - STATE(4909), 1, - sym__initializer, - STATE(5266), 1, + STATE(3693), 1, sym__call_signature, - STATE(5348), 1, + STATE(4104), 1, + sym_type_annotation, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [127310] = 3, - ACTIONS(3392), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3394), 11, + ACTIONS(6682), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [127331] = 11, + [126958] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3895), 1, + ACTIONS(6486), 1, + anon_sym_LPAREN, + STATE(3364), 1, sym_formal_parameters, - STATE(4316), 1, + STATE(3879), 1, + sym__call_signature, + STATE(4352), 1, sym_type_annotation, - STATE(4975), 1, + STATE(5043), 1, sym__initializer, - STATE(5336), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6684), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127368] = 11, + [126995] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3895), 1, + ACTIONS(6486), 1, + anon_sym_LPAREN, + STATE(3364), 1, sym_formal_parameters, - STATE(4086), 1, + STATE(3869), 1, + sym__call_signature, + STATE(4341), 1, sym_type_annotation, - STATE(4590), 1, + STATE(5023), 1, sym__initializer, - STATE(5311), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127405] = 11, + [127032] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(4016), 1, + STATE(4114), 1, sym_type_annotation, - STATE(4918), 1, + STATE(4649), 1, sym__initializer, - STATE(5257), 1, + STATE(5205), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127442] = 9, + [127069] = 11, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4283), 1, - sym__call_signature, - STATE(4284), 1, + STATE(4341), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5060), 1, + sym__call_signature, + STATE(5077), 1, + sym__initializer, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6686), 5, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127475] = 9, + [127106] = 9, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4105), 1, + STATE(4283), 1, sym__call_signature, - STATE(4106), 1, + STATE(4284), 1, sym_type_annotation, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6662), 5, + ACTIONS(6688), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [127508] = 9, + [127139] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3307), 1, + ACTIONS(6486), 1, + anon_sym_LPAREN, + STATE(3364), 1, sym_formal_parameters, - STATE(3689), 1, + STATE(3778), 1, sym__call_signature, - STATE(4328), 1, + STATE(4210), 1, sym_type_annotation, - STATE(5222), 1, + STATE(4817), 1, + sym__initializer, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6684), 5, + ACTIONS(6690), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127541] = 11, + [127176] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6482), 1, + anon_sym_EQ, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3365), 1, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(3893), 1, sym_formal_parameters, - STATE(3818), 1, - sym__call_signature, - STATE(4096), 1, + STATE(4122), 1, sym_type_annotation, - STATE(4624), 1, + STATE(4667), 1, sym__initializer, - STATE(5281), 1, + STATE(5250), 1, + sym__call_signature, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6692), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127578] = 7, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3847), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, + [127213] = 12, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(6350), 1, + anon_sym_STAR, + ACTIONS(6354), 1, + anon_sym_LBRACE, + ACTIONS(6462), 1, + sym_identifier, + ACTIONS(6464), 1, + anon_sym_type, + STATE(4331), 1, + sym_string, + STATE(4332), 1, + sym_import_require_clause, + STATE(5313), 1, + sym__import_identifier, + STATE(5369), 1, + sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [127607] = 11, + STATE(5782), 2, + sym_namespace_import, + sym_named_imports, + [127252] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6482), 1, + anon_sym_EQ, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3365), 1, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(3893), 1, sym_formal_parameters, - STATE(3772), 1, - sym__call_signature, - STATE(4206), 1, + STATE(4357), 1, sym_type_annotation, - STATE(4793), 1, + STATE(5049), 1, sym__initializer, - STATE(5281), 1, + STATE(5354), 1, sym_type_parameters, + STATE(5427), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127644] = 5, - ACTIONS(6390), 1, + [127289] = 5, + ACTIONS(6394), 1, anon_sym_LPAREN, - ACTIONS(6696), 1, + ACTIONS(6692), 1, anon_sym_DOT, - STATE(3297), 1, + STATE(3301), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, @@ -245848,111 +245573,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127669] = 11, + [127314] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3895), 1, - sym_formal_parameters, - STATE(4118), 1, - sym_type_annotation, - STATE(4660), 1, - sym__initializer, - STATE(5205), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6688), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [127706] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6462), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(4123), 1, + STATE(4031), 1, sym_type_annotation, - STATE(4672), 1, + STATE(5109), 1, sym__initializer, - STATE(5246), 1, - sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, + STATE(5438), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6680), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127743] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3895), 1, - sym_formal_parameters, - STATE(4318), 1, - sym_type_annotation, - STATE(4984), 1, - sym__initializer, - STATE(5343), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + [127351] = 3, + ACTIONS(4113), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(4115), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [127780] = 7, - ACTIONS(3837), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4824), 1, - aux_sym_object_repeat1, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_is, anon_sym_PIPE_RBRACE, - [127809] = 2, + [127372] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1925), 12, + ACTIONS(1743), 12, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -245965,45 +245634,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [127828] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3895), 1, - sym_formal_parameters, - STATE(4033), 1, - sym_type_annotation, - STATE(5117), 1, - sym__initializer, - STATE(5348), 1, - sym_type_parameters, - STATE(5412), 1, - sym__call_signature, + [127391] = 3, + ACTIONS(4215), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(4213), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [127865] = 8, - ACTIONS(3550), 1, - anon_sym_COLON, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(6340), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6698), 1, - anon_sym_QMARK, - STATE(2995), 1, - sym_type_arguments, - STATE(5200), 1, - sym_type_annotation, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127412] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1747), 12, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [127431] = 8, + ACTIONS(3550), 1, + anon_sym_COLON, + ACTIONS(6063), 1, + anon_sym_LT, + ACTIONS(6344), 1, + anon_sym_DOT, + ACTIONS(6694), 1, + anon_sym_QMARK, + STATE(3035), 1, + sym_type_arguments, + STATE(5200), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -246014,13 +245692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [127896] = 3, - ACTIONS(1779), 1, + [127462] = 3, + ACTIONS(1767), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 11, + ACTIONS(1765), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246032,15 +245710,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_is, anon_sym_PIPE_RBRACE, - [127917] = 4, - ACTIONS(4453), 1, + [127483] = 11, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6476), 1, + anon_sym_LPAREN, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(3893), 1, + sym_formal_parameters, + STATE(4313), 1, + sym_type_annotation, + STATE(4975), 1, + sym__initializer, + STATE(5337), 1, + sym__call_signature, + STATE(5354), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6678), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [127520] = 8, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(4593), 1, + anon_sym_EQ, + STATE(3602), 1, + sym_formal_parameters, + STATE(5238), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4065), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3819), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [127551] = 4, + ACTIONS(4261), 1, anon_sym_PIPE, - ACTIONS(6701), 1, + ACTIONS(6697), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4455), 10, + ACTIONS(4263), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246051,21 +245778,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [127940] = 7, - ACTIONS(3837), 1, + [127574] = 7, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3850), 1, + ACTIONS(3862), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -246073,21 +245800,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [127969] = 7, - ACTIONS(3837), 1, + [127603] = 7, + ACTIONS(3813), 1, anon_sym_COMMA, - ACTIONS(3840), 1, + ACTIONS(3938), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -246095,21 +245822,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [127998] = 7, - ACTIONS(3837), 1, + [127632] = 4, + ACTIONS(4091), 1, + anon_sym_PIPE, + ACTIONS(6392), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4093), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3930), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127655] = 7, + ACTIONS(3813), 1, + anon_sym_COMMA, + ACTIONS(3847), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, + ACTIONS(3819), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -246117,108 +245863,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [128027] = 3, - ACTIONS(4099), 1, + [127684] = 3, + ACTIONS(3368), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 11, + ACTIONS(3370), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, - anon_sym_is, anon_sym_PIPE_RBRACE, - [128048] = 11, + [127705] = 3, + ACTIONS(4275), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4277), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [127726] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(4253), 1, + STATE(4265), 1, sym_type_annotation, - STATE(4844), 1, + STATE(5137), 1, sym__initializer, - STATE(5197), 1, + STATE(5225), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128085] = 11, + [127763] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6486), 1, + anon_sym_LPAREN, + STATE(3364), 1, + sym_formal_parameters, + STATE(3804), 1, + sym__call_signature, + STATE(4254), 1, + sym_type_annotation, + STATE(4851), 1, + sym__initializer, + STATE(5316), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6699), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [127800] = 8, + ACTIONS(3537), 1, + anon_sym_DOT, + ACTIONS(3539), 1, + anon_sym_QMARK_DOT, + ACTIONS(6674), 1, + anon_sym_LPAREN, + ACTIONS(6676), 1, + anon_sym_LT, + STATE(2936), 1, + sym_arguments, + STATE(3032), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3517), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [127831] = 11, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, anon_sym_LPAREN, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4267), 1, + STATE(4210), 1, sym_type_annotation, - STATE(4877), 1, - sym__initializer, - STATE(5228), 1, + STATE(5022), 1, sym__call_signature, - STATE(5348), 1, + STATE(5024), 1, + sym__initializer, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128122] = 11, + [127868] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6462), 1, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(3893), 1, + sym_formal_parameters, + STATE(4249), 1, + sym_type_annotation, + STATE(4835), 1, + sym__initializer, + STATE(5191), 1, + sym__call_signature, + STATE(5354), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [127905] = 11, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6470), 1, anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6486), 1, + anon_sym_LPAREN, + STATE(3364), 1, + sym_formal_parameters, + STATE(3824), 1, + sym__call_signature, + STATE(4098), 1, + sym_type_annotation, + STATE(4620), 1, + sym__initializer, + STATE(5316), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6703), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [127942] = 8, + ACTIONS(6336), 1, + anon_sym_DOT, + ACTIONS(6338), 1, + anon_sym_QMARK_DOT, + ACTIONS(6674), 1, + anon_sym_LPAREN, + ACTIONS(6676), 1, + anon_sym_LT, + STATE(2922), 1, + sym_arguments, + STATE(3034), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4073), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [127973] = 11, + ACTIONS(2570), 1, + anon_sym_LT, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6476), 1, + anon_sym_LPAREN, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3307), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(4206), 1, + STATE(4286), 1, sym_type_annotation, - STATE(5014), 1, + STATE(4906), 1, + sym__initializer, + STATE(5272), 1, sym__call_signature, - STATE(5025), 1, + STATE(5354), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6678), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [128010] = 11, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6476), 1, + anon_sym_LPAREN, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(3893), 1, + sym_formal_parameters, + STATE(4082), 1, + sym_type_annotation, + STATE(4776), 1, sym__initializer, - STATE(5222), 1, + STATE(5354), 1, sym_type_parameters, + STATE(5431), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6680), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128159] = 5, - ACTIONS(6396), 1, + [128047] = 5, + ACTIONS(6400), 1, anon_sym_LT, - ACTIONS(6618), 1, + ACTIONS(6654), 1, anon_sym_DOT, - STATE(3404), 1, + STATE(3383), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, @@ -246233,82 +246147,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128184] = 11, + [128072] = 9, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(3976), 1, - sym_type_annotation, - STATE(4581), 1, - sym__initializer, - STATE(5175), 1, + STATE(3683), 1, sym__call_signature, - STATE(5348), 1, + STATE(4042), 1, + sym_type_annotation, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6670), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [128221] = 11, + anon_sym_PIPE_RBRACE, + [128105] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, STATE(3918), 1, sym_type_annotation, - STATE(4642), 1, + STATE(4694), 1, sym__initializer, - STATE(5348), 1, + STATE(5273), 1, + sym__call_signature, + STATE(5354), 1, sym_type_parameters, - STATE(5468), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6680), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [128142] = 9, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(3317), 1, + sym_formal_parameters, + STATE(3643), 1, sym__call_signature, + STATE(4284), 1, + sym_type_annotation, + STATE(5224), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6688), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [128258] = 4, - ACTIONS(4031), 1, + anon_sym_PIPE_RBRACE, + [128175] = 4, + ACTIONS(3967), 1, anon_sym_LPAREN, STATE(1671), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 10, + ACTIONS(4457), 10, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, anon_sym_QMARK, anon_sym_extends, + [128198] = 9, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(3317), 1, + sym_formal_parameters, + STATE(3673), 1, + sym__call_signature, + STATE(4027), 1, + sym_type_annotation, + STATE(5224), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6672), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [128231] = 3, + ACTIONS(3336), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3338), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [128252] = 7, + ACTIONS(3813), 1, + anon_sym_COMMA, + ACTIONS(3816), 1, + anon_sym_RBRACE, + ACTIONS(4593), 1, + anon_sym_EQ, + STATE(4823), 1, + aux_sym_object_repeat1, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3819), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, [128281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4383), 11, + ACTIONS(3210), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246320,30 +246320,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128299] = 3, - ACTIONS(4409), 1, + [128299] = 5, + ACTIONS(4199), 1, anon_sym_PIPE, + ACTIONS(6705), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4411), 10, + ACTIONS(4201), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(4195), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128319] = 3, - ACTIONS(4304), 1, + [128323] = 3, + ACTIONS(2374), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 10, + ACTIONS(2372), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246354,17 +246356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128339] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6707), 1, + [128343] = 4, + ACTIONS(4207), 1, anon_sym_PIPE, - ACTIONS(6709), 1, + ACTIONS(6707), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4321), 8, + ACTIONS(4209), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246372,14 +246372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE_RBRACE, - [128363] = 3, - ACTIONS(4357), 1, + [128365] = 3, + ACTIONS(4173), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4359), 10, + ACTIONS(4175), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246390,15 +246391,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128383] = 4, - ACTIONS(4361), 1, - anon_sym_PIPE, - ACTIONS(6705), 1, + [128385] = 5, + ACTIONS(6709), 1, anon_sym_AMP, + ACTIONS(6711), 1, + anon_sym_PIPE, + ACTIONS(6713), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 9, + ACTIONS(4437), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246406,31 +246409,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128405] = 2, + [128409] = 4, + ACTIONS(4233), 1, + anon_sym_PIPE, + ACTIONS(6705), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4286), 11, + ACTIONS(4235), 9, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [128423] = 3, - ACTIONS(4369), 1, + anon_sym_PIPE_RBRACE, + [128431] = 3, + ACTIONS(4344), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4371), 10, + ACTIONS(4346), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246441,13 +246445,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128443] = 3, - ACTIONS(4095), 1, + [128451] = 3, + ACTIONS(4400), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 10, + ACTIONS(4402), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246458,62 +246462,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128463] = 3, - ACTIONS(1893), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4205), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + [128471] = 5, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(4455), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [128483] = 2, + STATE(1671), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4302), 11, + ACTIONS(4457), 8, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [128501] = 2, + anon_sym_PIPE_RBRACE, + [128495] = 3, + ACTIONS(2382), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3218), 11, + ACTIONS(2380), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [128519] = 3, - ACTIONS(4153), 1, + anon_sym_PIPE_RBRACE, + [128515] = 3, + ACTIONS(4316), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4155), 10, + ACTIONS(4318), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246524,33 +246515,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128539] = 2, + [128535] = 3, + ACTIONS(1887), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3487), 11, + ACTIONS(4287), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [128557] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6707), 1, + [128555] = 3, + ACTIONS(2386), 1, anon_sym_PIPE, - ACTIONS(6709), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 8, + ACTIONS(2384), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246558,30 +246546,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [128581] = 2, + [128575] = 3, + ACTIONS(4147), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 11, + ACTIONS(4149), 10, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [128599] = 3, - ACTIONS(2382), 1, + [128595] = 11, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(6715), 1, + sym_identifier, + ACTIONS(6717), 1, + anon_sym_type, + ACTIONS(6719), 1, + anon_sym_COMMA, + ACTIONS(6721), 1, + anon_sym_RBRACE, + ACTIONS(6723), 1, + anon_sym_typeof, + STATE(4990), 1, + sym_import_specifier, + STATE(5429), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5689), 2, + sym__module_export_name, + sym_string, + [128631] = 3, + ACTIONS(4189), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2380), 10, + ACTIONS(4191), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246592,15 +246608,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128619] = 4, - ACTIONS(4157), 1, + [128651] = 3, + ACTIONS(4203), 1, anon_sym_PIPE, - ACTIONS(6705), 1, - anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 9, + ACTIONS(4205), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246608,15 +246622,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128641] = 3, - ACTIONS(4308), 1, + [128671] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4247), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [128689] = 3, + ACTIONS(4368), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 10, + ACTIONS(4370), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246627,11 +246658,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128661] = 2, + [128709] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3210), 11, + ACTIONS(3214), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246643,29 +246674,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128679] = 2, + [128727] = 3, + ACTIONS(4376), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3489), 11, + ACTIONS(4378), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [128747] = 3, + ACTIONS(4091), 1, anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4093), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, - [128697] = 3, - ACTIONS(4167), 1, + anon_sym_PIPE_RBRACE, + [128767] = 3, + ACTIONS(4123), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4169), 10, + ACTIONS(4125), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246676,13 +246725,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128717] = 3, - ACTIONS(1897), 1, + [128787] = 3, + ACTIONS(1891), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 10, + ACTIONS(4287), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246693,13 +246742,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [128737] = 3, - ACTIONS(2378), 1, + [128807] = 3, + ACTIONS(4304), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2376), 10, + ACTIONS(4306), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246710,27 +246759,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128757] = 2, + [128827] = 3, + ACTIONS(4155), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4329), 11, + ACTIONS(4157), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [128775] = 2, + anon_sym_PIPE_RBRACE, + [128847] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4343), 11, + ACTIONS(4330), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -246742,30 +246792,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128793] = 3, - ACTIONS(4171), 1, - anon_sym_PIPE, + [128865] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4173), 10, + ACTIONS(4131), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [128813] = 3, - ACTIONS(4292), 1, + [128883] = 3, + ACTIONS(4199), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 10, + ACTIONS(4201), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246776,49 +246825,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128833] = 2, + [128903] = 4, + ACTIONS(4199), 1, + anon_sym_PIPE, + ACTIONS(6705), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4351), 11, + ACTIONS(4201), 9, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [128851] = 6, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(6340), 1, - anon_sym_DOT, - ACTIONS(6711), 1, - anon_sym_is, - STATE(2995), 1, - sym_type_arguments, + anon_sym_PIPE_RBRACE, + [128925] = 3, + ACTIONS(4085), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 7, + ACTIONS(4087), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [128877] = 3, - ACTIONS(4195), 1, + anon_sym_PIPE_RBRACE, + [128945] = 3, + ACTIONS(4404), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4197), 10, + ACTIONS(4406), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246829,55 +246877,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [128897] = 4, - ACTIONS(6396), 1, - anon_sym_LT, - STATE(3354), 1, - sym_type_arguments, + [128965] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 9, + ACTIONS(3218), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [128919] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3600), 1, - sym_formal_parameters, - STATE(5138), 1, - sym_type_parameters, + [128983] = 4, + ACTIONS(4159), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 7, + ACTIONS(4161), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [128945] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6707), 1, + [129005] = 3, + ACTIONS(4271), 1, anon_sym_PIPE, - ACTIONS(6709), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 8, + ACTIONS(4273), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246885,14 +246925,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [128969] = 3, - ACTIONS(4345), 1, + [129025] = 5, + ACTIONS(6709), 1, + anon_sym_AMP, + ACTIONS(6711), 1, anon_sym_PIPE, + ACTIONS(6713), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 10, + ACTIONS(4179), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246900,54 +246946,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [128989] = 5, - ACTIONS(4236), 1, + [129049] = 5, + ACTIONS(6709), 1, + anon_sym_AMP, + ACTIONS(6711), 1, anon_sym_PIPE, ACTIONS(6713), 1, - anon_sym_LBRACK, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(4232), 7, + ACTIONS(4223), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [129013] = 3, - ACTIONS(4391), 1, - anon_sym_PIPE, + [129073] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 10, + ACTIONS(3819), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [129033] = 4, - ACTIONS(4248), 1, + [129091] = 5, + ACTIONS(6709), 1, + anon_sym_AMP, + ACTIONS(6711), 1, anon_sym_PIPE, - ACTIONS(6715), 1, + ACTIONS(6713), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 9, + ACTIONS(4441), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246955,15 +247000,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_PIPE_RBRACE, - [129055] = 3, - ACTIONS(4149), 1, + [129115] = 3, + ACTIONS(4225), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4151), 10, + ACTIONS(4227), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -246974,63 +247018,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129075] = 3, - ACTIONS(4187), 1, - anon_sym_PIPE, + [129135] = 6, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + STATE(3602), 1, + sym_formal_parameters, + STATE(5238), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4189), 10, + ACTIONS(3819), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [129095] = 2, + [129161] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3214), 11, + ACTIONS(3493), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129113] = 3, - ACTIONS(4191), 1, - anon_sym_PIPE, + [129179] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4193), 10, + ACTIONS(4334), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129133] = 3, - ACTIONS(4175), 1, + [129197] = 4, + ACTIONS(4360), 1, anon_sym_PIPE, + ACTIONS(6709), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 10, + ACTIONS(4362), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247038,51 +247086,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129153] = 4, - ACTIONS(4254), 1, + [129219] = 3, + ACTIONS(2390), 1, anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4256), 9, + ACTIONS(2388), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129175] = 3, - ACTIONS(4365), 1, - anon_sym_PIPE, + [129239] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 10, + ACTIONS(4338), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129195] = 3, - ACTIONS(4262), 1, + [129257] = 3, + ACTIONS(4145), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 10, + ACTIONS(4143), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247093,30 +247138,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129215] = 3, - ACTIONS(4266), 1, - anon_sym_PIPE, + [129277] = 4, + ACTIONS(6400), 1, + anon_sym_LT, + STATE(3326), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4268), 10, + ACTIONS(4087), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129235] = 3, - ACTIONS(4377), 1, + [129299] = 3, + ACTIONS(4455), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 10, + ACTIONS(4457), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247127,13 +247173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129255] = 3, - ACTIONS(4083), 1, + [129319] = 3, + ACTIONS(4109), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 10, + ACTIONS(4111), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247144,32 +247190,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129275] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6709), 1, - anon_sym_extends, + [129339] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4427), 8, + ACTIONS(4342), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [129299] = 3, - ACTIONS(4270), 1, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129357] = 3, + ACTIONS(4320), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 10, + ACTIONS(4322), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247180,13 +247223,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129319] = 3, - ACTIONS(4236), 1, + [129377] = 5, + ACTIONS(6709), 1, + anon_sym_AMP, + ACTIONS(6711), 1, anon_sym_PIPE, + ACTIONS(6713), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 10, + ACTIONS(4306), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247194,34 +247241,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [129339] = 4, - ACTIONS(4236), 1, + [129401] = 3, + ACTIONS(4267), 1, anon_sym_PIPE, - ACTIONS(6713), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 9, + ACTIONS(4269), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129361] = 3, - ACTIONS(4087), 1, + [129421] = 3, + ACTIONS(4257), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 10, + ACTIONS(4259), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247232,30 +247276,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129381] = 3, - ACTIONS(4449), 1, - anon_sym_PIPE, + [129441] = 6, + ACTIONS(6063), 1, + anon_sym_LT, + ACTIONS(6344), 1, + anon_sym_DOT, + ACTIONS(6725), 1, + anon_sym_is, + STATE(3035), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(3567), 7, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129401] = 3, - ACTIONS(4199), 1, + [129467] = 3, + ACTIONS(4364), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 10, + ACTIONS(4366), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247266,17 +247313,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129421] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6707), 1, + [129487] = 3, + ACTIONS(4165), 1, anon_sym_PIPE, - ACTIONS(6709), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 8, + ACTIONS(4167), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247284,33 +247327,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [129445] = 11, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(6717), 1, - sym_identifier, - ACTIONS(6719), 1, - anon_sym_type, - ACTIONS(6721), 1, - anon_sym_COMMA, - ACTIONS(6723), 1, - anon_sym_RBRACE, - ACTIONS(6725), 1, - anon_sym_typeof, - STATE(4987), 1, - sym_import_specifier, - STATE(5424), 1, - sym__import_identifier, + [129507] = 4, + ACTIONS(6727), 1, + anon_sym_DOT, + ACTIONS(6729), 1, + anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5670), 2, - sym__module_export_name, - sym_string, - [129481] = 2, + ACTIONS(4386), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [129529] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -247326,13 +247364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [129499] = 3, - ACTIONS(4222), 1, + [129547] = 3, + ACTIONS(2378), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 10, + ACTIONS(2376), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247343,13 +247381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129519] = 3, - ACTIONS(2390), 1, + [129567] = 3, + ACTIONS(4229), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2388), 10, + ACTIONS(4231), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247360,32 +247398,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129539] = 5, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4292), 1, - anon_sym_PIPE, - STATE(1671), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4294), 8, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + [129587] = 5, + ACTIONS(6709), 1, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [129563] = 3, - ACTIONS(4315), 1, + ACTIONS(6711), 1, anon_sym_PIPE, + ACTIONS(6713), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 10, + ACTIONS(4326), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247393,16 +247416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [129583] = 3, - ACTIONS(2386), 1, + [129611] = 3, + ACTIONS(4372), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2384), 10, + ACTIONS(4374), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247413,13 +247434,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129603] = 3, - ACTIONS(4226), 1, + [129631] = 3, + ACTIONS(4380), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4228), 10, + ACTIONS(4382), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247430,17 +247451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129623] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6707), 1, + [129651] = 3, + ACTIONS(4217), 1, anon_sym_PIPE, - ACTIONS(6709), 1, - anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 8, + ACTIONS(4219), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247448,32 +247465,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [129647] = 4, - ACTIONS(6392), 1, - anon_sym_DOT, - ACTIONS(6394), 1, - anon_sym_QMARK_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3505), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [129669] = 3, - ACTIONS(4135), 1, + anon_sym_PIPE_RBRACE, + [129671] = 3, + ACTIONS(4408), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 10, + ACTIONS(4410), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247484,17 +247485,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [129689] = 5, - ACTIONS(6705), 1, + [129691] = 5, + ACTIONS(6709), 1, anon_sym_AMP, - ACTIONS(6707), 1, + ACTIONS(6711), 1, anon_sym_PIPE, - ACTIONS(6709), 1, + ACTIONS(6713), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4228), 8, + ACTIONS(4231), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -247503,15 +247504,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [129713] = 4, - ACTIONS(6727), 1, + [129715] = 4, + ACTIONS(6396), 1, anon_sym_DOT, - ACTIONS(6729), 1, + ACTIONS(6398), 1, anon_sym_QMARK_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4401), 9, + ACTIONS(3517), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247521,108 +247522,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129735] = 3, - ACTIONS(2374), 1, - anon_sym_PIPE, + [129737] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2372), 10, + ACTIONS(3491), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, [129755] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4355), 11, + ACTIONS(4314), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129773] = 11, + [129773] = 8, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6731), 1, + anon_sym_EQ, + ACTIONS(6735), 1, + anon_sym_BANG, + STATE(4055), 1, + sym_type_annotation, + STATE(4221), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6737), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(6733), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [129802] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6731), 1, + ACTIONS(6739), 1, sym_identifier, - ACTIONS(6733), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6735), 1, + ACTIONS(6743), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6745), 1, anon_sym_implements, - STATE(2172), 1, + STATE(2177), 1, sym_class_body, - STATE(3659), 1, + STATE(3634), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5211), 1, + STATE(5297), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129808] = 11, + [129837] = 10, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(6715), 1, + sym_identifier, + ACTIONS(6717), 1, + anon_sym_type, + ACTIONS(6723), 1, + anon_sym_typeof, + ACTIONS(6747), 1, + anon_sym_RBRACE, + STATE(5141), 1, + sym_import_specifier, + STATE(5429), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5689), 2, + sym__module_export_name, + sym_string, + [129870] = 9, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(6749), 1, + sym_identifier, + ACTIONS(6753), 1, + anon_sym_COMMA, + ACTIONS(6755), 1, + anon_sym_RBRACE, + STATE(4761), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6751), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4762), 2, + sym__module_export_name, + sym_string, + [129901] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6735), 1, + ACTIONS(6743), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6745), 1, anon_sym_implements, - ACTIONS(6739), 1, + ACTIONS(6757), 1, sym_identifier, - STATE(2127), 1, + STATE(2177), 1, sym_class_body, - STATE(3518), 1, + STATE(3634), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5255), 1, + STATE(5297), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [129843] = 3, - ACTIONS(6741), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4455), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129862] = 2, + [129936] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4101), 10, + ACTIONS(4115), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247633,65 +247683,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_extends, anon_sym_is, - [129879] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4325), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129896] = 9, - ACTIONS(2338), 1, + [129953] = 10, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(6717), 1, + ACTIONS(6715), 1, sym_identifier, - ACTIONS(6743), 1, + ACTIONS(6717), 1, anon_sym_type, - ACTIONS(6745), 1, - anon_sym_as, - STATE(5179), 1, + ACTIONS(6723), 1, + anon_sym_typeof, + ACTIONS(6759), 1, + anon_sym_RBRACE, + STATE(5141), 1, + sym_import_specifier, + STATE(5429), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6578), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5490), 2, + STATE(5689), 2, sym__module_export_name, sym_string, - [129927] = 4, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4071), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3843), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [129948] = 2, + [129986] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4183), 10, + ACTIONS(4213), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -247702,322 +247721,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [129965] = 4, - ACTIONS(6749), 1, - anon_sym_COLON, + [130003] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3854), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6747), 6, + ACTIONS(4277), 10, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [129986] = 11, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130020] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6735), 1, + ACTIONS(6743), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6745), 1, anon_sym_implements, - ACTIONS(6751), 1, + ACTIONS(6761), 1, sym_identifier, STATE(2127), 1, sym_class_body, STATE(3518), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5255), 1, + STATE(5212), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130021] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(6717), 1, - sym_identifier, - ACTIONS(6719), 1, - anon_sym_type, - ACTIONS(6725), 1, - anon_sym_typeof, - ACTIONS(6753), 1, - anon_sym_RBRACE, - STATE(5142), 1, - sym_import_specifier, - STATE(5424), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5670), 2, - sym__module_export_name, - sym_string, - [130054] = 11, + [130055] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6735), 1, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6743), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6745), 1, anon_sym_implements, - ACTIONS(6755), 1, + ACTIONS(6763), 1, sym_identifier, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(2609), 1, + STATE(2127), 1, sym_class_body, - STATE(3546), 1, + STATE(3518), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5428), 1, + STATE(5212), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130089] = 2, + [130090] = 5, + ACTIONS(6059), 1, + anon_sym_LPAREN, + ACTIONS(6372), 1, + anon_sym_DOT, + STATE(2942), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1777), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(4119), 7, anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [130106] = 3, - ACTIONS(6620), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [130113] = 11, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6741), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6743), 1, anon_sym_extends, - [130125] = 4, - ACTIONS(6749), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3836), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6759), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130146] = 8, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6761), 1, - anon_sym_EQ, + ACTIONS(6745), 1, + anon_sym_implements, ACTIONS(6765), 1, - anon_sym_BANG, - STATE(4056), 1, - sym_type_annotation, - STATE(4221), 1, - sym__initializer, + sym_identifier, + STATE(2127), 1, + sym_class_body, + STATE(3518), 1, + sym_type_parameters, + STATE(4531), 1, + sym_extends_clause, + STATE(5212), 1, + sym_class_heritage, + STATE(5879), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6767), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6763), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130175] = 9, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6765), 1, - anon_sym_BANG, - ACTIONS(6769), 1, - sym__automatic_semicolon, - STATE(4056), 1, - sym_type_annotation, - STATE(4552), 1, - sym__initializer, + [130148] = 11, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6743), 1, + anon_sym_extends, + ACTIONS(6745), 1, + anon_sym_implements, + ACTIONS(6767), 1, + sym_identifier, + STATE(2127), 1, + sym_class_body, + STATE(3518), 1, + sym_type_parameters, + STATE(4531), 1, + sym_extends_clause, + STATE(5212), 1, + sym_class_heritage, + STATE(5879), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6763), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(6767), 2, - anon_sym_in, - anon_sym_of, - [130206] = 11, + [130183] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6735), 1, + ACTIONS(6743), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6745), 1, anon_sym_implements, - ACTIONS(6757), 1, - anon_sym_LBRACE, - ACTIONS(6772), 1, + ACTIONS(6769), 1, sym_identifier, - STATE(1654), 1, + ACTIONS(6771), 1, + anon_sym_LBRACE, + STATE(2586), 1, sym_class_body, - STATE(3545), 1, + STATE(3546), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5213), 1, + STATE(5405), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130241] = 9, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(6774), 1, - sym_identifier, - ACTIONS(6778), 1, - anon_sym_COMMA, - ACTIONS(6780), 1, - anon_sym_RBRACE, - STATE(4767), 1, - sym_export_specifier, + [130218] = 6, + ACTIONS(6344), 1, + anon_sym_DOT, + ACTIONS(6676), 1, + anon_sym_LT, + ACTIONS(6773), 1, + anon_sym_is, + STATE(3035), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6776), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4769), 2, - sym__module_export_name, - sym_string, - [130272] = 5, - ACTIONS(6705), 1, + ACTIONS(3567), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(6707), 1, anon_sym_PIPE, - ACTIONS(6709), 1, anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6782), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130295] = 11, + [130243] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6735), 1, + ACTIONS(6743), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6745), 1, anon_sym_implements, - ACTIONS(6784), 1, + ACTIONS(6775), 1, sym_identifier, - STATE(2127), 1, + STATE(2177), 1, sym_class_body, - STATE(3518), 1, + STATE(3634), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5255), 1, + STATE(5297), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130330] = 11, + [130278] = 3, + ACTIONS(6656), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4093), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130297] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6735), 1, + ACTIONS(6743), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6745), 1, anon_sym_implements, - ACTIONS(6786), 1, + ACTIONS(6777), 1, sym_identifier, - STATE(2172), 1, + STATE(2177), 1, sym_class_body, - STATE(3659), 1, + STATE(3634), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5211), 1, + STATE(5297), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130365] = 5, - ACTIONS(6062), 1, - anon_sym_LPAREN, - ACTIONS(6372), 1, - anon_sym_DOT, - STATE(2938), 1, - sym_arguments, + [130332] = 5, + ACTIONS(6709), 1, + anon_sym_AMP, + ACTIONS(6711), 1, + anon_sym_PIPE, + ACTIONS(6713), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 7, + ACTIONS(6779), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [130355] = 3, + ACTIONS(6781), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4087), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [130388] = 3, - ACTIONS(6620), 1, + [130374] = 3, + ACTIONS(6656), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 9, + ACTIONS(4111), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248027,32 +248007,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130407] = 6, - ACTIONS(6340), 1, - anon_sym_DOT, - ACTIONS(6672), 1, + [130393] = 9, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(6715), 1, + sym_identifier, + ACTIONS(6783), 1, + anon_sym_type, + ACTIONS(6785), 1, + anon_sym_as, + STATE(5169), 1, + sym__import_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6466), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5600), 2, + sym__module_export_name, + sym_string, + [130424] = 4, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4065), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3819), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6788), 1, - anon_sym_is, - STATE(2995), 1, - sym_type_arguments, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [130445] = 4, + ACTIONS(6789), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 6, - anon_sym_as, + STATE(3837), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6787), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [130466] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1765), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130432] = 3, - ACTIONS(6790), 1, anon_sym_is, + [130483] = 3, + ACTIONS(6791), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 9, + ACTIONS(4263), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248062,209 +248094,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130451] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6733), 1, - anon_sym_LBRACE, - ACTIONS(6735), 1, - anon_sym_extends, - ACTIONS(6737), 1, - anon_sym_implements, - ACTIONS(6792), 1, - sym_identifier, - STATE(2172), 1, - sym_class_body, - STATE(3659), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5211), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + [130502] = 4, + ACTIONS(6789), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130486] = 11, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6735), 1, - anon_sym_extends, - ACTIONS(6737), 1, - anon_sym_implements, - ACTIONS(6757), 1, + STATE(3854), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6793), 6, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(6794), 1, - sym_identifier, - STATE(1675), 1, - sym_class_body, - STATE(3561), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5282), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [130523] = 9, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6735), 1, + anon_sym_BANG, + ACTIONS(6795), 1, + sym__automatic_semicolon, + STATE(4055), 1, + sym_type_annotation, + STATE(4542), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130521] = 11, + ACTIONS(6733), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6737), 2, + anon_sym_in, + anon_sym_of, + [130554] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6733), 1, - anon_sym_LBRACE, - ACTIONS(6735), 1, + ACTIONS(6743), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6745), 1, anon_sym_implements, - ACTIONS(6796), 1, + ACTIONS(6771), 1, + anon_sym_LBRACE, + ACTIONS(6798), 1, sym_identifier, - STATE(2127), 1, + STATE(1654), 1, sym_class_body, - STATE(3518), 1, + STATE(3545), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5255), 1, + STATE(5197), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130556] = 10, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(6717), 1, - sym_identifier, - ACTIONS(6719), 1, - anon_sym_type, - ACTIONS(6725), 1, - anon_sym_typeof, - ACTIONS(6798), 1, - anon_sym_RBRACE, - STATE(5142), 1, - sym_import_specifier, - STATE(5424), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(5670), 2, - sym__module_export_name, - sym_string, [130589] = 11, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6733), 1, - anon_sym_LBRACE, - ACTIONS(6735), 1, + ACTIONS(6743), 1, anon_sym_extends, - ACTIONS(6737), 1, + ACTIONS(6745), 1, anon_sym_implements, + ACTIONS(6771), 1, + anon_sym_LBRACE, ACTIONS(6800), 1, sym_identifier, - STATE(2172), 1, + STATE(1675), 1, sym_class_body, - STATE(3659), 1, + STATE(3561), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5211), 1, + STATE(5315), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [130624] = 7, - ACTIONS(6462), 1, - anon_sym_EQ, + [130624] = 8, ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4100), 1, - sym_type_annotation, - STATE(4626), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6544), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6542), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130650] = 8, - ACTIONS(6462), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, ACTIONS(6802), 1, anon_sym_BANG, ACTIONS(6804), 1, anon_sym_QMARK, - STATE(4294), 1, + STATE(4386), 1, sym_type_annotation, - STATE(4927), 1, + STATE(4705), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130678] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [130652] = 8, ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6806), 1, - anon_sym_BANG, - ACTIONS(6808), 1, - anon_sym_QMARK, - STATE(3993), 1, - sym_type_annotation, - STATE(4801), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130706] = 8, - ACTIONS(6462), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6810), 1, + ACTIONS(6808), 1, anon_sym_BANG, - ACTIONS(6812), 1, + ACTIONS(6810), 1, anon_sym_QMARK, - STATE(4002), 1, + STATE(4268), 1, sym_type_annotation, - STATE(4828), 1, + STATE(4883), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(6806), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130734] = 2, + [130680] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2376), 9, + ACTIONS(4273), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248274,114 +248235,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [130750] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6814), 1, - anon_sym_BANG, - ACTIONS(6816), 1, - anon_sym_QMARK, - STATE(4013), 1, - sym_type_annotation, - STATE(4889), 1, - sym__initializer, + [130696] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(4191), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130778] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [130712] = 3, + ACTIONS(3336), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6818), 9, - anon_sym_EQ, + ACTIONS(3338), 8, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, - [130794] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6820), 1, - anon_sym_BANG, - ACTIONS(6822), 1, - anon_sym_QMARK, - STATE(4053), 1, - sym_type_annotation, - STATE(4532), 1, - sym__initializer, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [130730] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(4205), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130822] = 5, - ACTIONS(6824), 1, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(6826), 1, anon_sym_PIPE, - ACTIONS(6828), 1, anon_sym_extends, + [130746] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 6, + ACTIONS(4157), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [130844] = 3, - ACTIONS(3398), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3400), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [130862] = 5, - ACTIONS(6372), 1, - anon_sym_DOT, - ACTIONS(6670), 1, - anon_sym_LPAREN, - STATE(2938), 1, - sym_arguments, + [130762] = 10, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6812), 1, + anon_sym_extends, + ACTIONS(6814), 1, + anon_sym_implements, + STATE(2294), 1, + sym_class_body, + STATE(3662), 1, + sym_type_parameters, + STATE(4531), 1, + sym_extends_clause, + STATE(5470), 1, + sym_class_heritage, + STATE(5879), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4119), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [130884] = 2, + [130794] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6830), 9, + ACTIONS(6816), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -248391,124 +248328,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [130900] = 4, - ACTIONS(6832), 1, - anon_sym_LBRACK, + [130810] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4232), 5, + ACTIONS(2372), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [130920] = 5, - ACTIONS(6824), 1, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(6826), 1, anon_sym_PIPE, - ACTIONS(6828), 1, anon_sym_extends, + [130826] = 4, + ACTIONS(6818), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4427), 6, + STATE(4061), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6793), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [130942] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [130846] = 7, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6834), 1, - anon_sym_BANG, - ACTIONS(6836), 1, - anon_sym_QMARK, - STATE(4008), 1, + STATE(4354), 1, sym_type_annotation, - STATE(4869), 1, + STATE(5040), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [130970] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6838), 1, + ACTIONS(6822), 2, anon_sym_BANG, - ACTIONS(6840), 1, anon_sym_QMARK, - STATE(4304), 1, - sym_type_annotation, - STATE(4946), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6464), 3, + ACTIONS(6820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130998] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [130872] = 7, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6842), 1, - anon_sym_BANG, - ACTIONS(6844), 1, - anon_sym_QMARK, - STATE(4295), 1, + STATE(4247), 1, sym_type_annotation, - STATE(4931), 1, + STATE(4840), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6546), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6544), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131026] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6846), 1, - anon_sym_BANG, - ACTIONS(6848), 1, - anon_sym_QMARK, - STATE(4005), 1, - sym_type_annotation, - STATE(4838), 1, - sym__initializer, + [130898] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, - sym__automatic_semicolon, + ACTIONS(6824), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [131054] = 2, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [130914] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4264), 9, + ACTIONS(4259), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248518,11 +248424,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131070] = 2, + [130930] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4359), 9, + ACTIONS(4457), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248532,11 +248438,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131086] = 2, + [130946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4268), 9, + ACTIONS(4125), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248546,31 +248452,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131102] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6850), 1, - anon_sym_BANG, - ACTIONS(6852), 1, - anon_sym_QMARK, - STATE(4009), 1, - sym_type_annotation, - STATE(4875), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6490), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131130] = 2, + [130962] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4272), 9, + ACTIONS(4269), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248580,11 +248466,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131146] = 2, + [130978] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2388), 9, + ACTIONS(2380), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248594,112 +248480,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131162] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6854), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [131178] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6856), 1, - anon_sym_BANG, - ACTIONS(6858), 1, - anon_sym_QMARK, - STATE(4362), 1, - sym_type_annotation, - STATE(5066), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [131206] = 3, - ACTIONS(6824), 1, - anon_sym_AMP, + [130994] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 8, + ACTIONS(4219), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131224] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5005), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [131250] = 2, + [131010] = 5, + ACTIONS(6826), 1, + anon_sym_AMP, + ACTIONS(6828), 1, + anon_sym_PIPE, + ACTIONS(6830), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4371), 9, + ACTIONS(4223), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + [131032] = 10, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6812), 1, anon_sym_extends, - [131266] = 7, + ACTIONS(6814), 1, + anon_sym_implements, + ACTIONS(6832), 1, + anon_sym_LBRACE, + STATE(3569), 1, + sym_type_parameters, + STATE(4126), 1, + sym_class_body, + STATE(4531), 1, + sym_extends_clause, + STATE(5232), 1, + sym_class_heritage, + STATE(5879), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [131064] = 7, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(672), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4824), 1, + STATE(4823), 1, aux_sym_object_repeat1, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [131292] = 2, + [131090] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 9, + ACTIONS(4318), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248709,66 +248566,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131308] = 9, - ACTIONS(2338), 1, + [131106] = 9, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(6717), 1, + ACTIONS(6715), 1, sym_identifier, - ACTIONS(6719), 1, + ACTIONS(6717), 1, anon_sym_type, - ACTIONS(6725), 1, + ACTIONS(6723), 1, anon_sym_typeof, - STATE(5142), 1, + STATE(5141), 1, sym_import_specifier, - STATE(5424), 1, + STATE(5429), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5670), 2, + STATE(5689), 2, sym__module_export_name, sym_string, - [131338] = 2, + [131136] = 5, + ACTIONS(6344), 1, + anon_sym_DOT, + ACTIONS(6676), 1, + anon_sym_LT, + STATE(3035), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2380), 9, + ACTIONS(3567), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131158] = 8, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6834), 1, + anon_sym_BANG, + ACTIONS(6836), 1, + anon_sym_QMARK, + STATE(3989), 1, + sym_type_annotation, + STATE(4794), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131186] = 8, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6838), 1, + anon_sym_BANG, + ACTIONS(6840), 1, + anon_sym_QMARK, + STATE(3998), 1, + sym_type_annotation, + STATE(4812), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6532), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + [131214] = 3, + ACTIONS(3368), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3370), 8, + anon_sym_as, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131354] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + anon_sym_LBRACE_PIPE, + [131232] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6860), 1, + ACTIONS(6842), 1, anon_sym_BANG, - ACTIONS(6862), 1, + ACTIONS(6844), 1, anon_sym_QMARK, - STATE(4370), 1, + STATE(4009), 1, sym_type_annotation, - STATE(5088), 1, + STATE(4891), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(6532), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131382] = 2, + [131260] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4306), 9, + ACTIONS(4322), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248778,69 +248693,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131398] = 5, - ACTIONS(6824), 1, - anon_sym_AMP, + [131276] = 5, ACTIONS(6826), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6828), 1, + anon_sym_PIPE, + ACTIONS(6830), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4321), 6, + ACTIONS(4326), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [131420] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(699), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_EQ, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [131446] = 10, + [131298] = 10, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, STATE(2141), 1, sym_class_body, STATE(3533), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5434), 1, + STATE(5386), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131478] = 2, + [131330] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1921), 9, + ACTIONS(4227), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -248850,159 +248746,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131494] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(3562), 1, - sym_type_parameters, - STATE(4068), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5313), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131526] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [131346] = 7, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6870), 1, - anon_sym_BANG, - ACTIONS(6872), 1, - anon_sym_QMARK, - STATE(4375), 1, + STATE(4101), 1, sym_type_annotation, - STATE(5104), 1, + STATE(4624), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(6552), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6550), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131554] = 4, - ACTIONS(6874), 1, - anon_sym_COLON, + [131372] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3961), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6759), 5, + ACTIONS(1743), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131574] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131388] = 7, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(4340), 1, + sym_type_annotation, + STATE(5035), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4367), 9, + ACTIONS(6484), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6482), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131590] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [131414] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6876), 1, + ACTIONS(6846), 1, anon_sym_BANG, - ACTIONS(6878), 1, + ACTIONS(6848), 1, anon_sym_QMARK, - STATE(4380), 1, + STATE(4048), 1, sym_type_annotation, - STATE(5113), 1, + STATE(4527), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(6532), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131618] = 8, - ACTIONS(6462), 1, + [131442] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6850), 9, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [131458] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6880), 1, + ACTIONS(6852), 1, anon_sym_BANG, - ACTIONS(6882), 1, + ACTIONS(6854), 1, anon_sym_QMARK, - STATE(4384), 1, + STATE(4006), 1, sym_type_annotation, - STATE(5126), 1, + STATE(4874), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(6490), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131646] = 2, + [131486] = 4, + ACTIONS(6818), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4379), 9, + STATE(3960), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(6787), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, + [131506] = 3, + ACTIONS(6826), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131662] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6884), 1, - anon_sym_BANG, - ACTIONS(6886), 1, - anon_sym_QMARK, - STATE(4041), 1, - sym_type_annotation, - STATE(5127), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(4161), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131690] = 3, - ACTIONS(6888), 1, + anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_extends, + [131524] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 8, + ACTIONS(4143), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249011,11 +248896,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - [131708] = 2, + anon_sym_extends, + [131540] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1925), 9, + ACTIONS(4167), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249025,102 +248911,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131724] = 5, - ACTIONS(6340), 1, - anon_sym_DOT, - ACTIONS(6672), 1, - anon_sym_LT, - STATE(2995), 1, - sym_type_arguments, + [131556] = 5, + ACTIONS(6826), 1, + anon_sym_AMP, + ACTIONS(6828), 1, + anon_sym_PIPE, + ACTIONS(6830), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3567), 6, - anon_sym_as, + ACTIONS(4437), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, + [131578] = 5, + ACTIONS(6826), 1, anon_sym_AMP, + ACTIONS(6828), 1, anon_sym_PIPE, + ACTIONS(6830), 1, anon_sym_extends, - [131746] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 9, + ACTIONS(4441), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131762] = 6, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(6890), 1, - anon_sym_EQ, + [131600] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6782), 5, + ACTIONS(3338), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [131786] = 10, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131616] = 10, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - ACTIONS(6868), 1, + ACTIONS(6856), 1, anon_sym_LBRACE, - STATE(3569), 1, - sym_type_parameters, - STATE(4124), 1, + STATE(848), 1, sym_class_body, - STATE(4758), 1, + STATE(3630), 1, + sym_type_parameters, + STATE(4531), 1, sym_extends_clause, - STATE(5232), 1, + STATE(5291), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [131818] = 8, - ACTIONS(6462), 1, + [131648] = 8, + ACTIONS(6470), 1, anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6858), 1, + anon_sym_BANG, + ACTIONS(6860), 1, + anon_sym_QMARK, + STATE(4362), 1, + sym_type_annotation, + STATE(5067), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131676] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6892), 1, + ACTIONS(6862), 1, anon_sym_BANG, - ACTIONS(6894), 1, + ACTIONS(6864), 1, anon_sym_QMARK, - STATE(4288), 1, + STATE(4369), 1, sym_type_annotation, - STATE(4917), 1, + STATE(5089), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6532), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131846] = 2, + [131704] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3318), 9, + ACTIONS(1747), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249130,11 +249035,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131862] = 2, + [131720] = 8, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6866), 1, + anon_sym_BANG, + ACTIONS(6868), 1, + anon_sym_QMARK, + STATE(4375), 1, + sym_type_annotation, + STATE(5103), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131748] = 8, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6870), 1, + anon_sym_BANG, + ACTIONS(6872), 1, + anon_sym_QMARK, + STATE(4007), 1, + sym_type_annotation, + STATE(4892), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6490), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131776] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6896), 9, + ACTIONS(6874), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -249144,11 +249089,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [131878] = 2, + [131792] = 8, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6876), 1, + anon_sym_BANG, + ACTIONS(6878), 1, + anon_sym_QMARK, + STATE(4379), 1, + sym_type_annotation, + STATE(5110), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131820] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4151), 9, + ACTIONS(4374), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249158,71 +249123,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131894] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(218), 1, - sym_class_body, - STATE(3639), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5363), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131926] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6757), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(1678), 1, - sym_class_body, - STATE(3563), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5431), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [131958] = 4, - ACTIONS(6874), 1, - anon_sym_COLON, + [131836] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4061), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(6747), 5, + ACTIONS(4382), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [131978] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [131852] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 9, + ACTIONS(4231), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249232,174 +249151,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [131994] = 3, - ACTIONS(6832), 1, - anon_sym_LBRACK, + [131868] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 8, + ACTIONS(4410), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132012] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6900), 1, - anon_sym_LBRACE, - STATE(812), 1, - sym_class_body, - STATE(3721), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5321), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + [131884] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132044] = 3, - ACTIONS(3316), 1, + ACTIONS(4175), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3318), 8, - anon_sym_as, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [132062] = 2, + [131900] = 5, + ACTIONS(6826), 1, + anon_sym_AMP, + ACTIONS(6828), 1, + anon_sym_PIPE, + ACTIONS(6830), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 9, + ACTIONS(4179), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + [131922] = 5, + ACTIONS(6826), 1, anon_sym_AMP, + ACTIONS(6828), 1, anon_sym_PIPE, + ACTIONS(6830), 1, anon_sym_extends, - [132078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4451), 9, + ACTIONS(4231), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132094] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(6774), 1, - sym_identifier, - ACTIONS(6902), 1, - anon_sym_RBRACE, - STATE(5430), 1, - sym_export_specifier, + [131944] = 8, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6880), 1, + anon_sym_BANG, + ACTIONS(6882), 1, + anon_sym_QMARK, + STATE(4383), 1, + sym_type_annotation, + STATE(5125), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6776), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4769), 2, - sym__module_export_name, - sym_string, - [132122] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6733), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(2118), 1, - sym_class_body, - STATE(3573), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5270), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + ACTIONS(6532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [131972] = 8, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6884), 1, + anon_sym_BANG, + ACTIONS(6886), 1, + anon_sym_QMARK, + STATE(4378), 1, + sym_type_annotation, + STATE(5114), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132154] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(3574), 1, - sym_type_parameters, - STATE(4154), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5284), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + ACTIONS(6498), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132000] = 8, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6888), 1, + anon_sym_BANG, + ACTIONS(6890), 1, + anon_sym_QMARK, + STATE(4040), 1, + sym_type_annotation, + STATE(5056), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132186] = 7, - ACTIONS(6462), 1, + ACTIONS(6532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132028] = 8, + ACTIONS(6470), 1, anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6892), 1, + anon_sym_BANG, + ACTIONS(6894), 1, + anon_sym_QMARK, + STATE(4299), 1, + sym_type_annotation, + STATE(4941), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132056] = 4, + ACTIONS(6896), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4201), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4195), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [132076] = 7, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4293), 1, + STATE(4298), 1, sym_type_annotation, - STATE(4977), 1, + STATE(4985), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6550), 2, + ACTIONS(6570), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(6548), 3, + ACTIONS(6568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132212] = 2, + [132102] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 9, + ACTIONS(4111), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249409,33 +249342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132228] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6757), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(1696), 1, - sym_class_body, - STATE(3575), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5300), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + [132118] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132260] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3400), 9, + ACTIONS(3402), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249445,51 +249356,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132276] = 8, - ACTIONS(6462), 1, + [132134] = 8, + ACTIONS(6470), 1, anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6898), 1, + anon_sym_BANG, + ACTIONS(6900), 1, + anon_sym_QMARK, + STATE(4384), 1, + sym_type_annotation, + STATE(5131), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6498), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132162] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6904), 1, + ACTIONS(6902), 1, anon_sym_BANG, - ACTIONS(6906), 1, + ACTIONS(6904), 1, anon_sym_QMARK, - STATE(4386), 1, + STATE(4385), 1, sym_type_annotation, - STATE(4710), 1, + STATE(5135), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6498), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132304] = 8, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(6774), 1, - sym_identifier, - ACTIONS(6908), 1, - anon_sym_RBRACE, - STATE(5430), 1, - sym_export_specifier, + [132190] = 10, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6812), 1, + anon_sym_extends, + ACTIONS(6814), 1, + anon_sym_implements, + ACTIONS(6832), 1, + anon_sym_LBRACE, + STATE(3576), 1, + sym_type_parameters, + STATE(4212), 1, + sym_class_body, + STATE(4531), 1, + sym_extends_clause, + STATE(5402), 1, + sym_class_heritage, + STATE(5879), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6776), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4769), 2, - sym__module_export_name, - sym_string, - [132332] = 2, + [132222] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3394), 9, + ACTIONS(4402), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249499,31 +249432,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132348] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [132238] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6910), 1, + ACTIONS(6906), 1, anon_sym_BANG, - ACTIONS(6912), 1, + ACTIONS(6908), 1, anon_sym_QMARK, - STATE(4162), 1, + STATE(4163), 1, sym_type_annotation, - STATE(4722), 1, + STATE(4717), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132376] = 2, + [132266] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4177), 9, + ACTIONS(3370), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249533,45 +249466,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132392] = 2, + [132282] = 8, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6910), 1, + anon_sym_BANG, + ACTIONS(6912), 1, + anon_sym_QMARK, + STATE(4174), 1, + sym_type_annotation, + STATE(4728), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4201), 9, + ACTIONS(6472), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [132408] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [132310] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, ACTIONS(6914), 1, anon_sym_BANG, ACTIONS(6916), 1, anon_sym_QMARK, - STATE(4174), 1, + STATE(4181), 1, sym_type_annotation, - STATE(4734), 1, + STATE(4738), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132436] = 2, + [132338] = 3, + ACTIONS(6918), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4197), 9, + ACTIONS(4209), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249580,202 +249521,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_extends, - [132452] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [132356] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6918), 1, - anon_sym_BANG, ACTIONS(6920), 1, + anon_sym_BANG, + ACTIONS(6922), 1, anon_sym_QMARK, - STATE(3953), 1, + STATE(4204), 1, sym_type_annotation, - STATE(4628), 1, + STATE(4770), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6530), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132480] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6922), 1, - anon_sym_BANG, - ACTIONS(6924), 1, - anon_sym_QMARK, - STATE(4205), 1, - sym_type_annotation, - STATE(4770), 1, - sym__initializer, + [132384] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(4370), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132508] = 7, - ACTIONS(239), 1, - anon_sym_COMMA, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5074), 1, - anon_sym_RBRACE, - STATE(4835), 1, - aux_sym_object_pattern_repeat1, - STATE(4905), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3843), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [132534] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6864), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(3576), 1, - sym_type_parameters, - STATE(4213), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5395), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + [132400] = 3, + ACTIONS(6896), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132566] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + ACTIONS(4235), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [132418] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6926), 1, + ACTIONS(6924), 1, anon_sym_BANG, - ACTIONS(6928), 1, + ACTIONS(6926), 1, anon_sym_QMARK, - STATE(4218), 1, + STATE(4217), 1, sym_type_annotation, - STATE(4792), 1, + STATE(4791), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132594] = 2, + [132446] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6930), 9, - anon_sym_EQ, + ACTIONS(4378), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [132610] = 7, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4247), 1, - sym_type_annotation, - STATE(4841), 1, - sym__initializer, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [132462] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6480), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6478), 3, + ACTIONS(4306), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132636] = 5, - ACTIONS(6824), 1, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(6826), 1, anon_sym_PIPE, + anon_sym_extends, + [132478] = 5, + ACTIONS(6826), 1, + anon_sym_AMP, ACTIONS(6828), 1, + anon_sym_PIPE, + ACTIONS(6830), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 6, + ACTIONS(4306), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [132658] = 8, - ACTIONS(6462), 1, + [132500] = 8, + ACTIONS(6470), 1, anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6928), 1, + anon_sym_BANG, + ACTIONS(6930), 1, + anon_sym_QMARK, + STATE(4219), 1, + sym_type_annotation, + STATE(4795), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [132528] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6934), 1, + ACTIONS(6932), 1, anon_sym_BANG, - ACTIONS(6936), 1, + ACTIONS(6934), 1, anon_sym_QMARK, - STATE(4185), 1, + STATE(4224), 1, sym_type_annotation, - STATE(4751), 1, + STATE(4802), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6932), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132686] = 7, + [132556] = 7, ACTIONS(239), 1, anon_sym_COMMA, + ACTIONS(699), 1, + anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(5076), 1, - anon_sym_RBRACE, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [132712] = 2, + [132582] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4347), 9, + ACTIONS(4093), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249785,135 +249708,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132728] = 8, - ACTIONS(6462), 1, + [132598] = 7, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4593), 1, anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6938), 1, - anon_sym_BANG, - ACTIONS(6940), 1, - anon_sym_QMARK, - STATE(4301), 1, - sym_type_annotation, - STATE(4943), 1, - sym__initializer, + ACTIONS(5076), 1, + anon_sym_RBRACE, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [132756] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(3819), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(6942), 1, - anon_sym_BANG, - ACTIONS(6944), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4292), 1, - sym_type_annotation, - STATE(4923), 1, - sym__initializer, + [132624] = 6, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, + anon_sym_PIPE, + ACTIONS(6608), 1, + anon_sym_extends, + ACTIONS(6936), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, - sym__automatic_semicolon, + ACTIONS(6779), 5, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [132784] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [132648] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6946), 1, + ACTIONS(6938), 1, anon_sym_BANG, - ACTIONS(6948), 1, + ACTIONS(6940), 1, anon_sym_QMARK, - STATE(4379), 1, + STATE(4303), 1, sym_type_annotation, - STATE(5115), 1, + STATE(4944), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6506), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132812] = 10, + [132676] = 10, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - STATE(2288), 1, + STATE(2119), 1, sym_class_body, - STATE(3598), 1, + STATE(3572), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5414), 1, + STATE(5276), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132844] = 10, + [132708] = 10, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6812), 1, + anon_sym_extends, + ACTIONS(6814), 1, + anon_sym_implements, + ACTIONS(6832), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + STATE(3574), 1, + sym_type_parameters, + STATE(4154), 1, + sym_class_body, + STATE(4531), 1, + sym_extends_clause, + STATE(5287), 1, + sym_class_heritage, + STATE(5879), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132740] = 10, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - STATE(2269), 1, + ACTIONS(6942), 1, + anon_sym_LBRACE, + STATE(243), 1, sym_class_body, - STATE(3592), 1, + STATE(3642), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5302), 1, + STATE(5363), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [132876] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6950), 1, - anon_sym_BANG, - ACTIONS(6952), 1, - anon_sym_QMARK, - STATE(4385), 1, - sym_type_annotation, - STATE(5131), 1, - sym__initializer, + [132772] = 10, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6812), 1, + anon_sym_extends, + ACTIONS(6814), 1, + anon_sym_implements, + ACTIONS(6832), 1, + anon_sym_LBRACE, + STATE(773), 1, + sym_class_body, + STATE(3521), 1, + sym_type_parameters, + STATE(4531), 1, + sym_extends_clause, + STATE(5277), 1, + sym_class_heritage, + STATE(5879), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132804] = 3, + ACTIONS(3400), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6506), 3, + ACTIONS(3402), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [132822] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4201), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132904] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [132838] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4189), 9, + ACTIONS(4346), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249923,11 +249896,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132920] = 2, + [132854] = 3, + ACTIONS(6826), 1, + anon_sym_AMP, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4362), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [132872] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4193), 9, + ACTIONS(4366), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -249937,183 +249925,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [132936] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6954), 1, - anon_sym_BANG, - ACTIONS(6956), 1, - anon_sym_QMARK, - STATE(4219), 1, - sym_type_annotation, - STATE(4796), 1, - sym__initializer, + [132888] = 3, + ACTIONS(6896), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(4201), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132964] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6958), 1, - anon_sym_BANG, - ACTIONS(6960), 1, - anon_sym_QMARK, - STATE(4225), 1, - sym_type_annotation, - STATE(4804), 1, - sym__initializer, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [132906] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(2388), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [132992] = 5, - ACTIONS(6824), 1, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(6826), 1, anon_sym_PIPE, - ACTIONS(6828), 1, anon_sym_extends, + [132922] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 6, + ACTIONS(4087), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [133014] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [132938] = 10, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6812), 1, + anon_sym_extends, + ACTIONS(6814), 1, + anon_sym_implements, + STATE(2289), 1, + sym_class_body, + STATE(3600), 1, + sym_type_parameters, + STATE(4531), 1, + sym_extends_clause, + STATE(5419), 1, + sym_class_heritage, + STATE(5879), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [132970] = 10, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6812), 1, + anon_sym_extends, + ACTIONS(6814), 1, + anon_sym_implements, + ACTIONS(6856), 1, + anon_sym_LBRACE, + STATE(812), 1, + sym_class_body, + STATE(3721), 1, + sym_type_parameters, + STATE(4531), 1, + sym_extends_clause, + STATE(5324), 1, + sym_class_heritage, + STATE(5879), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [133002] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6962), 1, + ACTIONS(6944), 1, anon_sym_BANG, - ACTIONS(6964), 1, + ACTIONS(6946), 1, anon_sym_QMARK, - STATE(4156), 1, + STATE(4238), 1, sym_type_annotation, - STATE(5135), 1, + STATE(4819), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6506), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133042] = 7, + [133030] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4406), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133046] = 7, ACTIONS(239), 1, anon_sym_COMMA, ACTIONS(697), 1, anon_sym_RBRACE, ACTIONS(4593), 1, anon_sym_EQ, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, - STATE(4905), 1, + STATE(4902), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [133068] = 3, - ACTIONS(3392), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3394), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [133086] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [133072] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6966), 1, + ACTIONS(6948), 1, anon_sym_BANG, - ACTIONS(6968), 1, + ACTIONS(6950), 1, anon_sym_QMARK, STATE(4239), 1, sym_type_annotation, - STATE(4819), 1, + STATE(4826), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133114] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6970), 1, - anon_sym_BANG, - ACTIONS(6972), 1, - anon_sym_QMARK, - STATE(4240), 1, - sym_type_annotation, - STATE(4827), 1, - sym__initializer, + [133100] = 8, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(6749), 1, + sym_identifier, + ACTIONS(6952), 1, + anon_sym_RBRACE, + STATE(5428), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133142] = 2, + ACTIONS(6751), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4762), 2, + sym__module_export_name, + sym_string, + [133128] = 10, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6812), 1, + anon_sym_extends, + ACTIONS(6814), 1, + anon_sym_implements, + STATE(2270), 1, + sym_class_body, + STATE(3592), 1, + sym_type_parameters, + STATE(4531), 1, + sym_extends_clause, + STATE(5306), 1, + sym_class_heritage, + STATE(5879), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4224), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + [133160] = 7, + ACTIONS(239), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133158] = 8, - ACTIONS(6462), 1, + ACTIONS(4593), 1, anon_sym_EQ, + ACTIONS(5005), 1, + anon_sym_RBRACE, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3819), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [133186] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6974), 1, + ACTIONS(6954), 1, anon_sym_BANG, - ACTIONS(6976), 1, + ACTIONS(6956), 1, anon_sym_QMARK, - STATE(3966), 1, + STATE(4003), 1, sym_type_annotation, - STATE(4682), 1, + STATE(4838), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -250122,100 +250166,72 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133186] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4228), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133202] = 7, - ACTIONS(6462), 1, - anon_sym_EQ, + [133214] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4356), 1, + ACTIONS(6958), 1, + anon_sym_BANG, + ACTIONS(6960), 1, + anon_sym_QMARK, + STATE(3952), 1, sym_type_annotation, - STATE(5040), 1, + STATE(4622), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6980), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6978), 3, + ACTIONS(6532), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133228] = 10, + [133242] = 10, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - ACTIONS(6898), 1, + ACTIONS(6832), 1, anon_sym_LBRACE, - STATE(228), 1, - sym_class_body, - STATE(3587), 1, + STATE(3562), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4067), 1, + sym_class_body, + STATE(4531), 1, sym_extends_clause, - STATE(5187), 1, + STATE(5342), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133260] = 3, - ACTIONS(6832), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4256), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133278] = 7, - ACTIONS(6470), 1, + [133274] = 7, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6761), 1, + ACTIONS(6731), 1, anon_sym_EQ, - STATE(4056), 1, + STATE(4055), 1, sym_type_annotation, STATE(4222), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6767), 2, + ACTIONS(6737), 2, anon_sym_in, anon_sym_of, - ACTIONS(6763), 3, + ACTIONS(6733), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133304] = 2, + [133300] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4393), 9, + ACTIONS(4149), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -250225,109 +250241,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133320] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [133316] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6769), 1, + ACTIONS(6795), 1, sym__automatic_semicolon, - STATE(4056), 1, + STATE(4055), 1, sym_type_annotation, - STATE(4589), 1, + STATE(4594), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6763), 2, + ACTIONS(6733), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(6767), 2, + ACTIONS(6737), 2, anon_sym_in, anon_sym_of, - [133348] = 7, + [133344] = 7, ACTIONS(3535), 1, anon_sym_LPAREN, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, - ACTIONS(6982), 1, + ACTIONS(6962), 1, anon_sym_DOT, - STATE(1266), 1, + STATE(1256), 1, sym_arguments, - STATE(5452), 1, + STATE(5449), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3583), 4, + ACTIONS(3577), 4, anon_sym_export, anon_sym_class, anon_sym_AT, anon_sym_abstract, - [133374] = 5, - ACTIONS(6824), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_PIPE, - ACTIONS(6828), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4228), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [133396] = 10, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(783), 1, - sym_class_body, - STATE(3657), 1, - sym_type_parameters, - STATE(4758), 1, - sym_extends_clause, - STATE(5446), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [133428] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(6984), 1, - anon_sym_BANG, - ACTIONS(6986), 1, - anon_sym_QMARK, - STATE(4269), 1, - sym_type_annotation, - STATE(4890), 1, - sym__initializer, + [133370] = 8, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(6749), 1, + sym_identifier, + ACTIONS(6964), 1, + anon_sym_RBRACE, + STATE(5428), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6932), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [133456] = 2, + ACTIONS(6751), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4762), 2, + sym__module_export_name, + sym_string, + [133398] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2372), 9, + ACTIONS(2384), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -250337,169 +250314,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133472] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [133414] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6988), 1, + ACTIONS(6966), 1, anon_sym_BANG, - ACTIONS(6990), 1, + ACTIONS(6968), 1, anon_sym_QMARK, - STATE(4276), 1, + STATE(4282), 1, sym_type_annotation, - STATE(4899), 1, + STATE(4896), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133500] = 2, + [133442] = 7, + ACTIONS(239), 1, + anon_sym_COMMA, + ACTIONS(4593), 1, + anon_sym_EQ, + ACTIONS(5074), 1, + anon_sym_RBRACE, + STATE(4834), 1, + aux_sym_object_pattern_repeat1, + STATE(4902), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133516] = 10, + ACTIONS(3819), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [133468] = 10, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6733), 1, + ACTIONS(6771), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - STATE(2344), 1, + STATE(1696), 1, sym_class_body, - STATE(3553), 1, + STATE(3575), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5369), 1, + STATE(5309), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133548] = 5, - ACTIONS(6824), 1, - anon_sym_AMP, - ACTIONS(6826), 1, - anon_sym_PIPE, - ACTIONS(6828), 1, + [133500] = 10, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6812), 1, anon_sym_extends, + ACTIONS(6814), 1, + anon_sym_implements, + ACTIONS(6942), 1, + anon_sym_LBRACE, + STATE(228), 1, + sym_class_body, + STATE(3582), 1, + sym_type_parameters, + STATE(4531), 1, + sym_extends_clause, + STATE(5183), 1, + sym_class_heritage, + STATE(5879), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [133570] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [133532] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6992), 1, + ACTIONS(6970), 1, anon_sym_BANG, - ACTIONS(6994), 1, + ACTIONS(6972), 1, anon_sym_QMARK, - STATE(3913), 1, + STATE(4179), 1, sym_type_annotation, - STATE(4727), 1, + STATE(4733), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6490), 3, + ACTIONS(6806), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133598] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4097), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133614] = 10, + [133560] = 10, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6733), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - STATE(2294), 1, + ACTIONS(6832), 1, + anon_sym_LBRACE, + STATE(783), 1, sym_class_body, - STATE(3660), 1, + STATE(3659), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5473), 1, + STATE(5444), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133646] = 10, + [133592] = 10, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6864), 1, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - ACTIONS(6900), 1, - anon_sym_LBRACE, - STATE(847), 1, + STATE(2346), 1, sym_class_body, - STATE(3628), 1, + STATE(3553), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5287), 1, + STATE(5387), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133678] = 8, - ACTIONS(6462), 1, + [133624] = 8, + ACTIONS(6470), 1, anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6974), 1, + anon_sym_BANG, + ACTIONS(6976), 1, + anon_sym_QMARK, + STATE(4287), 1, + sym_type_annotation, + STATE(4912), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6472), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [133652] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6996), 1, + ACTIONS(6978), 1, anon_sym_BANG, - ACTIONS(6998), 1, + ACTIONS(6980), 1, anon_sym_QMARK, - STATE(3929), 1, + STATE(3913), 1, sym_type_annotation, - STATE(4892), 1, + STATE(4948), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -250508,40 +250501,54 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133706] = 10, + [133680] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6982), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [133696] = 10, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6864), 1, + ACTIONS(6771), 1, + anon_sym_LBRACE, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - ACTIONS(6868), 1, - anon_sym_LBRACE, - STATE(780), 1, + STATE(1678), 1, sym_class_body, - STATE(3521), 1, + STATE(3563), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5269), 1, + STATE(5440), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133738] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [133728] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(7000), 1, + ACTIONS(6984), 1, anon_sym_BANG, - ACTIONS(7002), 1, + ACTIONS(6986), 1, anon_sym_QMARK, - STATE(3934), 1, + STATE(3930), 1, sym_type_annotation, - STATE(5128), 1, + STATE(4936), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -250550,54 +250557,60 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133766] = 10, + [133756] = 10, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6757), 1, + ACTIONS(6771), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - STATE(2540), 1, + STATE(2543), 1, sym_class_body, - STATE(3672), 1, + STATE(3674), 1, sym_type_parameters, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5167), 1, + STATE(5138), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [133798] = 2, + [133788] = 8, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(6988), 1, + anon_sym_BANG, + ACTIONS(6990), 1, + anon_sym_QMARK, + STATE(3966), 1, + sym_type_annotation, + STATE(4693), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2384), 9, + ACTIONS(6490), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133814] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [133816] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(7004), 1, + ACTIONS(6992), 1, anon_sym_BANG, - ACTIONS(7006), 1, + ACTIONS(6994), 1, anon_sym_QMARK, - STATE(3939), 1, + STATE(3934), 1, sym_type_annotation, - STATE(4543), 1, + STATE(4808), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -250606,37 +250619,55 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133842] = 7, - ACTIONS(6462), 1, - anon_sym_EQ, + [133844] = 5, + ACTIONS(6372), 1, + anon_sym_DOT, + ACTIONS(6674), 1, + anon_sym_LPAREN, + STATE(2942), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4119), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [133866] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4340), 1, + ACTIONS(6996), 1, + anon_sym_BANG, + ACTIONS(6998), 1, + anon_sym_QMARK, + STATE(3939), 1, sym_type_annotation, - STATE(5036), 1, + STATE(4558), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6498), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6496), 3, + ACTIONS(6490), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133868] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [133894] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(7008), 1, + ACTIONS(7000), 1, anon_sym_BANG, - ACTIONS(7010), 1, + ACTIONS(7002), 1, anon_sym_QMARK, - STATE(3941), 1, + STATE(3940), 1, sym_type_annotation, - STATE(4565), 1, + STATE(4566), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -250645,39 +250676,51 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133896] = 2, + [133922] = 8, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(7004), 1, + anon_sym_BANG, + ACTIONS(7006), 1, + anon_sym_QMARK, + STATE(4291), 1, + sym_type_annotation, + STATE(4918), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4411), 9, + ACTIONS(6472), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133912] = 2, + [133950] = 8, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(7008), 1, + anon_sym_BANG, + ACTIONS(7010), 1, + anon_sym_QMARK, + STATE(4292), 1, + sym_type_annotation, + STATE(4923), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4137), 9, + ACTIONS(6472), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [133928] = 2, + [133978] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4155), 9, + ACTIONS(2376), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -250687,18 +250730,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [133944] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [133994] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, ACTIONS(7012), 1, anon_sym_BANG, ACTIONS(7014), 1, anon_sym_QMARK, - STATE(3955), 1, + STATE(3953), 1, sym_type_annotation, - STATE(4633), 1, + STATE(4628), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -250707,47 +250750,18 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133972] = 3, - ACTIONS(6824), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4159), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [133990] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4169), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134006] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, + [134022] = 8, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, ACTIONS(7016), 1, anon_sym_BANG, ACTIONS(7018), 1, anon_sym_QMARK, - STATE(3959), 1, + STATE(3958), 1, sym_type_annotation, - STATE(4658), 1, + STATE(4654), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -250756,37 +250770,23 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134034] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4173), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, [134050] = 8, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, ACTIONS(7020), 1, anon_sym_BANG, ACTIONS(7022), 1, anon_sym_QMARK, - STATE(4181), 1, + STATE(4293), 1, sym_type_annotation, - STATE(4744), 1, + STATE(4927), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6464), 3, + ACTIONS(6472), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -250797,115 +250797,25 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7026), 1, sym_this, - STATE(2924), 1, - sym__type_query_call_expression, - STATE(2985), 1, - sym__type_query_instantiation_expression, - STATE(3172), 1, + STATE(1737), 1, sym__type_query_member_expression, - STATE(3174), 1, - sym__type_query_subscript_expression, - STATE(4519), 1, - sym_import, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [134107] = 7, - ACTIONS(2338), 1, - anon_sym_DQUOTE, - ACTIONS(2340), 1, - anon_sym_SQUOTE, - ACTIONS(6774), 1, - sym_identifier, - STATE(5430), 1, - sym_export_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6776), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4769), 2, - sym__module_export_name, - sym_string, - [134132] = 6, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(7028), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, - anon_sym_QMARK_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4090), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134155] = 9, - ACTIONS(1545), 1, - anon_sym_import, - ACTIONS(7034), 1, - sym_identifier, - ACTIONS(7036), 1, - sym_this, - STATE(2926), 1, + STATE(1739), 1, sym__type_query_subscript_expression, - STATE(2931), 1, - sym__type_query_member_expression, - STATE(3123), 1, + STATE(1978), 1, sym__type_query_call_expression, - STATE(3222), 1, + STATE(1979), 1, sym__type_query_instantiation_expression, - STATE(4408), 1, + STATE(4447), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134184] = 7, - ACTIONS(3424), 1, - sym_identifier, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(7038), 1, - anon_sym_enum, - STATE(4464), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3673), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134209] = 6, - ACTIONS(6470), 1, - anon_sym_COLON, + [134107] = 5, ACTIONS(7028), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, - anon_sym_QMARK_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4094), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134232] = 5, - ACTIONS(7040), 1, anon_sym_LBRACE, - ACTIONS(7042), 1, + ACTIONS(7030), 1, anon_sym_DOT, - STATE(4075), 1, + STATE(4072), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, @@ -250916,148 +250826,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134253] = 5, - ACTIONS(6705), 1, + [134128] = 5, + ACTIONS(6709), 1, anon_sym_AMP, - ACTIONS(6707), 1, + ACTIONS(6711), 1, anon_sym_PIPE, - ACTIONS(6709), 1, + ACTIONS(6713), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7044), 5, + ACTIONS(7032), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134274] = 9, - ACTIONS(1545), 1, - anon_sym_import, - ACTIONS(7026), 1, - sym_this, - ACTIONS(7046), 1, - sym_identifier, - STATE(2880), 1, - sym__type_query_subscript_expression, - STATE(2882), 1, - sym__type_query_member_expression, - STATE(2924), 1, - sym__type_query_call_expression, - STATE(2985), 1, - sym__type_query_instantiation_expression, - STATE(4433), 1, - sym_import, + [134149] = 7, + ACTIONS(7034), 1, + sym_escape_sequence, + ACTIONS(7036), 1, + anon_sym_BQUOTE, + ACTIONS(7038), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7040), 1, + sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134303] = 4, - ACTIONS(4633), 1, - anon_sym_LPAREN, - STATE(2350), 1, - sym_arguments, + STATE(3787), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4296), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134174] = 7, + ACTIONS(7034), 1, + sym_escape_sequence, + ACTIONS(7038), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7040), 1, + sym__template_chars, + ACTIONS(7042), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4294), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134322] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6709), 1, - anon_sym_extends, + STATE(3787), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4296), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134199] = 7, + ACTIONS(7034), 1, + sym_escape_sequence, + ACTIONS(7038), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7040), 1, + sym__template_chars, + ACTIONS(7044), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7048), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134343] = 6, - ACTIONS(6470), 1, + STATE(3787), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + STATE(4296), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [134224] = 6, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(7028), 1, + ACTIONS(7046), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, + ACTIONS(7048), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, + ACTIONS(7050), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4352), 4, + STATE(4109), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134366] = 7, - ACTIONS(7050), 1, + [134247] = 7, + ACTIONS(7034), 1, sym_escape_sequence, - ACTIONS(7052), 1, - anon_sym_BQUOTE, - ACTIONS(7054), 1, + ACTIONS(7038), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7056), 1, + ACTIONS(7040), 1, sym__template_chars, + ACTIONS(7052), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3901), 2, + STATE(3787), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4306), 2, + STATE(4296), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134391] = 5, - ACTIONS(7040), 1, - anon_sym_LBRACE, - ACTIONS(7058), 1, - anon_sym_DOT, - STATE(4075), 1, - sym_statement_block, + [134272] = 5, + ACTIONS(6709), 1, + anon_sym_AMP, + ACTIONS(6711), 1, + anon_sym_PIPE, + ACTIONS(6713), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1717), 5, + ACTIONS(7054), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134412] = 6, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(7028), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, - anon_sym_QMARK_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4353), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134435] = 3, - ACTIONS(6711), 1, + [134293] = 3, + ACTIONS(6725), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 7, + ACTIONS(4093), 7, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, @@ -251065,184 +250961,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [134452] = 6, + [134310] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3210), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134325] = 7, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(7028), 1, + ACTIONS(6735), 1, + anon_sym_BANG, + STATE(4055), 1, + sym_type_annotation, + STATE(4542), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6733), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [134350] = 6, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(7046), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, + ACTIONS(7048), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, + ACTIONS(7050), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4111), 4, + STATE(4314), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134475] = 7, - ACTIONS(7050), 1, - sym_escape_sequence, - ACTIONS(7054), 1, - anon_sym_DOLLAR_LBRACE, + [134373] = 7, + ACTIONS(3424), 1, + sym_identifier, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_LBRACK, ACTIONS(7056), 1, - sym__template_chars, - ACTIONS(7060), 1, - anon_sym_BQUOTE, + anon_sym_enum, + STATE(4461), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3901), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4306), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134500] = 7, - ACTIONS(7054), 1, + STATE(3675), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134398] = 7, + ACTIONS(7038), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7056), 1, + ACTIONS(7040), 1, sym__template_chars, - ACTIONS(7062), 1, + ACTIONS(7058), 1, sym_escape_sequence, - ACTIONS(7064), 1, + ACTIONS(7060), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3789), 2, + STATE(3894), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4306), 2, + STATE(4296), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134525] = 7, - ACTIONS(7054), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7056), 1, - sym__template_chars, + [134423] = 3, ACTIONS(7062), 1, - sym_escape_sequence, - ACTIONS(7066), 1, - anon_sym_BQUOTE, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3789), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4306), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134550] = 7, - ACTIONS(7054), 1, + ACTIONS(4087), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [134440] = 7, + ACTIONS(2344), 1, + anon_sym_DQUOTE, + ACTIONS(2346), 1, + anon_sym_SQUOTE, + ACTIONS(6749), 1, + sym_identifier, + STATE(5428), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6751), 2, + anon_sym_type, + anon_sym_typeof, + STATE(4762), 2, + sym__module_export_name, + sym_string, + [134465] = 7, + ACTIONS(7034), 1, + sym_escape_sequence, + ACTIONS(7038), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7056), 1, + ACTIONS(7040), 1, sym__template_chars, - ACTIONS(7062), 1, - sym_escape_sequence, - ACTIONS(7068), 1, + ACTIONS(7064), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3789), 2, + STATE(3787), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4306), 2, + STATE(4021), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134575] = 9, - ACTIONS(1545), 1, - anon_sym_import, - ACTIONS(7070), 1, - sym_identifier, - ACTIONS(7072), 1, - sym_this, - STATE(1737), 1, - sym__type_query_member_expression, - STATE(1739), 1, - sym__type_query_subscript_expression, - STATE(1978), 1, - sym__type_query_call_expression, - STATE(1979), 1, - sym__type_query_instantiation_expression, - STATE(4413), 1, - sym_import, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [134604] = 6, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(7028), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, - anon_sym_QMARK_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4109), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134627] = 4, - ACTIONS(6672), 1, - anon_sym_LT, - STATE(2948), 1, - sym_type_arguments, + [134490] = 3, + ACTIONS(6725), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 6, - anon_sym_as, + ACTIONS(4111), 7, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [134646] = 7, - ACTIONS(7054), 1, + [134507] = 7, + ACTIONS(7038), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7056), 1, + ACTIONS(7040), 1, sym__template_chars, - ACTIONS(7062), 1, + ACTIONS(7058), 1, sym_escape_sequence, - ACTIONS(7074), 1, + ACTIONS(7066), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3789), 2, + STATE(3894), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4021), 2, + STATE(4296), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134671] = 3, - ACTIONS(7076), 1, - anon_sym_is, + [134532] = 5, + ACTIONS(7028), 1, + anon_sym_LBRACE, + ACTIONS(7068), 1, + anon_sym_DOT, + STATE(4072), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 7, + ACTIONS(1717), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [134553] = 4, + ACTIONS(4627), 1, + anon_sym_LPAREN, + STATE(2351), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4457), 6, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_GT, anon_sym_extends, - [134688] = 2, + [134572] = 7, + ACTIONS(3424), 1, + sym_identifier, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_LBRACK, + ACTIONS(7070), 1, + anon_sym_enum, + STATE(4501), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3210), 8, + STATE(3675), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [134597] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3218), 8, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, @@ -251251,241 +251189,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [134703] = 6, - ACTIONS(6470), 1, - anon_sym_COLON, - ACTIONS(7028), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, - anon_sym_QMARK_COLON, + [134612] = 4, + ACTIONS(6676), 1, + anon_sym_LT, + STATE(3038), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4311), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [134726] = 6, - ACTIONS(6470), 1, + ACTIONS(4087), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [134631] = 5, + ACTIONS(6826), 1, + anon_sym_AMP, + ACTIONS(6828), 1, + anon_sym_PIPE, + ACTIONS(6830), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6779), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [134652] = 6, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(7028), 1, + ACTIONS(7046), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, + ACTIONS(7048), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, + ACTIONS(7050), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4334), 4, + STATE(4094), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134749] = 7, - ACTIONS(7054), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7056), 1, - sym__template_chars, - ACTIONS(7062), 1, - sym_escape_sequence, - ACTIONS(7078), 1, - anon_sym_BQUOTE, + [134675] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3789), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(4306), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134774] = 5, - ACTIONS(6824), 1, + ACTIONS(3214), 8, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - ACTIONS(6826), 1, anon_sym_PIPE, - ACTIONS(6828), 1, anon_sym_extends, + [134690] = 6, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(7046), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7048), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7050), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6782), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [134795] = 5, - ACTIONS(6705), 1, + STATE(4087), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134713] = 5, + ACTIONS(6709), 1, anon_sym_AMP, - ACTIONS(6707), 1, + ACTIONS(6711), 1, anon_sym_PIPE, - ACTIONS(6709), 1, + ACTIONS(6713), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7080), 5, + ACTIONS(7072), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [134816] = 7, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, + [134734] = 9, + ACTIONS(1545), 1, + anon_sym_import, + ACTIONS(7074), 1, + sym_identifier, + ACTIONS(7076), 1, + sym_this, + STATE(2980), 1, + sym__type_query_member_expression, + STATE(2981), 1, + sym__type_query_subscript_expression, + STATE(3280), 1, + sym__type_query_call_expression, + STATE(3397), 1, + sym__type_query_instantiation_expression, + STATE(4460), 1, + sym_import, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [134763] = 6, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(6765), 1, - anon_sym_BANG, - STATE(4056), 1, + ACTIONS(7046), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7048), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7050), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4090), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - STATE(4552), 1, - sym__initializer, + [134786] = 9, + ACTIONS(1545), 1, + anon_sym_import, + ACTIONS(7078), 1, + sym_identifier, + ACTIONS(7080), 1, + sym_this, + STATE(2935), 1, + sym__type_query_member_expression, + STATE(2937), 1, + sym__type_query_subscript_expression, + STATE(3128), 1, + sym__type_query_call_expression, + STATE(3229), 1, + sym__type_query_instantiation_expression, + STATE(4398), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6763), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [134841] = 9, + [134815] = 9, ACTIONS(1545), 1, anon_sym_import, ACTIONS(7082), 1, sym_identifier, ACTIONS(7084), 1, sym_this, - STATE(2956), 1, + STATE(2880), 1, sym__type_query_member_expression, - STATE(2957), 1, + STATE(2882), 1, sym__type_query_subscript_expression, - STATE(3290), 1, + STATE(2925), 1, sym__type_query_call_expression, - STATE(3462), 1, + STATE(3044), 1, sym__type_query_instantiation_expression, - STATE(4465), 1, + STATE(4409), 1, sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - [134870] = 7, - ACTIONS(3424), 1, - sym_identifier, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(7086), 1, - anon_sym_enum, - STATE(4422), 1, - sym_variable_declarator, + [134844] = 6, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(7046), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7048), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7050), 1, + anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3673), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [134895] = 2, + STATE(4333), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134867] = 9, + ACTIONS(1545), 1, + anon_sym_import, + ACTIONS(7084), 1, + sym_this, + ACTIONS(7086), 1, + sym_identifier, + STATE(2925), 1, + sym__type_query_call_expression, + STATE(3044), 1, + sym__type_query_instantiation_expression, + STATE(3168), 1, + sym__type_query_member_expression, + STATE(3210), 1, + sym__type_query_subscript_expression, + STATE(4519), 1, + sym_import, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3214), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [134910] = 7, - ACTIONS(7054), 1, + [134896] = 7, + ACTIONS(7034), 1, + sym_escape_sequence, + ACTIONS(7038), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7056), 1, + ACTIONS(7040), 1, sym__template_chars, - ACTIONS(7062), 1, - sym_escape_sequence, ACTIONS(7088), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3789), 2, + STATE(3787), 2, sym_template_substitution, aux_sym_template_string_repeat1, - STATE(4306), 2, + STATE(4296), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [134935] = 6, - ACTIONS(6470), 1, + [134921] = 6, + ACTIONS(6478), 1, anon_sym_COLON, - ACTIONS(7028), 1, + ACTIONS(7046), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7030), 1, + ACTIONS(7048), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7032), 1, + ACTIONS(7050), 1, anon_sym_QMARK_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4087), 4, + STATE(4350), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134944] = 6, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(7046), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7048), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7050), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4108), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [134958] = 9, + [134967] = 6, + ACTIONS(6478), 1, + anon_sym_COLON, + ACTIONS(7046), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7048), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7050), 1, + anon_sym_QMARK_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4351), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [134990] = 9, ACTIONS(1545), 1, anon_sym_import, ACTIONS(7090), 1, sym_identifier, ACTIONS(7092), 1, sym_this, - STATE(1505), 1, - sym__type_query_subscript_expression, - STATE(1506), 1, + STATE(1504), 1, sym__type_query_member_expression, - STATE(1631), 1, + STATE(1508), 1, + sym__type_query_subscript_expression, + STATE(1622), 1, sym__type_query_call_expression, - STATE(1633), 1, + STATE(1627), 1, sym__type_query_instantiation_expression, - STATE(4520), 1, + STATE(4510), 1, sym_import, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [134987] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3218), 8, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [135002] = 3, - ACTIONS(6711), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4085), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, [135019] = 8, ACTIONS(219), 1, anon_sym_LBRACE_PIPE, @@ -251495,297 +251495,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(7096), 1, anon_sym_extends, - STATE(903), 1, + STATE(904), 1, sym_object_type, - STATE(4378), 1, + STATE(4377), 1, sym_type_parameters, - STATE(5110), 1, + STATE(5107), 1, sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135045] = 8, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(4637), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(2188), 1, - sym_arguments, - STATE(5326), 1, - sym_optional_chain, - STATE(5332), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [135071] = 4, - ACTIONS(4087), 1, + [135045] = 4, + ACTIONS(4085), 1, anon_sym_extends, ACTIONS(7098), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 5, + ACTIONS(4087), 5, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_GT, + [135063] = 8, + ACTIONS(4627), 1, + anon_sym_LPAREN, + ACTIONS(4631), 1, + anon_sym_DOT, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(6063), 1, + anon_sym_LT, + STATE(2189), 1, + sym_arguments, + STATE(5207), 1, + sym_type_arguments, + STATE(5243), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, [135089] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4220), 1, + STATE(4218), 1, sym_type_annotation, - STATE(4798), 1, + STATE(4793), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135111] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4224), 1, + STATE(4220), 1, sym_type_annotation, - STATE(4800), 1, + STATE(4796), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135133] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4249), 1, + STATE(4246), 1, sym_type_annotation, - STATE(4836), 1, + STATE(4825), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135155] = 8, - ACTIONS(6733), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, STATE(2279), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, STATE(5393), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, [135181] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4265), 1, + STATE(4263), 1, sym_type_annotation, - STATE(4872), 1, + STATE(4863), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135203] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4266), 1, + STATE(4264), 1, sym_type_annotation, - STATE(4874), 1, + STATE(4869), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135225] = 8, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - ACTIONS(6868), 1, + ACTIONS(6832), 1, anon_sym_LBRACE, STATE(779), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5436), 1, + STATE(5435), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, [135251] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4273), 1, + STATE(4269), 1, sym_type_annotation, - STATE(4893), 1, + STATE(4885), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135273] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4275), 1, + STATE(4273), 1, sym_type_annotation, - STATE(4896), 1, + STATE(4890), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135295] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4278), 1, + STATE(4276), 1, sym_type_annotation, - STATE(4900), 1, + STATE(4894), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135317] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4282), 1, + STATE(4280), 1, sym_type_annotation, - STATE(4903), 1, + STATE(4897), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135339] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4290), 1, + STATE(4289), 1, sym_type_annotation, - STATE(4919), 1, + STATE(4911), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135361] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4291), 1, + STATE(4290), 1, sym_type_annotation, - STATE(4921), 1, + STATE(4915), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135383] = 8, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, ACTIONS(7100), 1, anon_sym_COLON, ACTIONS(7102), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5477), 1, + STATE(5329), 1, sym__call_signature, + STATE(5354), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, [135409] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4300), 1, + STATE(4301), 1, sym_type_annotation, - STATE(4936), 1, + STATE(4938), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135431] = 4, - ACTIONS(7040), 1, + ACTIONS(7028), 1, anon_sym_LBRACE, - STATE(4075), 1, + STATE(4072), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, @@ -251797,51 +251797,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_PIPE_RBRACE, [135449] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4310), 1, + STATE(4308), 1, sym_type_annotation, - STATE(4962), 1, + STATE(4963), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135471] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4122), 1, + STATE(4121), 1, sym_type_annotation, - STATE(4671), 1, + STATE(4666), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135493] = 8, - ACTIONS(6733), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, STATE(2292), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5463), 1, + STATE(5462), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, @@ -251850,7 +251850,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 7, + ACTIONS(1887), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -251862,7 +251862,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1897), 7, + ACTIONS(1891), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -251871,13 +251871,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_PIPE_RBRACE, [135547] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4351), 1, + STATE(4353), 1, sym_type_annotation, - STATE(5031), 1, + STATE(5039), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -251887,13 +251887,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, [135569] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(4355), 1, sym_type_annotation, - STATE(5039), 1, + STATE(5041), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -251903,13 +251903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, [135591] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4374), 1, + STATE(4373), 1, sym_type_annotation, - STATE(5103), 1, + STATE(5102), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -251919,13 +251919,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, [135613] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(4376), 1, sym_type_annotation, - STATE(5105), 1, + STATE(5104), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -251934,23 +251934,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [135635] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4131), 1, - sym_type_annotation, - STATE(4681), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6688), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135657] = 2, + [135635] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -251962,120 +251946,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [135671] = 8, - ACTIONS(4031), 1, + [135649] = 8, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, STATE(1656), 1, sym_arguments, - STATE(5172), 1, - sym_optional_chain, STATE(5174), 1, + sym_optional_chain, + STATE(5178), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135697] = 6, - ACTIONS(6462), 1, + [135675] = 6, + ACTIONS(6470), 1, anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(4124), 1, + sym_type_annotation, + STATE(4673), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6678), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [135697] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4134), 1, + STATE(4132), 1, sym_type_annotation, - STATE(4689), 1, + STATE(4678), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135719] = 8, - ACTIONS(1551), 1, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, ACTIONS(7106), 1, sym_identifier, ACTIONS(7108), 1, anon_sym_DOT, - STATE(764), 1, + STATE(762), 1, sym_nested_identifier, - STATE(785), 1, + STATE(800), 1, sym_string, - STATE(930), 1, + STATE(882), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, [135745] = 8, - ACTIONS(6757), 1, + ACTIONS(6771), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, STATE(1666), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5396), 1, + STATE(5413), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, [135771] = 8, - ACTIONS(6757), 1, + ACTIONS(6771), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - STATE(2542), 1, + STATE(2545), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, STATE(5171), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [135797] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4157), 1, - sym_type_annotation, - STATE(4711), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6688), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [135819] = 8, - ACTIONS(1635), 1, + [135797] = 8, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(7110), 1, sym_identifier, ACTIONS(7112), 1, anon_sym_DOT, - STATE(3484), 1, + STATE(3472), 1, sym_nested_identifier, STATE(3530), 1, sym_string, @@ -252084,7 +252068,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [135845] = 8, + [135823] = 8, ACTIONS(1047), 1, anon_sym_LBRACE_PIPE, ACTIONS(1627), 1, @@ -252093,505 +252077,537 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(7096), 1, anon_sym_extends, - STATE(3940), 1, + STATE(3938), 1, sym_type_parameters, - STATE(4035), 1, + STATE(4036), 1, sym_object_type, - STATE(4562), 1, + STATE(4560), 1, sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, + [135849] = 6, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(6063), 1, + anon_sym_LT, + STATE(1673), 1, + sym_arguments, + STATE(5284), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7114), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, [135871] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4158), 1, + STATE(4157), 1, sym_type_annotation, - STATE(4712), 1, + STATE(4707), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135893] = 6, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(1673), 1, - sym_arguments, - STATE(5253), 1, - sym_type_arguments, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(4158), 1, + sym_type_annotation, + STATE(4708), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7114), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, + ACTIONS(6678), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, [135915] = 8, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, ACTIONS(7102), 1, anon_sym_QMARK, ACTIONS(7116), 1, anon_sym_COLON, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5477), 1, + STATE(5329), 1, sym__call_signature, + STATE(5354), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, [135941] = 8, - ACTIONS(6733), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - STATE(2244), 1, + STATE(2248), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5460), 1, + STATE(5469), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, [135967] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(4175), 1, sym_type_annotation, - STATE(4736), 1, + STATE(4729), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [135989] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4176), 1, - sym_type_annotation, - STATE(4737), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6688), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136011] = 6, - ACTIONS(6462), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4182), 1, + STATE(4176), 1, sym_type_annotation, - STATE(4745), 1, + STATE(4730), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136033] = 8, - ACTIONS(4633), 1, + [136011] = 8, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, ACTIONS(7118), 1, anon_sym_DOT, STATE(1984), 1, sym_arguments, - STATE(5326), 1, - sym_optional_chain, - STATE(5332), 1, + STATE(5207), 1, sym_type_arguments, + STATE(5243), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136059] = 6, - ACTIONS(6462), 1, + [136037] = 6, + ACTIONS(6470), 1, anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(4182), 1, + sym_type_annotation, + STATE(4740), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6678), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136059] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(4183), 1, sym_type_annotation, - STATE(4746), 1, + STATE(4741), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [136081] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(4186), 1, sym_type_annotation, - STATE(4749), 1, + STATE(4743), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [136103] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4190), 1, + STATE(4189), 1, sym_type_annotation, - STATE(4754), 1, + STATE(4749), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [136125] = 8, - ACTIONS(6757), 1, + ACTIONS(6771), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, STATE(1692), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5272), 1, + STATE(5279), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, [136151] = 8, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - ACTIONS(6868), 1, + ACTIONS(6832), 1, anon_sym_LBRACE, STATE(4153), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5277), 1, + STATE(5281), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, [136177] = 8, - ACTIONS(6757), 1, + ACTIONS(6771), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, STATE(1694), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5294), 1, + STATE(5300), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, [136203] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4232), 1, + STATE(4231), 1, sym_type_annotation, - STATE(4814), 1, + STATE(4811), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [136225] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4234), 1, + STATE(4233), 1, sym_type_annotation, - STATE(4815), 1, + STATE(4813), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [136247] = 8, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, STATE(2031), 1, sym_arguments, - STATE(3480), 1, + STATE(3492), 1, sym_type_arguments, - STATE(5326), 1, + STATE(5243), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, [136273] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4246), 1, + STATE(4240), 1, sym_type_annotation, - STATE(4829), 1, + STATE(4827), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [136295] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(4252), 1, sym_type_annotation, - STATE(4839), 1, + STATE(4832), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [136317] = 8, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - ACTIONS(6868), 1, + ACTIONS(6832), 1, anon_sym_LBRACE, - STATE(4200), 1, + STATE(4199), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5374), 1, + STATE(5371), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, [136343] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4255), 1, + STATE(4253), 1, sym_type_annotation, - STATE(4843), 1, + STATE(4841), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [136365] = 3, - ACTIONS(6788), 1, + ACTIONS(6773), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4097), 6, + ACTIONS(4111), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [136381] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4258), 1, - sym_type_annotation, - STATE(4854), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6688), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136403] = 8, - ACTIONS(6733), 1, + [136381] = 8, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - STATE(2217), 1, + STATE(2218), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, STATE(5394), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, + [136407] = 6, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(4256), 1, + sym_type_annotation, + STATE(4853), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6678), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, [136429] = 8, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - ACTIONS(6868), 1, + ACTIONS(6832), 1, anon_sym_LBRACE, - STATE(4216), 1, + STATE(4215), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5410), 1, + STATE(5409), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, [136455] = 8, - ACTIONS(6757), 1, + ACTIONS(6771), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, STATE(1703), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5426), 1, + STATE(5423), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, [136481] = 8, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - ACTIONS(6868), 1, + ACTIONS(6832), 1, anon_sym_LBRACE, STATE(4250), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5447), 1, + STATE(5453), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, [136507] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(4254), 1, sym_type_annotation, - STATE(4849), 1, + STATE(4848), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6680), 3, + ACTIONS(6699), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [136529] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4264), 1, + STATE(4258), 1, sym_type_annotation, - STATE(4865), 1, + STATE(4862), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136551] = 2, + [136551] = 6, + ACTIONS(6622), 1, + anon_sym_EQ, + STATE(4427), 1, + sym_constraint, + STATE(5330), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6627), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(7120), 2, + anon_sym_COMMA, + anon_sym_GT, + [136573] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6830), 7, + ACTIONS(6816), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -252599,39 +252615,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [136565] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [136587] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(4285), 1, sym_type_annotation, - STATE(4907), 1, + STATE(4903), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136587] = 6, - ACTIONS(6608), 1, - anon_sym_EQ, - STATE(4432), 1, - sym_constraint, - STATE(5334), 1, - sym_default_type, + [136609] = 8, + ACTIONS(6812), 1, + anon_sym_extends, + ACTIONS(6814), 1, + anon_sym_implements, + ACTIONS(6942), 1, + anon_sym_LBRACE, + STATE(230), 1, + sym_class_body, + STATE(4531), 1, + sym_extends_clause, + STATE(5248), 1, + sym_class_heritage, + STATE(5879), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6613), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(7120), 2, - anon_sym_COMMA, - anon_sym_GT, - [136609] = 2, + [136635] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -252643,11 +252661,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [136623] = 2, + [136649] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6896), 7, + ACTIONS(6982), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -252655,7 +252673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [136637] = 2, + [136663] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -252667,343 +252685,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [136651] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [136677] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4296), 1, + STATE(4294), 1, sym_type_annotation, - STATE(4932), 1, + STATE(4929), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136673] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [136699] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4297), 1, + STATE(4295), 1, sym_type_annotation, - STATE(4934), 1, + STATE(4931), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136695] = 8, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(230), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5244), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, [136721] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4305), 1, + STATE(4304), 1, sym_type_annotation, - STATE(4949), 1, + STATE(4947), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [136743] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4307), 1, + STATE(4305), 1, sym_type_annotation, - STATE(4950), 1, + STATE(4951), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [136765] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4308), 1, + STATE(4306), 1, sym_type_annotation, - STATE(4954), 1, + STATE(4955), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [136787] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4309), 1, + STATE(4307), 1, sym_type_annotation, - STATE(4955), 1, + STATE(4956), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [136809] = 8, - ACTIONS(6733), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - STATE(2277), 1, + STATE(2278), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5364), 1, + STATE(5366), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136835] = 8, + [136835] = 6, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_LBRACK, + ACTIONS(7122), 1, + sym_identifier, + STATE(4440), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3675), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [136857] = 8, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7122), 1, - sym_identifier, ACTIONS(7124), 1, + sym_identifier, + ACTIONS(7126), 1, anon_sym_STAR, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5306), 1, + STATE(5260), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136861] = 8, - ACTIONS(4031), 1, + [136883] = 6, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(4312), 1, + sym_type_annotation, + STATE(4973), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6678), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [136905] = 8, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, - ACTIONS(7126), 1, + ACTIONS(7128), 1, anon_sym_DOT, - STATE(2438), 1, + STATE(2441), 1, sym_arguments, - STATE(5172), 1, - sym_optional_chain, STATE(5174), 1, + sym_optional_chain, + STATE(5178), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136887] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4315), 1, - sym_type_annotation, - STATE(4973), 1, - sym__initializer, + [136931] = 8, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6476), 1, + anon_sym_LPAREN, + ACTIONS(7130), 1, + sym_identifier, + ACTIONS(7132), 1, + anon_sym_STAR, + STATE(3893), 1, + sym_formal_parameters, + STATE(5260), 1, + sym__call_signature, + STATE(5354), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [136909] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [136957] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4317), 1, + STATE(4315), 1, sym_type_annotation, - STATE(4981), 1, + STATE(4980), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6688), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [136931] = 8, - ACTIONS(4031), 1, + [136979] = 8, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, - STATE(2444), 1, + STATE(2448), 1, sym_arguments, - STATE(3220), 1, + STATE(3217), 1, sym_type_arguments, - STATE(5172), 1, + STATE(5174), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136957] = 8, - ACTIONS(6733), 1, + [137005] = 8, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - STATE(2311), 1, + STATE(2312), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5438), 1, + STATE(5437), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [136983] = 4, - ACTIONS(6470), 1, + [137031] = 4, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4048), 1, + STATE(4047), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7128), 5, + ACTIONS(7134), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137001] = 4, - ACTIONS(6470), 1, + [137049] = 4, + ACTIONS(6478), 1, anon_sym_COLON, STATE(4274), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7130), 5, + ACTIONS(7136), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137019] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [137067] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4010), 1, + STATE(4008), 1, sym_type_annotation, - STATE(4895), 1, + STATE(4898), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6680), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137041] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [137089] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4030), 1, + STATE(4029), 1, sym_type_annotation, - STATE(5024), 1, + STATE(5025), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6680), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137063] = 8, - ACTIONS(4031), 1, + [137111] = 8, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, - ACTIONS(7132), 1, - anon_sym_DOT, - STATE(2153), 1, - sym_arguments, - STATE(5172), 1, - sym_optional_chain, - STATE(5174), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [137089] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4035), 1, + ACTIONS(7138), 1, anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6066), 1, - anon_sym_LT, STATE(2154), 1, sym_arguments, - STATE(3220), 1, - sym_type_arguments, - STATE(5172), 1, + STATE(5174), 1, sym_optional_chain, + STATE(5178), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137115] = 2, + [137137] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 7, + ACTIONS(3637), 7, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -253011,59 +253027,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [137129] = 6, + [137151] = 6, ACTIONS(3426), 1, anon_sym_LBRACE, ACTIONS(3428), 1, anon_sym_LBRACK, - ACTIONS(7134), 1, + ACTIONS(7122), 1, sym_identifier, - STATE(4697), 1, + STATE(4698), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3673), 3, + STATE(3675), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [137151] = 6, + [137173] = 8, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(6063), 1, + anon_sym_LT, + STATE(2155), 1, + sym_arguments, + STATE(3217), 1, + sym_type_arguments, + STATE(5174), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137199] = 6, ACTIONS(3426), 1, anon_sym_LBRACE, ACTIONS(3428), 1, anon_sym_LBRACK, - ACTIONS(7136), 1, + ACTIONS(7140), 1, sym_identifier, - STATE(4443), 1, + STATE(4440), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3438), 3, + STATE(3441), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [137173] = 6, + [137221] = 6, ACTIONS(3426), 1, anon_sym_LBRACE, ACTIONS(3428), 1, anon_sym_LBRACK, - ACTIONS(7138), 1, + ACTIONS(7142), 1, sym_identifier, - STATE(4464), 1, + STATE(4461), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3440), 3, + STATE(3443), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [137195] = 2, + [137243] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6818), 7, + ACTIONS(6850), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -253071,11 +253105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [137209] = 2, + [137257] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6854), 7, + ACTIONS(6874), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -253083,28 +253117,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [137223] = 7, + [137271] = 7, ACTIONS(3550), 1, anon_sym_COLON, - ACTIONS(7140), 1, - anon_sym_EQ, ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, anon_sym_QMARK, - STATE(4427), 1, + STATE(4400), 1, sym_type_annotation, - STATE(5263), 1, + STATE(5374), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7142), 2, + ACTIONS(7146), 2, anon_sym_COMMA, anon_sym_RPAREN, - [137247] = 2, + [137295] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6930), 7, + ACTIONS(6824), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -253112,82 +253146,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [137261] = 4, + [137309] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5365), 1, + STATE(5257), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7146), 5, + ACTIONS(7150), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137279] = 8, - ACTIONS(4633), 1, + [137327] = 8, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, - ACTIONS(7148), 1, + ACTIONS(7152), 1, anon_sym_DOT, - STATE(2516), 1, + STATE(2517), 1, sym_arguments, - STATE(5326), 1, - sym_optional_chain, - STATE(5332), 1, + STATE(5207), 1, sym_type_arguments, + STATE(5243), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137305] = 8, - ACTIONS(4031), 1, + [137353] = 8, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4035), 1, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, - STATE(1622), 1, + STATE(1529), 1, sym_arguments, - STATE(3220), 1, + STATE(3217), 1, sym_type_arguments, - STATE(5172), 1, + STATE(5174), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137331] = 8, - ACTIONS(4633), 1, + [137379] = 8, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4637), 1, + ACTIONS(4631), 1, anon_sym_DOT, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, - STATE(2468), 1, + STATE(2466), 1, sym_arguments, - STATE(3480), 1, + STATE(3492), 1, sym_type_arguments, - STATE(5326), 1, + STATE(5243), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137357] = 6, - ACTIONS(4633), 1, + [137405] = 6, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, - STATE(2120), 1, + STATE(2121), 1, sym_arguments, - STATE(5251), 1, + STATE(5282), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, @@ -253196,647 +253230,653 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, sym_identifier, sym_private_property_identifier, - [137379] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [137427] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4354), 1, + STATE(4352), 1, sym_type_annotation, - STATE(5035), 1, + STATE(5034), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6674), 3, + ACTIONS(6684), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137401] = 7, - ACTIONS(2338), 1, + [137449] = 7, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(6717), 1, + ACTIONS(6715), 1, sym_identifier, - ACTIONS(6743), 1, + ACTIONS(6783), 1, anon_sym_type, - STATE(5179), 1, + STATE(5169), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5490), 2, + STATE(5600), 2, sym__module_export_name, sym_string, - [137425] = 8, - ACTIONS(4031), 1, + [137473] = 8, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, - ACTIONS(7150), 1, + ACTIONS(7154), 1, anon_sym_DOT, - STATE(2534), 1, + STATE(2609), 1, sym_arguments, - STATE(5172), 1, - sym_optional_chain, STATE(5174), 1, + sym_optional_chain, + STATE(5178), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137451] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3980), 1, - sym_type_annotation, - STATE(4743), 1, - sym__initializer, + [137499] = 8, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(3971), 1, + anon_sym_DOT, + ACTIONS(4714), 1, + anon_sym_QMARK_DOT, + ACTIONS(6063), 1, + anon_sym_LT, + STATE(2531), 1, + sym_arguments, + STATE(3217), 1, + sym_type_arguments, + STATE(5174), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137473] = 8, - ACTIONS(4633), 1, + [137525] = 8, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, - ACTIONS(7152), 1, + ACTIONS(7156), 1, anon_sym_DOT, STATE(1951), 1, sym_arguments, - STATE(5172), 1, - sym_optional_chain, STATE(5174), 1, + sym_optional_chain, + STATE(5178), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137499] = 8, - ACTIONS(4035), 1, + [137551] = 8, + ACTIONS(3971), 1, anon_sym_DOT, - ACTIONS(4633), 1, + ACTIONS(4627), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(6352), 1, + ACTIONS(6362), 1, anon_sym_LT, STATE(1952), 1, sym_arguments, - STATE(3282), 1, + STATE(3230), 1, sym_type_arguments, - STATE(5172), 1, + STATE(5174), 1, sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137525] = 6, + [137577] = 6, ACTIONS(3426), 1, anon_sym_LBRACE, ACTIONS(3428), 1, anon_sym_LBRACK, - ACTIONS(7134), 1, + ACTIONS(7122), 1, sym_identifier, - STATE(4517), 1, + STATE(4481), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3673), 3, + STATE(3675), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [137547] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [137599] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4357), 1, + STATE(4356), 1, sym_type_annotation, STATE(5048), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137569] = 6, + [137621] = 6, ACTIONS(3426), 1, anon_sym_LBRACE, ACTIONS(3428), 1, anon_sym_LBRACK, - ACTIONS(7134), 1, + ACTIONS(7122), 1, sym_identifier, - STATE(4422), 1, + STATE(4501), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3673), 3, + STATE(3675), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [137591] = 8, + [137643] = 8, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7154), 1, + ACTIONS(7158), 1, sym_identifier, - ACTIONS(7156), 1, + ACTIONS(7160), 1, anon_sym_STAR, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5267), 1, + STATE(5258), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137617] = 8, - ACTIONS(6864), 1, + [137669] = 8, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - ACTIONS(6900), 1, + ACTIONS(6856), 1, anon_sym_LBRACE, STATE(808), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5301), 1, + STATE(5305), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137643] = 8, - ACTIONS(6672), 1, + [137695] = 8, + ACTIONS(6676), 1, anon_sym_LT, - ACTIONS(7158), 1, + ACTIONS(7162), 1, anon_sym_LBRACE, - ACTIONS(7160), 1, + ACTIONS(7164), 1, anon_sym_COMMA, - ACTIONS(7162), 1, + ACTIONS(7166), 1, anon_sym_DOT, - ACTIONS(7164), 1, + ACTIONS(7168), 1, anon_sym_LBRACE_PIPE, - STATE(4419), 1, + STATE(4416), 1, aux_sym_extends_type_clause_repeat1, - STATE(4944), 1, + STATE(4939), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137669] = 8, + [137721] = 6, + ACTIONS(6622), 1, + anon_sym_EQ, + STATE(4443), 1, + sym_constraint, + STATE(5261), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6627), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(7170), 2, + anon_sym_COMMA, + anon_sym_GT, + [137743] = 8, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7166), 1, + ACTIONS(7172), 1, sym_identifier, - ACTIONS(7168), 1, + ACTIONS(7174), 1, anon_sym_STAR, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5402), 1, + STATE(5414), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137695] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [137769] = 8, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6812), 1, + anon_sym_extends, + ACTIONS(6814), 1, + anon_sym_implements, + STATE(2114), 1, + sym_class_body, + STATE(4531), 1, + sym_extends_clause, + STATE(5220), 1, + sym_class_heritage, + STATE(5879), 1, + sym_implements_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [137795] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4359), 1, + STATE(4360), 1, sym_type_annotation, STATE(5057), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137717] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [137817] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(4361), 1, sym_type_annotation, - STATE(5060), 1, + STATE(5061), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137739] = 6, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(7134), 1, - sym_identifier, - STATE(4443), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(3673), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [137761] = 8, - ACTIONS(4031), 1, + [137839] = 8, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, - ACTIONS(7170), 1, + ACTIONS(7176), 1, anon_sym_DOT, - STATE(1545), 1, + STATE(1551), 1, sym_arguments, - STATE(5172), 1, - sym_optional_chain, STATE(5174), 1, + sym_optional_chain, + STATE(5178), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137787] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [137865] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(4363), 1, sym_type_annotation, - STATE(5067), 1, + STATE(5068), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137809] = 4, + [137887] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5453), 1, + STATE(5452), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7172), 5, + ACTIONS(7178), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137827] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [137905] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(4364), 1, sym_type_annotation, - STATE(5068), 1, + STATE(5069), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137849] = 4, + [137927] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5164), 1, + STATE(5161), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7172), 5, + ACTIONS(7178), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137867] = 8, - ACTIONS(6864), 1, + [137945] = 8, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - ACTIONS(6898), 1, + ACTIONS(6942), 1, anon_sym_LBRACE, STATE(232), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5320), 1, + STATE(5321), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [137893] = 4, + [137971] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5461), 1, + STATE(5458), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7174), 5, + ACTIONS(7180), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [137911] = 3, - ACTIONS(6788), 1, + [137989] = 3, + ACTIONS(6773), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4085), 6, + ACTIONS(4093), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [137927] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138005] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(4365), 1, sym_type_annotation, - STATE(5070), 1, + STATE(5071), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137949] = 3, - ACTIONS(7176), 1, + [138027] = 3, + ACTIONS(7182), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4089), 6, + ACTIONS(4087), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [137965] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138043] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(4366), 1, sym_type_annotation, - STATE(5071), 1, + STATE(5072), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [137987] = 5, - ACTIONS(7178), 1, + [138065] = 5, + ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(7186), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7188), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 4, + ACTIONS(4306), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - [138007] = 3, - ACTIONS(7178), 1, + [138085] = 3, + ACTIONS(7184), 1, anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 6, + ACTIONS(4362), 6, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138023] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138101] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4368), 1, + STATE(4367), 1, sym_type_annotation, - STATE(5075), 1, + STATE(5076), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138045] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138123] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4369), 1, + STATE(4368), 1, sym_type_annotation, - STATE(5077), 1, + STATE(5078), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138067] = 5, - ACTIONS(7178), 1, + [138145] = 5, + ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(7186), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7188), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 4, + ACTIONS(4223), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - [138087] = 5, - ACTIONS(7178), 1, + [138165] = 5, + ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(7186), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7188), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4228), 4, + ACTIONS(4231), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - [138107] = 5, - ACTIONS(7178), 1, + [138185] = 5, + ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(7186), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7188), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 4, + ACTIONS(4437), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - [138127] = 5, - ACTIONS(7178), 1, + [138205] = 5, + ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(7186), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7188), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4427), 4, + ACTIONS(4441), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - [138147] = 6, - ACTIONS(6608), 1, - anon_sym_EQ, - STATE(4452), 1, - sym_constraint, - STATE(5241), 1, - sym_default_type, + [138225] = 8, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6476), 1, + anon_sym_LPAREN, + ACTIONS(7190), 1, + sym_identifier, + ACTIONS(7192), 1, + anon_sym_STAR, + STATE(3893), 1, + sym_formal_parameters, + STATE(5270), 1, + sym__call_signature, + STATE(5354), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6613), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(7184), 2, - anon_sym_COMMA, - anon_sym_GT, - [138169] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138251] = 6, ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4371), 1, - sym_type_annotation, - STATE(5090), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138191] = 6, - ACTIONS(6462), 1, anon_sym_EQ, - ACTIONS(6470), 1, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4372), 1, + STATE(4370), 1, sym_type_annotation, - STATE(5096), 1, + STATE(5094), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138213] = 5, - ACTIONS(7178), 1, + [138273] = 5, + ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(7186), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7188), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4321), 4, + ACTIONS(4326), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - [138233] = 8, - ACTIONS(6864), 1, + [138293] = 8, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - ACTIONS(6868), 1, + ACTIONS(6832), 1, anon_sym_LBRACE, - STATE(794), 1, + STATE(788), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5327), 1, + STATE(5331), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138259] = 2, + [138319] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -253848,435 +253888,397 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [138273] = 8, - ACTIONS(6733), 1, - anon_sym_LBRACE, - ACTIONS(6864), 1, - anon_sym_extends, - ACTIONS(6866), 1, - anon_sym_implements, - STATE(2114), 1, - sym_class_body, - STATE(4758), 1, - sym_extends_clause, - STATE(5256), 1, - sym_class_heritage, - STATE(5777), 1, - sym_implements_clause, + [138333] = 6, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(4371), 1, + sym_type_annotation, + STATE(5096), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138299] = 8, - ACTIONS(6733), 1, + ACTIONS(6666), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [138355] = 8, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - STATE(2333), 1, + STATE(2334), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5338), 1, + STATE(5341), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138325] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138381] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4381), 1, + STATE(4380), 1, sym_type_annotation, - STATE(5118), 1, + STATE(5117), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138347] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138403] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4382), 1, + STATE(4381), 1, sym_type_annotation, - STATE(5120), 1, + STATE(5119), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138369] = 5, - ACTIONS(5278), 1, + [138425] = 5, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(5708), 1, + ACTIONS(5714), 1, anon_sym_RBRACE, - STATE(4940), 1, + STATE(4943), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [138389] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138445] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4020), 1, + STATE(4019), 1, sym_type_annotation, - STATE(4868), 1, + STATE(4865), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138411] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138467] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4031), 1, + STATE(4026), 1, sym_type_annotation, - STATE(4761), 1, + STATE(4607), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138433] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138489] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3986), 1, + STATE(3990), 1, sym_type_annotation, - STATE(4614), 1, + STATE(4682), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138455] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138511] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4001), 1, + STATE(4002), 1, sym_type_annotation, - STATE(4811), 1, + STATE(4807), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138477] = 4, + [138533] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5328), 1, + STATE(5332), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7186), 5, + ACTIONS(7194), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138495] = 4, + [138551] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5330), 1, + STATE(5334), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7188), 5, + ACTIONS(7196), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138513] = 4, + [138569] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5203), 1, + STATE(5208), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7188), 5, + ACTIONS(7196), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138531] = 4, + [138587] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5206), 1, + STATE(5211), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7186), 5, + ACTIONS(7194), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138549] = 8, - ACTIONS(6757), 1, + [138605] = 8, + ACTIONS(6771), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - STATE(2584), 1, + STATE(2590), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, - STATE(5355), 1, + STATE(5357), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [138575] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138631] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4056), 1, + STATE(4055), 1, sym_type_annotation, - STATE(4589), 1, + STATE(4594), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6763), 3, + ACTIONS(6733), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138597] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138653] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4104), 1, + STATE(4105), 1, sym_type_annotation, - STATE(4620), 1, + STATE(4623), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138619] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138675] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4120), 1, + STATE(4118), 1, sym_type_annotation, - STATE(4647), 1, + STATE(4637), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138641] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138697] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4148), 1, + STATE(4139), 1, sym_type_annotation, - STATE(4684), 1, + STATE(4665), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138663] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138719] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4180), 1, + STATE(4267), 1, sym_type_annotation, - STATE(4706), 1, + STATE(4731), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138685] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138741] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(4341), 1, sym_type_annotation, - STATE(5015), 1, + STATE(5014), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6666), 3, + ACTIONS(6686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138707] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7190), 1, - sym_identifier, - ACTIONS(7192), 1, - anon_sym_STAR, - STATE(3895), 1, - sym_formal_parameters, - STATE(5306), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138733] = 4, + [138763] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5202), 1, + STATE(5214), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 5, + ACTIONS(7198), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138751] = 4, + [138781] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5208), 1, + STATE(5218), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 5, + ACTIONS(7200), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138769] = 4, + [138799] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5230), 1, + STATE(5228), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 5, + ACTIONS(7198), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138787] = 4, + [138817] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5231), 1, + STATE(5230), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 5, + ACTIONS(7200), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138805] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138835] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4343), 1, + STATE(3908), 1, sym_type_annotation, - STATE(5017), 1, + STATE(5018), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138827] = 8, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7198), 1, - sym_identifier, - ACTIONS(7200), 1, - anon_sym_STAR, - STATE(3895), 1, - sym_formal_parameters, - STATE(5298), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [138853] = 4, + [138857] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5216), 1, + STATE(5210), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, @@ -254287,10 +254289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138871] = 4, + [138875] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5224), 1, + STATE(5239), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, @@ -254301,23 +254303,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138889] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [138893] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4147), 1, + STATE(4111), 1, sym_type_annotation, STATE(4837), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6676), 3, + ACTIONS(6664), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [138911] = 4, + [138915] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, STATE(5236), 1, @@ -254331,7 +254333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138929] = 4, + [138933] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, STATE(5237), 1, @@ -254345,10 +254347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138947] = 4, + [138951] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5398), 1, + STATE(5395), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, @@ -254359,10 +254361,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138965] = 4, + [138969] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5401), 1, + STATE(5397), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, @@ -254373,10 +254375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [138983] = 4, + [138987] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5243), 1, + STATE(5245), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, @@ -254387,10 +254389,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [139001] = 4, + [139005] = 6, + ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(3923), 1, + sym_type_annotation, + STATE(4771), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6666), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139027] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5180), 1, + STATE(5167), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, @@ -254401,24 +254419,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [139019] = 4, + [139045] = 4, ACTIONS(4593), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5726), 2, + ACTIONS(5727), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [139037] = 4, + [139063] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5182), 1, + STATE(5177), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, @@ -254429,26 +254447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [139055] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(3924), 1, - sym_type_annotation, - STATE(4776), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139077] = 4, + [139081] = 4, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5385), 1, + STATE(5388), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, @@ -254459,74 +254461,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [139095] = 4, + [139099] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3919), 1, + STATE(3929), 1, sym_type_annotation, + STATE(4523), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7216), 5, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [139113] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, + [139121] = 4, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3931), 1, + STATE(3919), 1, sym_type_annotation, - STATE(4850), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(7216), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [139135] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + anon_sym_PIPE_RBRACE, + [139139] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(3933), 1, sym_type_annotation, - STATE(5037), 1, + STATE(4952), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139157] = 8, - ACTIONS(4031), 1, + [139161] = 8, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(4707), 1, + ACTIONS(4714), 1, anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, - ACTIONS(7126), 1, + ACTIONS(7128), 1, anon_sym_DOT, - STATE(1545), 1, + STATE(1551), 1, sym_arguments, - STATE(5172), 1, - sym_optional_chain, STATE(5174), 1, + sym_optional_chain, + STATE(5178), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139183] = 4, - ACTIONS(6470), 1, + [139187] = 4, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4045), 1, + STATE(4044), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, @@ -254537,7 +254539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [139201] = 2, + [139205] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -254549,151 +254551,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_PIPE_RBRACE, - [139215] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139219] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4096), 1, + STATE(3956), 1, sym_type_annotation, - STATE(4621), 1, + STATE(4626), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6692), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139237] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139241] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3954), 1, + STATE(3972), 1, sym_type_annotation, - STATE(4630), 1, + STATE(4677), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139259] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139263] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3962), 1, + STATE(4098), 1, sym_type_annotation, - STATE(4656), 1, + STATE(4618), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6703), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139281] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139285] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4004), 1, + STATE(4000), 1, sym_type_annotation, - STATE(4830), 1, + STATE(4829), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139303] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139307] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4006), 1, + STATE(4004), 1, sym_type_annotation, - STATE(4840), 1, + STATE(4836), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139325] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139329] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4019), 1, + STATE(4018), 1, sym_type_annotation, STATE(4928), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139347] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139351] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4022), 1, + STATE(4020), 1, sym_type_annotation, - STATE(4957), 1, + STATE(4964), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139369] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139373] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4025), 1, + STATE(4022), 1, sym_type_annotation, - STATE(5005), 1, + STATE(4995), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139391] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139395] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4029), 1, + STATE(4025), 1, sym_type_annotation, - STATE(5006), 1, + STATE(5005), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139413] = 2, + [139417] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -254705,121 +254707,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_PIPE_RBRACE, - [139427] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139431] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4055), 1, + STATE(4050), 1, sym_type_annotation, - STATE(4540), 1, + STATE(4533), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139449] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139453] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4059), 1, + STATE(4054), 1, sym_type_annotation, - STATE(4555), 1, + STATE(4546), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139471] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139475] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4063), 1, + STATE(4057), 1, sym_type_annotation, - STATE(4561), 1, + STATE(4551), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139493] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139497] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4073), 1, + STATE(4059), 1, sym_type_annotation, - STATE(4570), 1, + STATE(4557), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139515] = 6, + [139519] = 6, ACTIONS(3426), 1, anon_sym_LBRACE, ACTIONS(3428), 1, anon_sym_LBRACK, - ACTIONS(7134), 1, + ACTIONS(7122), 1, sym_identifier, - STATE(4464), 1, + STATE(4461), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3673), 3, + STATE(3675), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [139537] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139541] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4081), 1, + STATE(4079), 1, sym_type_annotation, - STATE(4586), 1, + STATE(4572), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6678), 3, + ACTIONS(6666), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139559] = 8, - ACTIONS(6864), 1, + [139563] = 8, + ACTIONS(6812), 1, anon_sym_extends, - ACTIONS(6866), 1, + ACTIONS(6814), 1, anon_sym_implements, - ACTIONS(6900), 1, + ACTIONS(6856), 1, anon_sym_LBRACE, - STATE(850), 1, + STATE(851), 1, sym_class_body, - STATE(4758), 1, + STATE(4531), 1, sym_extends_clause, STATE(5189), 1, sym_class_heritage, - STATE(5777), 1, + STATE(5879), 1, sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139585] = 2, + [139589] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -254831,147 +254833,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_PIPE_RBRACE, - [139599] = 8, + [139603] = 8, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, ACTIONS(7226), 1, sym_identifier, ACTIONS(7228), 1, anon_sym_STAR, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5298), 1, + STATE(5270), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139625] = 8, + [139629] = 8, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, ACTIONS(7230), 1, sym_identifier, ACTIONS(7232), 1, anon_sym_STAR, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5306), 1, + STATE(5260), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139651] = 8, + [139655] = 8, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, ACTIONS(7234), 1, sym_identifier, ACTIONS(7236), 1, anon_sym_STAR, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5298), 1, + STATE(5270), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139677] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139681] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4206), 1, + STATE(4210), 1, sym_type_annotation, - STATE(4777), 1, + STATE(4773), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6694), 3, + ACTIONS(6690), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139699] = 3, + [139703] = 3, ACTIONS(7238), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3623), 6, + ACTIONS(3614), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [139715] = 3, - ACTIONS(7178), 1, + [139719] = 3, + ACTIONS(7184), 1, anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 6, + ACTIONS(4161), 6, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [139731] = 5, - ACTIONS(7178), 1, + [139735] = 5, + ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(7186), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7188), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 4, + ACTIONS(4179), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - [139751] = 3, + [139755] = 3, ACTIONS(7240), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 6, + ACTIONS(4209), 6, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, - [139767] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4113), 1, - sym_type_annotation, - STATE(4646), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6688), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139789] = 2, + [139771] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -254983,14 +254969,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_PIPE_RBRACE, - [139803] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139785] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4117), 1, + STATE(4112), 1, sym_type_annotation, - STATE(4652), 1, + STATE(4643), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -254999,623 +254985,652 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139825] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139807] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4149), 1, + STATE(3907), 1, sym_type_annotation, - STATE(4701), 1, + STATE(4640), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139847] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139829] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4159), 1, + STATE(4146), 1, sym_type_annotation, - STATE(4708), 1, + STATE(4690), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139869] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139851] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4163), 1, + STATE(4150), 1, sym_type_annotation, - STATE(4726), 1, + STATE(4701), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139891] = 6, - ACTIONS(6462), 1, + [139873] = 6, + ACTIONS(6470), 1, anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(4162), 1, + sym_type_annotation, + STATE(4718), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [139895] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4167), 1, + STATE(4164), 1, sym_type_annotation, - STATE(4731), 1, + STATE(4720), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [139913] = 8, + [139917] = 8, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, ACTIONS(7246), 1, sym_identifier, ACTIONS(7248), 1, anon_sym_STAR, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5306), 1, + STATE(5260), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139939] = 3, + [139943] = 3, ACTIONS(7250), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 6, + ACTIONS(3637), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [139955] = 8, + [139959] = 8, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, ACTIONS(7253), 1, sym_identifier, ACTIONS(7255), 1, anon_sym_STAR, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5298), 1, + STATE(5270), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [139981] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [139985] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3917), 1, + STATE(3927), 1, sym_type_annotation, - STATE(4742), 1, + STATE(4567), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6680), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140003] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [140007] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4187), 1, + STATE(4184), 1, sym_type_annotation, - STATE(4752), 1, + STATE(4737), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140025] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [140029] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4189), 1, + STATE(4187), 1, sym_type_annotation, - STATE(4753), 1, + STATE(4746), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140047] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [140051] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(3914), 1, sym_type_annotation, - STATE(5033), 1, + STATE(4958), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6680), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140069] = 6, - ACTIONS(6462), 1, + [140073] = 6, + ACTIONS(6470), 1, anon_sym_EQ, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(4192), 1, + sym_type_annotation, + STATE(4748), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140095] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(4195), 1, sym_type_annotation, - STATE(4760), 1, + STATE(4752), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140091] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [140117] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4196), 1, + STATE(3941), 1, sym_type_annotation, - STATE(4762), 1, + STATE(4569), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6680), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140113] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [140139] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, STATE(3942), 1, sym_type_annotation, - STATE(4568), 1, + STATE(4575), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6680), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140135] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [140161] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3943), 1, + STATE(4205), 1, sym_type_annotation, - STATE(4569), 1, + STATE(4764), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140157] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [140183] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4210), 1, + STATE(4209), 1, sym_type_annotation, - STATE(4780), 1, + STATE(4775), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6701), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140179] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [140205] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(4211), 1, + STATE(3970), 1, sym_type_annotation, - STATE(4785), 1, + STATE(4706), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6703), 3, + ACTIONS(6680), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140201] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [140227] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3972), 1, + STATE(3974), 1, sym_type_annotation, - STATE(4709), 1, + STATE(4719), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6680), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140223] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [140249] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3975), 1, + STATE(3977), 1, sym_type_annotation, - STATE(4713), 1, + STATE(4736), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6680), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140245] = 6, - ACTIONS(6462), 1, - anon_sym_EQ, + [140271] = 6, ACTIONS(6470), 1, + anon_sym_EQ, + ACTIONS(6478), 1, anon_sym_COLON, - STATE(3979), 1, + STATE(3980), 1, sym_type_annotation, - STATE(4732), 1, + STATE(4745), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6690), 3, + ACTIONS(6680), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140267] = 8, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(4035), 1, - anon_sym_DOT, - ACTIONS(4707), 1, - anon_sym_QMARK_DOT, - ACTIONS(6066), 1, + [140293] = 7, + ACTIONS(2570), 1, anon_sym_LT, - STATE(2539), 1, - sym_arguments, - STATE(3220), 1, - sym_type_arguments, - STATE(5172), 1, - sym_optional_chain, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(7257), 1, + anon_sym_QMARK, + STATE(3317), 1, + sym_formal_parameters, + STATE(3692), 1, + sym__call_signature, + STATE(5224), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140293] = 7, + [140316] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7257), 1, + ACTIONS(7259), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(3687), 1, + STATE(5242), 1, sym__call_signature, - STATE(5222), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140316] = 4, - STATE(3766), 1, + [140339] = 4, + STATE(3767), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3783), 2, + ACTIONS(3787), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7259), 3, + ACTIONS(7261), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140333] = 5, - ACTIONS(3282), 1, - anon_sym_LBRACE, - ACTIONS(7261), 1, - sym_identifier, - ACTIONS(7263), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4444), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [140352] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7265), 1, - anon_sym_QMARK, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5456), 1, - sym__call_signature, + [140356] = 4, + STATE(3829), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140375] = 4, + ACTIONS(3767), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7263), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [140373] = 4, STATE(3829), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3783), 2, + ACTIONS(3787), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7259), 3, + ACTIONS(7261), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140392] = 7, + [140390] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7267), 1, + ACTIONS(7265), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5474), 1, + STATE(5455), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140415] = 7, + [140413] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7269), 1, + ACTIONS(7267), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(3816), 1, - sym__call_signature, - STATE(5281), 1, + STATE(5354), 1, sym_type_parameters, + STATE(5473), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [140436] = 5, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + anon_sym_LBRACK, + ACTIONS(7269), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140438] = 7, + STATE(4804), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [140455] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, ACTIONS(7271), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5145), 1, + STATE(5147), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140461] = 4, - STATE(3806), 1, - aux_sym_object_type_repeat1, + [140478] = 4, + ACTIONS(7273), 1, + anon_sym_LBRACE, + STATE(2657), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, - sym_comment, - ACTIONS(3769), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7273), 3, + sym_comment, + ACTIONS(7200), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140478] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, + [140495] = 4, + ACTIONS(7273), 1, + anon_sym_LBRACE, + STATE(2684), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3769), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7273), 3, + ACTIONS(7210), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140495] = 7, + [140512] = 7, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, ACTIONS(7275), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, STATE(4272), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140518] = 4, + [140535] = 4, STATE(3829), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3759), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(7277), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140535] = 4, - STATE(3820), 1, + [140552] = 4, + STATE(3822), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3759), 2, + ACTIONS(3763), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(7279), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140552] = 7, + [140569] = 5, + ACTIONS(7281), 1, + anon_sym_default, + ACTIONS(7283), 1, + anon_sym_RBRACE, + ACTIONS(7285), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(3898), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [140588] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7281), 1, + ACTIONS(7287), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5331), 1, + STATE(5335), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140575] = 5, - ACTIONS(7283), 1, - anon_sym_default, - ACTIONS(7285), 1, - anon_sym_RBRACE, - ACTIONS(7287), 1, - anon_sym_case, + [140611] = 7, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6486), 1, + anon_sym_LPAREN, + ACTIONS(7289), 1, + anon_sym_QMARK, + STATE(3364), 1, + sym_formal_parameters, + STATE(3820), 1, + sym__call_signature, + STATE(5316), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3903), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [140594] = 4, - ACTIONS(5302), 1, + [140634] = 4, + ACTIONS(5298), 1, anon_sym_COMMA, - STATE(3774), 1, + STATE(3775), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7289), 4, + ACTIONS(7291), 4, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, - [140611] = 7, + [140651] = 7, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(7291), 1, + ACTIONS(7293), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4325), 1, + STATE(4322), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140634] = 4, - ACTIONS(7293), 1, + [140674] = 4, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2705), 1, + STATE(2690), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 4, + ACTIONS(7212), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140651] = 5, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3428), 1, - anon_sym_LBRACK, + [140691] = 4, ACTIONS(7295), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4808), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [140670] = 4, - ACTIONS(7297), 1, anon_sym_COMMA, - STATE(3774), 1, + STATE(3775), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -255625,451 +255640,473 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_RBRACK, - [140687] = 3, + [140708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5949), 2, + ACTIONS(5916), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3843), 4, + ACTIONS(3819), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [140702] = 4, - ACTIONS(7293), 1, + [140723] = 5, + ACTIONS(7298), 1, + anon_sym_AMP, + ACTIONS(7300), 1, + anon_sym_PIPE, + ACTIONS(7302), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4306), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [140742] = 4, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2717), 1, + STATE(2716), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7212), 4, + ACTIONS(7198), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140719] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(7300), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(4040), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, + [140759] = 3, + ACTIONS(7298), 1, + anon_sym_AMP, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140742] = 4, + ACTIONS(4362), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [140774] = 4, STATE(3829), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3759), 2, + ACTIONS(3763), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(7279), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140759] = 7, - ACTIONS(6622), 1, + [140791] = 7, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(7302), 1, - anon_sym_COMMA, ACTIONS(7304), 1, + anon_sym_COMMA, + ACTIONS(7306), 1, anon_sym_GT, - STATE(4545), 1, + STATE(4541), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140782] = 4, - STATE(3784), 1, + [140814] = 4, + STATE(3786), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7308), 2, + ACTIONS(7310), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7306), 3, + ACTIONS(7308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140799] = 5, - ACTIONS(7310), 1, + [140831] = 5, + ACTIONS(7312), 1, anon_sym_default, - ACTIONS(7313), 1, - anon_sym_RBRACE, ACTIONS(7315), 1, + anon_sym_RBRACE, + ACTIONS(7317), 1, anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3781), 3, + STATE(3783), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [140818] = 5, - ACTIONS(7318), 1, + [140850] = 7, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(7320), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(7322), 1, + ACTIONS(6608), 1, anon_sym_extends, + ACTIONS(7320), 1, + anon_sym_COMMA, + ACTIONS(7322), 1, + anon_sym_GT, + STATE(4536), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4317), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [140837] = 4, - STATE(3787), 1, + [140873] = 4, + STATE(3790), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3755), 2, + ACTIONS(3761), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(7324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140854] = 4, + [140890] = 4, STATE(3829), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3755), 2, + ACTIONS(3761), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(7324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140871] = 3, - ACTIONS(7318), 1, - anon_sym_AMP, + [140907] = 5, + ACTIONS(7328), 1, + anon_sym_BQUOTE, + ACTIONS(7330), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7326), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3892), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [140926] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4363), 5, + ACTIONS(2376), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [140886] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7326), 1, - sym_identifier, - STATE(3895), 1, - sym_formal_parameters, - STATE(5265), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, + [140939] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [140909] = 4, + ACTIONS(2372), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [140952] = 4, STATE(3829), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3767), 2, + ACTIONS(3747), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7328), 3, + ACTIONS(7332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140926] = 7, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7330), 1, - anon_sym_COMMA, - ACTIONS(7332), 1, - anon_sym_GT, - STATE(4537), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [140949] = 5, - ACTIONS(7336), 1, - anon_sym_BQUOTE, - ACTIONS(7338), 1, - anon_sym_DOLLAR_LBRACE, + [140969] = 7, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(7334), 1, + anon_sym_QMARK, + STATE(3317), 1, + sym_formal_parameters, + STATE(4038), 1, + sym__call_signature, + STATE(5224), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7334), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3892), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [140968] = 4, - ACTIONS(7293), 1, + [140992] = 4, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2691), 1, + STATE(2675), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7172), 4, + ACTIONS(7178), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140985] = 7, - ACTIONS(1551), 1, + [141009] = 7, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, ACTIONS(7106), 1, sym_identifier, - STATE(764), 1, + STATE(762), 1, sym_nested_identifier, - STATE(785), 1, + STATE(800), 1, sym_string, - STATE(930), 1, + STATE(882), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141008] = 7, + [141032] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - ACTIONS(7340), 1, + ACTIONS(7336), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, STATE(3863), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141031] = 2, + [141055] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2372), 6, + ACTIONS(2388), 6, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [141044] = 2, + [141068] = 4, + STATE(3780), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2376), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [141057] = 4, - ACTIONS(7293), 1, + ACTIONS(7340), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141085] = 4, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2658), 1, + STATE(2656), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7172), 4, + ACTIONS(7178), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141074] = 2, + [141102] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 6, + ACTIONS(3819), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - [141087] = 7, + [141115] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, ACTIONS(7342), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5194), 1, + STATE(5195), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141110] = 7, + [141138] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(3288), 1, anon_sym_LPAREN, ACTIONS(7344), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5457), 1, + STATE(5059), 1, sym__call_signature, + STATE(5224), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141161] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141133] = 7, + ACTIONS(2384), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141174] = 7, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, ACTIONS(7346), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(5058), 1, + STATE(3671), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141156] = 7, + [141197] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, ACTIONS(7348), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5403), 1, + STATE(5400), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141179] = 2, + [141220] = 4, + ACTIONS(7273), 1, + anon_sym_LBRACE, + STATE(2692), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2380), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [141192] = 2, + ACTIONS(7180), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141237] = 4, + STATE(3829), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7224), 6, + ACTIONS(3773), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7350), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [141205] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2697), 1, - sym_statement_block, + [141254] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7174), 4, + ACTIONS(7224), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [141222] = 7, - ACTIONS(6622), 1, + anon_sym_COLON, + [141267] = 7, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6476), 1, + anon_sym_LPAREN, + ACTIONS(7352), 1, + sym_identifier, + STATE(3893), 1, + sym_formal_parameters, + STATE(5354), 1, + sym_type_parameters, + STATE(5399), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141290] = 7, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(7350), 1, + ACTIONS(7354), 1, anon_sym_COMMA, - ACTIONS(7352), 1, + ACTIONS(7356), 1, anon_sym_GT, - STATE(4594), 1, + STATE(4591), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141245] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(7354), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(3669), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141268] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, + [141313] = 5, + ACTIONS(7298), 1, + anon_sym_AMP, + ACTIONS(7300), 1, + anon_sym_PIPE, + ACTIONS(7302), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3777), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7356), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141285] = 4, - STATE(3811), 1, + ACTIONS(4223), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141332] = 4, + STATE(3815), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -256081,75 +256118,62 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141302] = 5, - ACTIONS(7318), 1, + [141349] = 5, + ACTIONS(7298), 1, anon_sym_AMP, - ACTIONS(7320), 1, + ACTIONS(7300), 1, anon_sym_PIPE, - ACTIONS(7322), 1, + ACTIONS(7302), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4220), 3, + ACTIONS(4231), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [141321] = 4, - STATE(3813), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3757), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7362), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141338] = 5, - ACTIONS(7318), 1, + [141368] = 5, + ACTIONS(7298), 1, anon_sym_AMP, - ACTIONS(7320), 1, + ACTIONS(7300), 1, anon_sym_PIPE, - ACTIONS(7322), 1, + ACTIONS(7302), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4228), 3, + ACTIONS(4437), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [141357] = 4, - STATE(3829), 1, + [141387] = 4, + STATE(3817), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3757), 2, + ACTIONS(3765), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(7362), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141374] = 5, - ACTIONS(7318), 1, + [141404] = 5, + ACTIONS(7298), 1, anon_sym_AMP, - ACTIONS(7320), 1, + ACTIONS(7300), 1, anon_sym_PIPE, - ACTIONS(7322), 1, + ACTIONS(7302), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4423), 3, + ACTIONS(4441), 3, anon_sym_as, anon_sym_LBRACK, anon_sym_RBRACK, - [141393] = 4, + [141423] = 4, STATE(3829), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, @@ -256158,70 +256182,54 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3765), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7364), 3, + ACTIONS(7362), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141410] = 5, - ACTIONS(7318), 1, - anon_sym_AMP, - ACTIONS(7320), 1, - anon_sym_PIPE, - ACTIONS(7322), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4427), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141429] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2656), 1, - sym_statement_block, + [141440] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7202), 4, + ACTIONS(7220), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [141446] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2715), 1, - sym_statement_block, + anon_sym_COLON, + [141453] = 4, + STATE(3829), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 4, + ACTIONS(3771), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7364), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141463] = 7, + [141470] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(3288), 1, anon_sym_LPAREN, ACTIONS(7366), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(3875), 1, + STATE(3682), 1, sym__call_signature, - STATE(5281), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141486] = 4, - ACTIONS(7293), 1, + [141493] = 4, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2683), 1, + STATE(2709), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, @@ -256231,417 +256239,372 @@ static const uint16_t ts_small_parse_table[] = { sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141503] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2384), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [141516] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, + [141510] = 4, + ACTIONS(7273), 1, + anon_sym_LBRACE, + STATE(2704), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3799), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7368), 3, + ACTIONS(7204), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141533] = 7, + [141527] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - ACTIONS(7370), 1, + ACTIONS(7368), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(4108), 1, + STATE(3874), 1, sym__call_signature, - STATE(5222), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141556] = 4, - STATE(3778), 1, + [141550] = 4, + STATE(3829), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7374), 2, + ACTIONS(3799), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7372), 3, + ACTIONS(7370), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141573] = 7, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7376), 1, - anon_sym_COMMA, - ACTIONS(7378), 1, - anon_sym_GT, - STATE(4635), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141596] = 7, + [141567] = 7, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(7380), 1, + ACTIONS(7372), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(3681), 1, + STATE(4119), 1, sym__call_signature, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141619] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7382), 1, - sym_identifier, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, + STATE(5224), 1, sym_type_parameters, - STATE(5455), 1, - sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141642] = 4, - STATE(3833), 1, - aux_sym_object_type_repeat1, + [141590] = 4, + ACTIONS(7273), 1, + anon_sym_LBRACE, + STATE(2715), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7386), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7384), 3, + ACTIONS(7202), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141659] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2689), 1, - sym_statement_block, + [141607] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2380), 6, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [141620] = 7, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, + anon_sym_PIPE, + ACTIONS(6608), 1, + anon_sym_extends, + ACTIONS(7374), 1, anon_sym_COMMA, - anon_sym_SEMI, - [141676] = 2, + ACTIONS(7376), 1, + anon_sym_GT, + STATE(4631), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7220), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [141643] = 4, + ACTIONS(7273), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [141689] = 4, - STATE(3829), 1, - aux_sym_object_type_repeat1, + STATE(2667), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7391), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7388), 3, + ACTIONS(7150), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141706] = 4, - ACTIONS(7293), 1, + [141660] = 4, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2711), 1, + STATE(2682), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 4, + ACTIONS(7198), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141723] = 4, - STATE(3837), 1, + [141677] = 4, + STATE(3829), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3793), 2, + ACTIONS(7381), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7393), 3, + ACTIONS(7378), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141740] = 6, - ACTIONS(7178), 1, + [141694] = 6, + ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(7186), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7188), 1, anon_sym_extends, - ACTIONS(7397), 1, + ACTIONS(7385), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7395), 2, + ACTIONS(7383), 2, anon_sym_COMMA, anon_sym_RBRACK, - [141761] = 4, - STATE(3829), 1, + [141715] = 4, + STATE(3836), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3793), 2, + ACTIONS(7389), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7393), 3, + ACTIONS(7387), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141778] = 4, - ACTIONS(7293), 1, + [141732] = 4, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2716), 1, + STATE(2688), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 4, + ACTIONS(7204), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141795] = 7, + [141749] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(7399), 1, + ACTIONS(7391), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(5235), 1, + STATE(3687), 1, sym__call_signature, - STATE(5348), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141818] = 2, + [141772] = 4, + ACTIONS(7273), 1, + anon_sym_LBRACE, + STATE(2663), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7401), 6, + ACTIONS(7200), 4, sym__automatic_semicolon, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + [141789] = 4, + STATE(3805), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3767), 2, + anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - [141831] = 4, + ACTIONS(7263), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141806] = 4, STATE(3829), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3795), 2, + ACTIONS(3793), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7403), 3, + ACTIONS(7393), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141823] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7395), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [141848] = 7, + anon_sym_PIPE_RBRACE, + [141836] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7405), 1, + ACTIONS(7397), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(3636), 1, - sym__call_signature, - STATE(5222), 1, + STATE(5354), 1, sym_type_parameters, + STATE(5416), 1, + sym__call_signature, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [141859] = 4, + STATE(3829), 1, + aux_sym_object_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3795), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7399), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141876] = 5, + ACTIONS(7298), 1, + anon_sym_AMP, + ACTIONS(7300), 1, + anon_sym_PIPE, + ACTIONS(7302), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141871] = 7, + ACTIONS(4326), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141895] = 7, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(7407), 1, + ACTIONS(7401), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(3692), 1, + STATE(3697), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141894] = 4, - ACTIONS(7409), 1, + [141918] = 4, + ACTIONS(7403), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6747), 2, + ACTIONS(6793), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - STATE(5441), 3, + STATE(5475), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [141911] = 5, - ACTIONS(7318), 1, - anon_sym_AMP, - ACTIONS(7320), 1, - anon_sym_PIPE, - ACTIONS(7322), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(4321), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141930] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7411), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [141949] = 7, - ACTIONS(1551), 1, + [141935] = 7, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, ACTIONS(7106), 1, sym_identifier, - STATE(764), 1, + STATE(762), 1, sym_nested_identifier, - STATE(785), 1, + STATE(800), 1, sym_string, - STATE(885), 1, + STATE(886), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [141972] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - ACTIONS(7413), 1, - anon_sym_QMARK, - STATE(3307), 1, - sym_formal_parameters, - STATE(3696), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [141995] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7415), 1, - anon_sym_export, - ACTIONS(7417), 1, - anon_sym_class, - ACTIONS(7419), 1, - anon_sym_abstract, - STATE(1297), 1, - sym_decorator, - STATE(3849), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142018] = 2, + [141958] = 4, + ACTIONS(7273), 1, + anon_sym_LBRACE, + STATE(2694), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2388), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [142031] = 5, - ACTIONS(6622), 1, + ACTIONS(7214), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141975] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7421), 3, - anon_sym_LBRACE, + ACTIONS(7405), 3, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [142050] = 5, + [141994] = 5, ACTIONS(3282), 1, anon_sym_LBRACE, - ACTIONS(7263), 1, - anon_sym_LBRACK, - ACTIONS(7423), 1, + ACTIONS(7407), 1, sym_identifier, + ACTIONS(7409), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -256649,366 +256612,381 @@ static const uint16_t ts_small_parse_table[] = { sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [142069] = 5, - ACTIONS(7425), 1, + [142013] = 7, + ACTIONS(99), 1, anon_sym_AT, - STATE(1297), 1, + ACTIONS(7411), 1, + anon_sym_export, + ACTIONS(7413), 1, + anon_sym_class, + ACTIONS(7415), 1, + anon_sym_abstract, + STATE(1285), 1, sym_decorator, - STATE(3849), 1, + STATE(3855), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3602), 3, - anon_sym_export, - anon_sym_class, - anon_sym_abstract, - [142088] = 4, - ACTIONS(7293), 1, + [142036] = 7, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6476), 1, + anon_sym_LPAREN, + ACTIONS(7417), 1, + sym_identifier, + STATE(3893), 1, + sym_formal_parameters, + STATE(5269), 1, + sym__call_signature, + STATE(5354), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142059] = 5, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, + anon_sym_PIPE, + ACTIONS(6608), 1, + anon_sym_extends, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7419), 3, anon_sym_LBRACE, - STATE(2693), 1, - sym_statement_block, + anon_sym_COMMA, + anon_sym_GT, + [142078] = 4, + STATE(3758), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7214), 4, + ACTIONS(7423), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7421), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142105] = 7, + [142095] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7428), 1, + ACTIONS(7425), 1, anon_sym_QMARK, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5316), 1, + STATE(5320), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142128] = 2, + [142118] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7430), 6, + ACTIONS(7427), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142141] = 2, + [142131] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7432), 6, + ACTIONS(7429), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142154] = 2, + [142144] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7434), 6, + ACTIONS(7431), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142167] = 4, - STATE(3764), 1, - aux_sym_object_type_repeat1, + [142157] = 5, + ACTIONS(7433), 1, + anon_sym_AT, + STATE(1285), 1, + sym_decorator, + STATE(3855), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7438), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7436), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142184] = 7, - ACTIONS(6672), 1, - anon_sym_LT, - ACTIONS(7160), 1, - anon_sym_COMMA, - ACTIONS(7440), 1, - anon_sym_LBRACE, - ACTIONS(7442), 1, - anon_sym_LBRACE_PIPE, - STATE(4420), 1, - aux_sym_extends_type_clause_repeat1, - STATE(4945), 1, - sym_type_arguments, + ACTIONS(3622), 3, + anon_sym_export, + anon_sym_class, + anon_sym_abstract, + [142176] = 5, + ACTIONS(7330), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7436), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142207] = 7, + ACTIONS(7034), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3787), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142195] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7444), 1, + ACTIONS(7438), 1, sym_identifier, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5455), 1, + STATE(5399), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142230] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7446), 1, - anon_sym_QMARK, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5422), 1, - sym__call_signature, + [142218] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142253] = 7, + ACTIONS(7222), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [142231] = 7, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(7448), 1, + ACTIONS(7440), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4103), 1, + STATE(4099), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142276] = 2, + [142254] = 7, + ACTIONS(6676), 1, + anon_sym_LT, + ACTIONS(7164), 1, + anon_sym_COMMA, + ACTIONS(7442), 1, + anon_sym_LBRACE, + ACTIONS(7444), 1, + anon_sym_LBRACE_PIPE, + STATE(4417), 1, + aux_sym_extends_type_clause_repeat1, + STATE(4942), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7222), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [142289] = 7, + [142277] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7450), 1, + ACTIONS(7446), 1, sym_identifier, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5455), 1, + STATE(5399), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142312] = 4, - ACTIONS(7293), 1, + [142300] = 4, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2702), 1, + STATE(2685), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7186), 4, + ACTIONS(7194), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142329] = 4, - ACTIONS(7293), 1, + [142317] = 4, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2712), 1, + STATE(2696), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7188), 4, + ACTIONS(7196), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142346] = 7, + [142334] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - ACTIONS(7452), 1, + ACTIONS(7448), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(3882), 1, + STATE(3764), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142369] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7454), 1, - sym_identifier, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5408), 1, - sym__call_signature, + [142357] = 5, + ACTIONS(7330), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7450), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142392] = 7, + ACTIONS(7058), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3894), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142376] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7456), 1, + ACTIONS(7452), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(4339), 1, - sym__call_signature, - STATE(5222), 1, + STATE(5354), 1, sym_type_parameters, + STATE(5430), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142415] = 4, - ACTIONS(7293), 1, + [142399] = 4, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2696), 1, + STATE(2708), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7188), 4, + ACTIONS(7196), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142432] = 7, + [142416] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7458), 1, + ACTIONS(7454), 1, sym_identifier, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5265), 1, + STATE(5269), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142455] = 4, - ACTIONS(7293), 1, + [142439] = 4, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2688), 1, + STATE(2714), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7186), 4, + ACTIONS(7194), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142472] = 5, - ACTIONS(7338), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7460), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7062), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3789), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142491] = 7, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7419), 1, - anon_sym_abstract, - ACTIONS(7462), 1, - anon_sym_export, - ACTIONS(7464), 1, - anon_sym_class, - STATE(1297), 1, - sym_decorator, - STATE(3849), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142514] = 7, + [142456] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - ACTIONS(7466), 1, + ACTIONS(7456), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(3790), 1, + STATE(3792), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142537] = 7, + [142479] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(3288), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7468), 1, - anon_sym_QMARK, - STATE(3307), 1, + ACTIONS(7458), 1, + sym_identifier, + STATE(3893), 1, sym_formal_parameters, - STATE(4643), 1, - sym__call_signature, - STATE(5222), 1, + STATE(5354), 1, sym_type_parameters, + STATE(5451), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142560] = 4, - ACTIONS(7293), 1, + [142502] = 7, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, + anon_sym_PIPE, + ACTIONS(6608), 1, + anon_sym_extends, + ACTIONS(7460), 1, + anon_sym_COMMA, + ACTIONS(7462), 1, + anon_sym_GT, + STATE(5037), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [142525] = 4, + ACTIONS(7273), 1, anon_sym_LBRACE, STATE(2652), 1, sym_statement_block, @@ -257020,10 +256998,10 @@ static const uint16_t ts_small_parse_table[] = { sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142577] = 4, - ACTIONS(7293), 1, + [142542] = 4, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2680), 1, + STATE(2683), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, @@ -257033,66 +257011,74 @@ static const uint16_t ts_small_parse_table[] = { sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142594] = 5, - ACTIONS(7338), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7470), 1, - anon_sym_BQUOTE, + [142559] = 7, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(7464), 1, + anon_sym_QMARK, + STATE(3317), 1, + sym_formal_parameters, + STATE(4632), 1, + sym__call_signature, + STATE(5224), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7050), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3901), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [142613] = 3, - ACTIONS(7318), 1, - anon_sym_AMP, + [142582] = 7, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(7466), 1, + anon_sym_QMARK, + STATE(3317), 1, + sym_formal_parameters, + STATE(4339), 1, + sym__call_signature, + STATE(5224), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4159), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [142628] = 5, - ACTIONS(7318), 1, - anon_sym_AMP, - ACTIONS(7320), 1, - anon_sym_PIPE, - ACTIONS(7322), 1, - anon_sym_extends, + [142605] = 7, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(7415), 1, + anon_sym_abstract, + ACTIONS(7468), 1, + anon_sym_export, + ACTIONS(7470), 1, + anon_sym_class, + STATE(1285), 1, + sym_decorator, + STATE(3855), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4212), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [142647] = 7, + [142628] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, ACTIONS(7472), 1, anon_sym_QMARK, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(3776), 1, + STATE(3774), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142670] = 4, - ACTIONS(7293), 1, + [142651] = 4, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2677), 1, + STATE(2679), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, @@ -257102,482 +257088,500 @@ static const uint16_t ts_small_parse_table[] = { sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [142687] = 3, - ACTIONS(7474), 1, - anon_sym_extends, + [142668] = 7, + ACTIONS(1643), 1, + anon_sym_DQUOTE, + ACTIONS(1645), 1, + anon_sym_SQUOTE, + ACTIONS(7110), 1, + sym_identifier, + STATE(3472), 1, + sym_nested_identifier, + STATE(3530), 1, + sym_string, + STATE(4032), 1, + sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4250), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + [142691] = 7, + ACTIONS(6604), 1, anon_sym_AMP, + ACTIONS(6606), 1, anon_sym_PIPE, - [142702] = 4, - ACTIONS(7293), 1, + ACTIONS(6608), 1, + anon_sym_extends, + ACTIONS(7474), 1, anon_sym_LBRACE, - STATE(2704), 1, - sym_statement_block, + ACTIONS(7476), 1, + anon_sym_COMMA, + STATE(4895), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142719] = 7, - ACTIONS(6622), 1, + [142714] = 3, + ACTIONS(7298), 1, anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7476), 1, - anon_sym_COMMA, - ACTIONS(7478), 1, - anon_sym_GT, - STATE(5056), 1, - aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142742] = 2, + ACTIONS(4161), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [142729] = 5, + ACTIONS(7298), 1, + anon_sym_AMP, + ACTIONS(7300), 1, + anon_sym_PIPE, + ACTIONS(7302), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7242), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [142755] = 7, + ACTIONS(4179), 3, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + [142748] = 7, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - ACTIONS(7480), 1, + ACTIONS(7478), 1, anon_sym_QMARK, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, STATE(5009), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142778] = 4, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2684), 1, - sym_statement_block, + [142771] = 3, + ACTIONS(7480), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7210), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [142795] = 7, + ACTIONS(4209), 5, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [142786] = 7, ACTIONS(3535), 1, anon_sym_LPAREN, - ACTIONS(6066), 1, + ACTIONS(6063), 1, anon_sym_LT, - ACTIONS(6982), 1, + ACTIONS(6962), 1, anon_sym_DOT, ACTIONS(7482), 1, anon_sym_RPAREN, - STATE(1266), 1, + STATE(1256), 1, sym_arguments, - STATE(5452), 1, + STATE(5449), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142818] = 7, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7484), 1, + [142809] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7242), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7486), 1, anon_sym_COMMA, - STATE(4897), 1, - aux_sym_implements_clause_repeat1, + anon_sym_SEMI, + anon_sym_COLON, + [142822] = 7, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6476), 1, + anon_sym_LPAREN, + ACTIONS(7484), 1, + anon_sym_QMARK, + STATE(3893), 1, + sym_formal_parameters, + STATE(5354), 1, + sym_type_parameters, + STATE(5456), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142841] = 7, + [142845] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7488), 1, + ACTIONS(7486), 1, sym_identifier, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5455), 1, + STATE(5399), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142864] = 7, - ACTIONS(1635), 1, + [142868] = 7, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, ACTIONS(7110), 1, sym_identifier, - STATE(3484), 1, + STATE(3472), 1, sym_nested_identifier, STATE(3530), 1, sym_string, - STATE(4049), 1, + STATE(3949), 1, sym__module, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142887] = 7, + [142891] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7490), 1, + ACTIONS(7488), 1, sym_identifier, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5265), 1, + STATE(5269), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [142910] = 5, - ACTIONS(7495), 1, + [142914] = 5, + ACTIONS(7493), 1, anon_sym_BQUOTE, - ACTIONS(7497), 1, + ACTIONS(7495), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7492), 2, + ACTIONS(7490), 2, sym__template_chars, sym_escape_sequence, STATE(3892), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [142929] = 7, - ACTIONS(1635), 1, - anon_sym_DQUOTE, - ACTIONS(1637), 1, - anon_sym_SQUOTE, - ACTIONS(7110), 1, - sym_identifier, - STATE(3484), 1, - sym_nested_identifier, - STATE(3530), 1, - sym_string, - STATE(3949), 1, - sym__module, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [142952] = 6, - ACTIONS(6672), 1, - anon_sym_LT, - ACTIONS(7162), 1, - anon_sym_DOT, - ACTIONS(7500), 1, - anon_sym_LBRACE, - STATE(4944), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7502), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [142973] = 4, - ACTIONS(7409), 1, + [142933] = 4, + ACTIONS(7403), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6759), 2, + ACTIONS(6787), 2, anon_sym_LBRACE, anon_sym_EQ_GT, STATE(5192), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [142990] = 7, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(6066), 1, - anon_sym_LT, - ACTIONS(6982), 1, - anon_sym_DOT, - ACTIONS(7504), 1, - anon_sym_RPAREN, - STATE(1266), 1, - sym_arguments, - STATE(5452), 1, - sym_type_arguments, + [142950] = 5, + ACTIONS(7330), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7498), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143013] = 7, + ACTIONS(7326), 2, + sym__template_chars, + sym_escape_sequence, + STATE(3892), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [142969] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7506), 1, + ACTIONS(7500), 1, sym_identifier, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5265), 1, + STATE(5269), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143036] = 7, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, + [142992] = 7, + ACTIONS(3535), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, - anon_sym_QMARK, - STATE(3895), 1, - sym_formal_parameters, - STATE(5291), 1, - sym__call_signature, - STATE(5348), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [143059] = 7, - ACTIONS(2570), 1, + ACTIONS(6063), 1, anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - ACTIONS(7510), 1, - sym_identifier, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5462), 1, - sym__call_signature, + ACTIONS(6962), 1, + anon_sym_DOT, + ACTIONS(7502), 1, + anon_sym_RPAREN, + STATE(1256), 1, + sym_arguments, + STATE(5449), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143082] = 7, - ACTIONS(6622), 1, + [143015] = 7, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(7512), 1, + ACTIONS(7504), 1, anon_sym_COMMA, - ACTIONS(7514), 1, + ACTIONS(7506), 1, anon_sym_GT, - STATE(4991), 1, + STATE(4994), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143105] = 5, - ACTIONS(7338), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7516), 1, - anon_sym_BQUOTE, + [143038] = 5, + ACTIONS(7281), 1, + anon_sym_default, + ACTIONS(7285), 1, + anon_sym_case, + ACTIONS(7508), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7334), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3892), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [143124] = 4, + STATE(3783), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [143057] = 4, STATE(3759), 1, aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7520), 2, + ACTIONS(7512), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7518), 3, + ACTIONS(7510), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143141] = 5, - ACTIONS(7283), 1, - anon_sym_default, - ACTIONS(7287), 1, - anon_sym_case, - ACTIONS(7522), 1, - anon_sym_RBRACE, + [143074] = 7, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6476), 1, + anon_sym_LPAREN, + ACTIONS(7514), 1, + anon_sym_QMARK, + STATE(3893), 1, + sym_formal_parameters, + STATE(5298), 1, + sym__call_signature, + STATE(5354), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3781), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [143160] = 7, + [143097] = 7, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - ACTIONS(7524), 1, - anon_sym_QMARK, - STATE(3895), 1, + ACTIONS(7516), 1, + sym_identifier, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5418), 1, + STATE(5472), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143183] = 6, + [143120] = 6, ACTIONS(3550), 1, anon_sym_COLON, - ACTIONS(7140), 1, + ACTIONS(7144), 1, anon_sym_EQ, - STATE(4402), 1, + STATE(4420), 1, sym_type_annotation, STATE(5350), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7526), 2, + ACTIONS(7518), 2, anon_sym_COMMA, anon_sym_RPAREN, - [143204] = 4, - ACTIONS(7293), 1, + [143141] = 6, + ACTIONS(6676), 1, + anon_sym_LT, + ACTIONS(7166), 1, + anon_sym_DOT, + ACTIONS(7520), 1, anon_sym_LBRACE, - STATE(2670), 1, - sym_statement_block, + STATE(4939), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7146), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7522), 2, anon_sym_COMMA, - anon_sym_SEMI, - [143221] = 2, + anon_sym_LBRACE_PIPE, + [143162] = 7, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + ACTIONS(7524), 1, + anon_sym_QMARK, + STATE(3317), 1, + sym_formal_parameters, + STATE(3639), 1, + sym__call_signature, + STATE(5224), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [143185] = 5, + ACTIONS(3282), 1, + anon_sym_LBRACE, + ACTIONS(7409), 1, + anon_sym_LBRACK, + ACTIONS(7526), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4441), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [143204] = 4, + STATE(3839), 1, + aux_sym_object_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2820), 5, + ACTIONS(3793), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7393), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143233] = 2, + [143221] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(5046), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7214), 5, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143245] = 4, - ACTIONS(6462), 1, + [143237] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4832), 1, + STATE(4818), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143261] = 5, - ACTIONS(7530), 1, - sym_identifier, + [143253] = 5, ACTIONS(7532), 1, + sym_identifier, + ACTIONS(7534), 1, anon_sym_LPAREN, - STATE(1247), 1, + STATE(1243), 1, sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1284), 2, + STATE(1301), 2, sym_decorator_call_expression, sym_decorator_parenthesized_expression, - [143279] = 4, - ACTIONS(6462), 1, + [143271] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4662), 1, + STATE(4824), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143287] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4656), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7536), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143295] = 2, + [143303] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1885), 5, + ACTIONS(1879), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143307] = 4, - ACTIONS(6462), 1, + [143315] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4690), 1, + STATE(4687), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7536), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143323] = 4, - ACTIONS(6462), 1, + [143331] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4691), 1, + STATE(4688), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7538), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143339] = 2, + [143347] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -257587,61 +257591,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143351] = 2, + [143359] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1885), 5, + ACTIONS(1879), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143363] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4663), 1, - sym__initializer, + [143371] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, - sym__automatic_semicolon, + ACTIONS(5312), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [143379] = 4, - ACTIONS(6462), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [143383] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4699), 1, + STATE(4696), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7538), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143395] = 2, + [143399] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7538), 5, + ACTIONS(7540), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143407] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5312), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [143419] = 2, + [143411] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -257651,56 +257643,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [143431] = 5, - ACTIONS(7540), 1, - anon_sym_BQUOTE, + [143423] = 5, ACTIONS(7542), 1, - anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, ACTIONS(7544), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7546), 1, sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(3938), 2, + STATE(3936), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [143449] = 4, - ACTIONS(6462), 1, + [143441] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4848), 1, + STATE(4843), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7548), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143465] = 4, - ACTIONS(6462), 1, + [143457] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4851), 1, + STATE(4846), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143481] = 4, - ACTIONS(6462), 1, + [143473] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4861), 1, + STATE(4850), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143497] = 2, + [143489] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -257710,7 +257702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [143509] = 2, + [143501] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -257720,7 +257712,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [143521] = 2, + [143513] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4657), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7538), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143529] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -257730,111 +257734,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [143533] = 4, - ACTIONS(6462), 1, + [143541] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4714), 1, + STATE(4854), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143549] = 6, - ACTIONS(3843), 1, + [143557] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4710), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7536), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [143573] = 6, + ACTIONS(3819), 1, anon_sym_COLON, ACTIONS(4593), 1, anon_sym_EQ, ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(7548), 1, + ACTIONS(7550), 1, anon_sym_RBRACE, - STATE(4835), 1, + STATE(4834), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143569] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4866), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143585] = 6, - ACTIONS(4335), 1, + [143593] = 6, + ACTIONS(4352), 1, anon_sym_LBRACE, - ACTIONS(7550), 1, - anon_sym_SEMI, ACTIONS(7552), 1, - sym__automatic_semicolon, + anon_sym_SEMI, ACTIONS(7554), 1, + sym__automatic_semicolon, + ACTIONS(7556), 1, sym__function_signature_automatic_semicolon, - STATE(2263), 1, + STATE(2264), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143605] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4871), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143621] = 4, - ACTIONS(6462), 1, + [143613] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4739), 1, + STATE(4860), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143637] = 4, - ACTIONS(6462), 1, + [143629] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4951), 1, + STATE(4732), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7556), 3, + ACTIONS(7536), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143653] = 5, - ACTIONS(7542), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7558), 1, - anon_sym_BQUOTE, - ACTIONS(7560), 1, - sym__template_chars, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4306), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [143671] = 4, - ACTIONS(7409), 1, + [143645] = 4, + ACTIONS(7403), 1, anon_sym_COLON, - ACTIONS(7562), 1, + ACTIONS(7558), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, @@ -257843,12 +257822,12 @@ static const uint16_t ts_small_parse_table[] = { sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [143687] = 5, - ACTIONS(7542), 1, + [143661] = 5, + ACTIONS(7544), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7565), 1, + ACTIONS(7561), 1, anon_sym_BQUOTE, - ACTIONS(7567), 1, + ACTIONS(7563), 1, sym__template_chars, ACTIONS(5), 2, sym_html_comment, @@ -257856,48 +257835,48 @@ static const uint16_t ts_small_parse_table[] = { STATE(4115), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [143705] = 4, - ACTIONS(6462), 1, + [143679] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4748), 1, + STATE(4950), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143721] = 6, + [143695] = 6, ACTIONS(1047), 1, anon_sym_LBRACE_PIPE, ACTIONS(1627), 1, anon_sym_LBRACE, ACTIONS(7096), 1, anon_sym_extends, - STATE(4127), 1, + STATE(4128), 1, sym_object_type, - STATE(4670), 1, + STATE(4661), 1, sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143741] = 4, - ACTIONS(6462), 1, + [143715] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4755), 1, + STATE(4742), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7536), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143757] = 4, - ACTIONS(6462), 1, + [143731] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4756), 1, + STATE(4751), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -257906,168 +257885,168 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143773] = 4, - ACTIONS(6462), 1, + [143747] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4759), 1, + STATE(4753), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7538), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143789] = 5, - ACTIONS(7571), 1, + [143763] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4754), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7538), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(7573), 1, + [143779] = 5, + ACTIONS(7569), 1, + anon_sym_SEMI, + ACTIONS(7571), 1, sym__automatic_semicolon, - STATE(5377), 1, + STATE(5375), 1, sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7569), 2, + ACTIONS(7567), 2, anon_sym_with, anon_sym_assert, - [143807] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, + [143797] = 5, ACTIONS(6709), 1, + anon_sym_AMP, + ACTIONS(6713), 1, anon_sym_extends, - ACTIONS(7577), 1, + ACTIONS(7575), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7575), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143825] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7188), 5, + ACTIONS(7573), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143837] = 2, + [143815] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2756), 5, + ACTIONS(7196), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143849] = 6, - ACTIONS(7040), 1, + [143827] = 6, + ACTIONS(7028), 1, anon_sym_LBRACE, - ACTIONS(7579), 1, + ACTIONS(7577), 1, anon_sym_SEMI, - ACTIONS(7581), 1, + ACTIONS(7579), 1, sym__automatic_semicolon, - ACTIONS(7583), 1, + ACTIONS(7581), 1, sym__function_signature_automatic_semicolon, - STATE(3964), 1, + STATE(3962), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143869] = 2, + [143847] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2952), 5, + ACTIONS(2756), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143881] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, + [143859] = 5, ACTIONS(6709), 1, + anon_sym_AMP, + ACTIONS(6713), 1, anon_sym_extends, - ACTIONS(7577), 1, + ACTIONS(7575), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7585), 2, + ACTIONS(7583), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [143877] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2796), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [143899] = 5, - ACTIONS(6672), 1, + anon_sym_PIPE_RBRACE, + [143889] = 5, + ACTIONS(6676), 1, anon_sym_LT, - ACTIONS(7587), 1, + ACTIONS(7585), 1, anon_sym_LBRACE, - STATE(4945), 1, + STATE(4942), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7589), 2, + ACTIONS(7587), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [143917] = 6, - ACTIONS(4335), 1, + [143907] = 6, + ACTIONS(4352), 1, anon_sym_LBRACE, - ACTIONS(7591), 1, + ACTIONS(7589), 1, anon_sym_SEMI, - ACTIONS(7593), 1, + ACTIONS(7591), 1, sym__automatic_semicolon, - ACTIONS(7595), 1, + ACTIONS(7593), 1, sym__function_signature_automatic_semicolon, STATE(2132), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [143937] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4881), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7546), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [143953] = 4, - ACTIONS(6462), 1, + [143927] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4882), 1, + STATE(4871), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7548), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143969] = 4, - ACTIONS(6462), 1, + [143943] = 4, + ACTIONS(6470), 1, anon_sym_EQ, STATE(4816), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7536), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [143985] = 4, - ACTIONS(7409), 1, + [143959] = 4, + ACTIONS(7403), 1, anon_sym_COLON, - ACTIONS(7597), 1, + ACTIONS(7595), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, @@ -258076,501 +258055,487 @@ static const uint16_t ts_small_parse_table[] = { sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [144001] = 4, - ACTIONS(7409), 1, + [143975] = 4, + ACTIONS(7403), 1, anon_sym_COLON, - ACTIONS(7600), 1, + ACTIONS(7598), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5441), 3, + STATE(5475), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [144017] = 6, - ACTIONS(7603), 1, + [143991] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - ACTIONS(7605), 1, + STATE(4872), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7530), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7607), 1, + anon_sym_SEMI, + [144007] = 6, + ACTIONS(7601), 1, + anon_sym_EQ, + ACTIONS(7603), 1, + anon_sym_COMMA, + ACTIONS(7605), 1, anon_sym_RBRACE, - STATE(4728), 1, + STATE(4721), 1, aux_sym_enum_body_repeat1, - STATE(5309), 1, + STATE(5310), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144037] = 4, - ACTIONS(6462), 1, + [144027] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4842), 1, + STATE(4839), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7536), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144053] = 5, - ACTIONS(1551), 1, + [144043] = 5, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(7609), 1, + ACTIONS(7607), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5435), 2, + STATE(5433), 2, sym__module_export_name, sym_string, - [144071] = 2, + [144061] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7401), 5, + ACTIONS(7395), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [144083] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4883), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144099] = 6, - ACTIONS(7040), 1, + [144073] = 6, + ACTIONS(7028), 1, anon_sym_LBRACE, - ACTIONS(7611), 1, + ACTIONS(7609), 1, anon_sym_SEMI, - ACTIONS(7613), 1, + ACTIONS(7611), 1, sym__automatic_semicolon, - ACTIONS(7615), 1, + ACTIONS(7613), 1, sym__function_signature_automatic_semicolon, - STATE(3977), 1, + STATE(3975), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144119] = 3, - ACTIONS(5454), 1, + [144093] = 3, + ACTIONS(5458), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1875), 4, + ACTIONS(1869), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144133] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, + [144107] = 5, ACTIONS(6709), 1, + anon_sym_AMP, + ACTIONS(6713), 1, anon_sym_extends, - ACTIONS(7577), 1, + ACTIONS(7575), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7617), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [144151] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4856), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7534), 3, + ACTIONS(7615), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [144167] = 6, + [144125] = 6, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(3668), 1, + STATE(3670), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144187] = 6, + [144145] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, STATE(4193), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144207] = 2, + [144165] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4855), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2948), 5, + ACTIONS(7536), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144219] = 6, + [144181] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5444), 1, + STATE(5443), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144239] = 4, - ACTIONS(7409), 1, + [144201] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2948), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [144213] = 4, + ACTIONS(7403), 1, anon_sym_COLON, - ACTIONS(7619), 1, + ACTIONS(7617), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5441), 3, + STATE(5475), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [144255] = 4, - ACTIONS(6462), 1, + [144229] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4857), 1, + STATE(4856), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7538), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144271] = 2, + [144245] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2784), 5, + ACTIONS(2780), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144283] = 6, - ACTIONS(7040), 1, - anon_sym_LBRACE, - ACTIONS(7550), 1, + [144257] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4878), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, + [144273] = 6, + ACTIONS(7028), 1, + anon_sym_LBRACE, ACTIONS(7552), 1, - sym__automatic_semicolon, + anon_sym_SEMI, ACTIONS(7554), 1, + sym__automatic_semicolon, + ACTIONS(7556), 1, sym__function_signature_automatic_semicolon, STATE(781), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144303] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4858), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7536), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144319] = 4, - ACTIONS(6462), 1, + [144293] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4664), 1, + STATE(4857), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7538), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144335] = 3, - ACTIONS(5478), 1, + [144309] = 3, + ACTIONS(5476), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1781), 4, + ACTIONS(1769), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144349] = 3, - ACTIONS(5480), 1, + [144323] = 3, + ACTIONS(5478), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1791), 4, + ACTIONS(1779), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144363] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4859), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7536), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144379] = 4, - ACTIONS(6462), 1, + [144337] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4860), 1, + STATE(4858), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7538), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144395] = 6, + [144353] = 6, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(3680), 1, + STATE(3681), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144415] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, + [144373] = 5, ACTIONS(6709), 1, + anon_sym_AMP, + ACTIONS(6713), 1, anon_sym_extends, - ACTIONS(7577), 1, + ACTIONS(7575), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7622), 2, + ACTIONS(7620), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [144391] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4859), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7538), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [144433] = 3, - ACTIONS(5514), 1, + [144407] = 3, + ACTIONS(5512), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1851), 4, + ACTIONS(1839), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144447] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, + [144421] = 5, ACTIONS(6709), 1, + anon_sym_AMP, + ACTIONS(6713), 1, anon_sym_extends, - ACTIONS(7577), 1, + ACTIONS(7575), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7624), 2, + ACTIONS(7622), 2, sym__automatic_semicolon, anon_sym_SEMI, - [144465] = 6, + [144439] = 6, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, STATE(3686), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144485] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4795), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144501] = 4, - ACTIONS(6462), 1, + [144459] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4853), 1, + STATE(4852), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7626), 3, + ACTIONS(7624), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144517] = 6, + [144475] = 6, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, STATE(3691), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144537] = 6, + [144495] = 6, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(3694), 1, + STATE(3695), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144557] = 6, + [144515] = 6, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, STATE(3698), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144577] = 2, + [144535] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7628), 5, + ACTIONS(7626), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144589] = 4, - ACTIONS(6462), 1, + [144547] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4884), 1, + STATE(4893), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7548), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144605] = 4, - ACTIONS(6462), 1, + [144563] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4898), 1, + STATE(4789), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144579] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4877), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7536), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144621] = 2, + [144595] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7186), 5, + ACTIONS(7194), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144633] = 4, - ACTIONS(6462), 1, + [144607] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4911), 1, + STATE(4909), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7536), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144649] = 6, - ACTIONS(3843), 1, - anon_sym_COLON, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(7630), 1, - anon_sym_RBRACE, - STATE(4906), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [144669] = 2, + [144623] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -258580,7 +258545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [144681] = 2, + [144635] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -258590,195 +258555,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [144693] = 2, + [144647] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2720), 5, + ACTIONS(2724), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144705] = 2, + [144659] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2724), 5, + ACTIONS(2728), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144717] = 4, - ACTIONS(6462), 1, + [144671] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4797), 1, + STATE(4904), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7548), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144733] = 4, - ACTIONS(6462), 1, + [144687] = 6, + ACTIONS(3819), 1, + anon_sym_COLON, + ACTIONS(4593), 1, anon_sym_EQ, - STATE(4912), 1, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(7628), 1, + anon_sym_RBRACE, + STATE(4908), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144707] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4905), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144749] = 6, + [144723] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5449), 1, + STATE(5447), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144769] = 4, - ACTIONS(6462), 1, + [144743] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4913), 1, + STATE(4792), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144785] = 4, - ACTIONS(6462), 1, + [144759] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4938), 1, + STATE(4935), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7536), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144801] = 4, - ACTIONS(6462), 1, + [144775] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4914), 1, + STATE(4910), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144817] = 5, - ACTIONS(7632), 1, + [144791] = 5, + ACTIONS(7630), 1, sym_identifier, - ACTIONS(7634), 1, + ACTIONS(7632), 1, anon_sym_LPAREN, - STATE(2708), 1, + STATE(2686), 1, sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(2796), 2, + STATE(2793), 2, sym_decorator_call_expression, sym_decorator_parenthesized_expression, - [144835] = 4, - ACTIONS(6462), 1, + [144809] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4953), 1, + STATE(4954), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7536), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144851] = 4, - ACTIONS(6462), 1, + [144825] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4958), 1, + STATE(4959), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7536), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144867] = 4, - ACTIONS(6462), 1, + [144841] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4959), 1, + STATE(4960), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(7538), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144857] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4917), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7548), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [144883] = 6, + [144873] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(5242), 1, + STATE(4012), 1, + sym__call_signature, + STATE(5316), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [144893] = 6, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(3893), 1, + sym_formal_parameters, + STATE(5244), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144903] = 6, + [144913] = 6, ACTIONS(1721), 1, anon_sym_LBRACE, - ACTIONS(7591), 1, + ACTIONS(7589), 1, anon_sym_SEMI, - ACTIONS(7593), 1, + ACTIONS(7591), 1, sym__automatic_semicolon, - ACTIONS(7595), 1, + ACTIONS(7593), 1, sym__function_signature_automatic_semicolon, STATE(223), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144923] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4924), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7546), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144939] = 5, - ACTIONS(7542), 1, + [144933] = 5, + ACTIONS(7544), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7636), 1, + ACTIONS(7634), 1, anon_sym_BQUOTE, - ACTIONS(7638), 1, + ACTIONS(7636), 1, sym__template_chars, ACTIONS(5), 2, sym_html_comment, @@ -258786,90 +258779,102 @@ static const uint16_t ts_small_parse_table[] = { STATE(4021), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [144957] = 6, + [144951] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4961), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7538), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [144967] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(4012), 1, + STATE(5235), 1, sym__call_signature, - STATE(5281), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [144977] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4960), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7536), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [144993] = 6, + [144987] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5218), 1, + STATE(5317), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145013] = 6, - ACTIONS(4335), 1, + [145007] = 6, + ACTIONS(4352), 1, anon_sym_LBRACE, - ACTIONS(7579), 1, + ACTIONS(7577), 1, anon_sym_SEMI, - ACTIONS(7581), 1, + ACTIONS(7579), 1, sym__automatic_semicolon, - ACTIONS(7583), 1, + ACTIONS(7581), 1, sym__function_signature_automatic_semicolon, - STATE(2278), 1, + STATE(2283), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145033] = 4, - ACTIONS(6462), 1, + [145027] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4925), 1, + STATE(4921), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145049] = 4, - ACTIONS(6462), 1, + [145043] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4790), 1, + STATE(4782), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145065] = 5, - ACTIONS(7542), 1, + [145059] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4922), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145075] = 5, + ACTIONS(7544), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7567), 1, + ACTIONS(7563), 1, sym__template_chars, - ACTIONS(7640), 1, + ACTIONS(7638), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, @@ -258877,376 +258882,362 @@ static const uint16_t ts_small_parse_table[] = { STATE(4115), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [145083] = 4, - ACTIONS(6462), 1, + [145093] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4929), 1, + STATE(4925), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145099] = 4, - ACTIONS(6462), 1, + [145109] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4979), 1, + STATE(4978), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7536), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145115] = 6, - ACTIONS(4335), 1, + [145125] = 6, + ACTIONS(4352), 1, anon_sym_LBRACE, - ACTIONS(7611), 1, + ACTIONS(7609), 1, anon_sym_SEMI, - ACTIONS(7613), 1, + ACTIONS(7611), 1, sym__automatic_semicolon, - ACTIONS(7615), 1, + ACTIONS(7613), 1, sym__function_signature_automatic_semicolon, - STATE(2290), 1, + STATE(2295), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145135] = 4, - ACTIONS(6462), 1, + [145145] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4930), 1, + STATE(4926), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145161] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4783), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145151] = 2, + [145177] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7642), 5, + ACTIONS(7640), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145163] = 4, - ACTIONS(6462), 1, + [145189] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4986), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7536), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145205] = 4, + ACTIONS(6470), 1, anon_sym_EQ, STATE(4989), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7538), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145179] = 5, - ACTIONS(7532), 1, - anon_sym_LPAREN, - ACTIONS(7644), 1, - sym_identifier, - STATE(3441), 1, - sym_decorator_member_expression, + [145221] = 6, + ACTIONS(1721), 1, + anon_sym_LBRACE, + ACTIONS(7552), 1, + anon_sym_SEMI, + ACTIONS(7554), 1, + sym__automatic_semicolon, + ACTIONS(7556), 1, + sym__function_signature_automatic_semicolon, + STATE(238), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1284), 2, - sym_decorator_call_expression, - sym_decorator_parenthesized_expression, - [145197] = 4, - ACTIONS(6462), 1, + [145241] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4933), 1, + STATE(4992), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7538), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145213] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4992), 1, - sym__initializer, + [145257] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7536), 3, + ACTIONS(1751), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145229] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4794), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [145269] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7198), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145245] = 6, + anon_sym_PIPE_RBRACE, + [145281] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(3288), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(5307), 1, + STATE(4320), 1, sym__call_signature, - STATE(5348), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145265] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4993), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7536), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145281] = 2, + [145301] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2812), 5, + ACTIONS(2816), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145293] = 2, + [145313] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2860), 5, + ACTIONS(2864), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145305] = 2, + [145325] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2884), 5, + ACTIONS(2888), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145317] = 6, - ACTIONS(1721), 1, - anon_sym_LBRACE, - ACTIONS(7550), 1, - anon_sym_SEMI, - ACTIONS(7552), 1, - sym__automatic_semicolon, - ACTIONS(7554), 1, - sym__function_signature_automatic_semicolon, - STATE(238), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, [145337] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 5, + ACTIONS(7200), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145349] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, + [145349] = 5, + ACTIONS(7534), 1, anon_sym_LPAREN, - STATE(3307), 1, - sym_formal_parameters, - STATE(4323), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [145369] = 2, + ACTIONS(7642), 1, + sym_identifier, + STATE(3444), 1, + sym_decorator_member_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145381] = 4, - ACTIONS(6462), 1, + STATE(1301), 2, + sym_decorator_call_expression, + sym_decorator_parenthesized_expression, + [145367] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4805), 1, + STATE(4797), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7548), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145397] = 2, + [145383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7194), 5, + ACTIONS(7198), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145409] = 2, + [145395] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7646), 5, + ACTIONS(7644), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145421] = 4, - ACTIONS(6462), 1, + [145407] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4782), 1, + STATE(4785), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7648), 3, + ACTIONS(7646), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145437] = 2, + [145423] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7650), 5, + ACTIONS(7648), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145449] = 2, + [145435] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7196), 5, + ACTIONS(7200), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145461] = 2, + [145447] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7652), 5, + ACTIONS(7650), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145473] = 2, + [145459] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7654), 5, + ACTIONS(7652), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145485] = 2, + [145471] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4967), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1763), 5, + ACTIONS(7548), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145497] = 5, - ACTIONS(7542), 1, + [145487] = 5, + ACTIONS(7544), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7656), 1, + ACTIONS(7654), 1, anon_sym_BQUOTE, - ACTIONS(7658), 1, + ACTIONS(7656), 1, sym__template_chars, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4054), 2, + STATE(4053), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [145515] = 2, + [145505] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4981), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7146), 5, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145527] = 2, + [145521] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7660), 5, + ACTIONS(7150), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145539] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4966), 1, - sym__initializer, + [145533] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7658), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145555] = 5, - ACTIONS(7542), 1, + anon_sym_PIPE_RBRACE, + [145545] = 5, + ACTIONS(7544), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7567), 1, + ACTIONS(7563), 1, sym__template_chars, - ACTIONS(7662), 1, + ACTIONS(7660), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, @@ -259254,31 +259245,31 @@ static const uint16_t ts_small_parse_table[] = { STATE(4115), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [145573] = 4, - ACTIONS(6462), 1, + [145563] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4972), 1, + STATE(4982), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145589] = 4, - ACTIONS(6462), 1, + [145579] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4597), 1, + STATE(4576), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7664), 3, + ACTIONS(7662), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145605] = 2, + [145595] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -259288,49 +259279,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [145617] = 2, + [145607] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4987), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145623] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7430), 5, + ACTIONS(7427), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [145629] = 4, - ACTIONS(6462), 1, + [145635] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4980), 1, + STATE(4988), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145645] = 2, + [145651] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7432), 5, + ACTIONS(7429), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [145657] = 2, + [145663] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7434), 5, + ACTIONS(7431), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [145669] = 2, + [145675] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -259340,19 +259343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145681] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4982), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145697] = 2, + [145687] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -259362,7 +259353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145709] = 2, + [145699] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -259372,7 +259363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145721] = 2, + [145711] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -259382,7 +259373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145733] = 2, + [145723] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -259392,17 +259383,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145745] = 2, + [145735] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1811), 5, + ACTIONS(1799), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145757] = 2, + [145747] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -259412,7 +259403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145769] = 2, + [145759] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -259422,7 +259413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145781] = 2, + [145771] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -259432,7 +259423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145793] = 2, + [145783] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -259442,43 +259433,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145805] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4985), 1, - sym__initializer, + [145795] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(1925), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145821] = 6, + anon_sym_PIPE_RBRACE, + [145807] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5399), 1, + STATE(5396), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145841] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1861), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145853] = 2, + [145827] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -259488,38 +259467,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_of, anon_sym_COLON, - [145865] = 2, + [145839] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2640), 5, + ACTIONS(2644), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145877] = 2, + [145851] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2652), 5, + ACTIONS(2656), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145889] = 2, + [145863] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2664), 5, + ACTIONS(2668), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145901] = 5, - ACTIONS(7542), 1, + [145875] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7664), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [145887] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4997), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145903] = 5, + ACTIONS(7544), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(7666), 1, anon_sym_BQUOTE, @@ -259528,37 +259529,49 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4083), 2, + STATE(4084), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [145919] = 4, - ACTIONS(6462), 1, + [145921] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4986), 1, + STATE(5003), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145935] = 4, - ACTIONS(6462), 1, + [145937] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5124), 1, + STATE(4658), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7556), 3, + ACTIONS(7538), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145951] = 5, - ACTIONS(7542), 1, + [145953] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(5120), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7565), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145969] = 5, + ACTIONS(7544), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7567), 1, + ACTIONS(7563), 1, sym__template_chars, ACTIONS(7670), 1, anon_sym_BQUOTE, @@ -259568,21 +259581,21 @@ static const uint16_t ts_small_parse_table[] = { STATE(4115), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [145969] = 6, + [145987] = 6, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(7419), 1, + ACTIONS(7415), 1, anon_sym_abstract, ACTIONS(7672), 1, anon_sym_class, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(3849), 1, + STATE(3855), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [145989] = 2, + [146007] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -259592,19 +259605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [146001] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5002), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146017] = 2, + [146019] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -259614,21 +259615,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146029] = 6, + [146031] = 6, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4038), 1, + STATE(4033), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146049] = 4, + [146051] = 4, ACTIONS(3550), 1, anon_sym_COLON, STATE(5200), 1, @@ -259636,11 +259637,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 3, + ACTIONS(3637), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACK, - [146065] = 2, + [146067] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -259650,37 +259651,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146077] = 2, + [146079] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2856), 5, + ACTIONS(2860), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146089] = 2, + [146091] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2856), 5, + ACTIONS(2860), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146101] = 2, + [146103] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2856), 5, + ACTIONS(2860), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146113] = 2, + [146115] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -259690,69 +259691,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146125] = 6, + [146127] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(3874), 1, + STATE(3873), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146145] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5032), 1, - sym__initializer, + [146147] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7680), 3, + ACTIONS(7206), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146161] = 3, - ACTIONS(7682), 1, + anon_sym_PIPE_RBRACE, + [146159] = 6, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + STATE(3317), 1, + sym_formal_parameters, + STATE(4336), 1, + sym__call_signature, + STATE(5224), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [146179] = 4, + ACTIONS(6470), 1, anon_sym_EQ, + STATE(5032), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 4, + ACTIONS(7680), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [146175] = 2, + anon_sym_SEMI, + [146195] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7206), 5, + ACTIONS(7208), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146187] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3307), 1, - sym_formal_parameters, - STATE(4330), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, + [146207] = 3, + ACTIONS(7682), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146207] = 4, - ACTIONS(6462), 1, + ACTIONS(3637), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [146221] = 4, + ACTIONS(6470), 1, anon_sym_EQ, STATE(5038), 1, sym__initializer, @@ -259763,8 +259774,8 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146223] = 4, - ACTIONS(7409), 1, + [146237] = 4, + ACTIONS(7403), 1, anon_sym_COLON, ACTIONS(7687), 1, anon_sym_EQ_GT, @@ -259775,157 +259786,151 @@ static const uint16_t ts_small_parse_table[] = { sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [146239] = 2, + [146253] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7690), 5, + ACTIONS(7206), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146251] = 2, + [146265] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7208), 5, + ACTIONS(7690), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146263] = 4, - ACTIONS(6462), 1, + [146277] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4806), 1, + STATE(4798), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146279] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7206), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146291] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7692), 5, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146303] = 4, - ACTIONS(7409), 1, + [146293] = 4, + ACTIONS(7403), 1, anon_sym_COLON, - ACTIONS(7694), 1, + ACTIONS(7692), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5441), 3, + STATE(5475), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [146319] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7188), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146331] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7697), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146343] = 6, + [146309] = 6, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, STATE(5045), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146363] = 2, + [146329] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7699), 5, + ACTIONS(7695), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146375] = 5, - ACTIONS(6622), 1, + [146341] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7697), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146353] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7701), 2, + ACTIONS(7699), 2, anon_sym_COMMA, anon_sym_RBRACK, - [146393] = 4, - ACTIONS(6462), 1, + [146371] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5046), 1, + STATE(4769), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7646), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146409] = 4, - ACTIONS(6414), 1, + [146387] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(5017), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7701), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146403] = 4, + ACTIONS(6376), 1, anon_sym_LBRACK, - ACTIONS(7705), 1, + ACTIONS(7703), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 3, + ACTIONS(4201), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [146425] = 5, - ACTIONS(7707), 1, + [146419] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(5047), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7528), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146435] = 5, + ACTIONS(7705), 1, anon_sym_BQUOTE, - ACTIONS(7709), 1, + ACTIONS(7707), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7712), 1, + ACTIONS(7710), 1, sym__template_chars, ACTIONS(5), 2, sym_html_comment, @@ -259933,140 +259938,152 @@ static const uint16_t ts_small_parse_table[] = { STATE(4115), 2, sym_template_type, aux_sym_template_literal_type_repeat1, - [146443] = 5, - ACTIONS(6622), 1, + [146453] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7715), 2, + ACTIONS(7713), 2, anon_sym_COMMA, anon_sym_GT, - [146461] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5018), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7717), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146477] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5047), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146493] = 6, + [146471] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(3850), 1, + STATE(3844), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146513] = 4, - ACTIONS(6462), 1, + [146491] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4812), 1, + STATE(4800), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146529] = 4, - ACTIONS(6462), 1, + [146507] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7196), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146519] = 4, + ACTIONS(6470), 1, anon_sym_EQ, STATE(5051), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146545] = 4, - ACTIONS(6462), 1, + [146535] = 4, + ACTIONS(6470), 1, anon_sym_EQ, STATE(5052), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146561] = 4, - ACTIONS(6462), 1, + [146551] = 4, + ACTIONS(6470), 1, anon_sym_EQ, STATE(5053), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146577] = 2, + [146567] = 6, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(3893), 1, + sym_formal_parameters, + STATE(5354), 1, + sym_type_parameters, + STATE(5465), 1, + sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2672), 5, + [146587] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(5054), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146589] = 6, + [146603] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, STATE(3932), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146609] = 2, + [146623] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2688), 5, + ACTIONS(2676), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [146635] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2692), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146621] = 2, + [146647] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -260076,7 +260093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146633] = 2, + [146659] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -260086,162 +260103,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146645] = 2, + [146671] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 5, + ACTIONS(7717), 5, anon_sym_EQ, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_extends, anon_sym_implements, - [146657] = 5, - ACTIONS(1551), 1, + [146683] = 5, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(7723), 1, + ACTIONS(7719), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5672), 2, + STATE(5504), 2, sym__module_export_name, sym_string, - [146675] = 4, - ACTIONS(6462), 1, + [146701] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5054), 1, + STATE(5055), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146691] = 6, + [146717] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5467), 1, - sym__call_signature, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146711] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5471), 1, + STATE(5468), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146731] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5055), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146747] = 6, + [146737] = 6, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(7417), 1, + ACTIONS(7413), 1, anon_sym_class, - ACTIONS(7419), 1, + ACTIONS(7415), 1, anon_sym_abstract, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(3849), 1, + STATE(3855), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146767] = 6, + [146757] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(3948), 1, + STATE(3946), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146787] = 4, - STATE(5153), 1, + [146777] = 4, + STATE(5160), 1, sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7569), 2, + ACTIONS(7567), 2, anon_sym_with, anon_sym_assert, - ACTIONS(7725), 2, + ACTIONS(7721), 2, sym__automatic_semicolon, anon_sym_SEMI, - [146803] = 6, + [146793] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(3815), 1, - sym__call_signature, - STATE(5281), 1, + STATE(5354), 1, sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [146823] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3895), 1, - sym_formal_parameters, - STATE(5348), 1, - sym_type_parameters, - STATE(5440), 1, + STATE(5457), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146843] = 4, - ACTIONS(6366), 1, + [146813] = 4, + ACTIONS(6360), 1, anon_sym_DOT, - ACTIONS(7727), 1, + ACTIONS(7723), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 3, + ACTIONS(6358), 3, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT, - [146859] = 2, + [146829] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4803), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146845] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -260251,707 +260240,704 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146871] = 6, - ACTIONS(7603), 1, + [146857] = 6, + ACTIONS(7601), 1, anon_sym_EQ, - ACTIONS(7729), 1, + ACTIONS(7725), 1, anon_sym_COMMA, - ACTIONS(7731), 1, + ACTIONS(7727), 1, anon_sym_RBRACE, - STATE(4952), 1, + STATE(4953), 1, aux_sym_enum_body_repeat1, - STATE(5309), 1, + STATE(5310), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [146891] = 6, + [146877] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(3952), 1, + STATE(3951), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, + [146897] = 3, + ACTIONS(4837), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(5565), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, [146911] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5147), 1, + STATE(5144), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, [146931] = 4, - STATE(5173), 1, + STATE(5176), 1, sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7569), 2, + ACTIONS(7567), 2, anon_sym_with, anon_sym_assert, - ACTIONS(7733), 2, + ACTIONS(7729), 2, sym__automatic_semicolon, anon_sym_SEMI, - [146947] = 2, + [146947] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(5021), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2820), 5, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146959] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4763), 1, - sym__initializer, + [146963] = 5, + ACTIONS(7733), 1, + anon_sym_SEMI, + ACTIONS(7735), 1, + sym__automatic_semicolon, + STATE(5474), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7648), 3, + ACTIONS(7567), 2, + anon_sym_with, + anon_sym_assert, + [146981] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2824), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146975] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4818), 1, - sym__initializer, + anon_sym_PIPE_RBRACE, + [146993] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(2824), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146991] = 4, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [147005] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5021), 1, + STATE(5029), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147007] = 5, - ACTIONS(7737), 1, - anon_sym_SEMI, - ACTIONS(7739), 1, - sym__automatic_semicolon, - STATE(5475), 1, - sym_import_attribute, + [147021] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7569), 2, - anon_sym_with, - anon_sym_assert, - [147025] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2844), 5, + ACTIONS(2848), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147037] = 2, + [147033] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1753), 5, + ACTIONS(1859), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147049] = 2, + [147045] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1823), 5, + ACTIONS(1811), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147061] = 2, + [147057] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1743), 5, + ACTIONS(1915), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147073] = 2, + [147069] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2864), 5, + ACTIONS(2868), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147085] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4747), 1, - sym__initializer, + [147081] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7556), 3, + ACTIONS(7214), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [147101] = 4, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [147093] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5062), 1, + STATE(5063), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147117] = 4, - ACTIONS(6462), 1, + [147109] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5063), 1, + STATE(5064), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147133] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5023), 1, - sym__initializer, + [147125] = 6, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6486), 1, + anon_sym_LPAREN, + STATE(3364), 1, + sym_formal_parameters, + STATE(3819), 1, + sym__call_signature, + STATE(5316), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147149] = 2, + [147145] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2896), 5, + ACTIONS(2900), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147161] = 6, + [147157] = 6, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(7419), 1, + ACTIONS(7415), 1, anon_sym_abstract, - ACTIONS(7464), 1, + ACTIONS(7470), 1, anon_sym_class, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(3849), 1, + STATE(3855), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147181] = 4, - ACTIONS(6462), 1, + [147177] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5069), 1, + STATE(5031), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147197] = 4, - ACTIONS(6462), 1, + [147193] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5027), 1, + STATE(5070), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147213] = 6, + [147209] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(5033), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7731), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147225] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(3963), 1, + STATE(3961), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147233] = 2, + [147245] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2704), 5, + ACTIONS(2708), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147245] = 6, + [147257] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5290), 1, + STATE(5294), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147265] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5030), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147281] = 6, + [147277] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5295), 1, + STATE(5301), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147301] = 6, + [147297] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5296), 1, + STATE(5303), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147321] = 2, + [147317] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2704), 5, + ACTIONS(2708), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147333] = 2, + [147329] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2704), 5, + ACTIONS(2708), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147345] = 6, + [147341] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5317), 1, + STATE(5318), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147365] = 2, + [147361] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2692), 5, + ACTIONS(2952), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147377] = 4, - ACTIONS(6462), 1, + [147373] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5072), 1, + STATE(5073), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147393] = 4, - ACTIONS(6462), 1, + [147389] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5073), 1, + STATE(5074), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147409] = 4, - ACTIONS(6462), 1, + [147405] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5074), 1, + STATE(5075), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147425] = 5, - ACTIONS(1551), 1, + [147421] = 5, + ACTIONS(1557), 1, anon_sym_DQUOTE, - ACTIONS(1553), 1, + ACTIONS(1559), 1, anon_sym_SQUOTE, - ACTIONS(7741), 1, + ACTIONS(7737), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5323), 2, + STATE(5325), 2, sym__module_export_name, sym_string, - [147443] = 6, + [147439] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5413), 1, + STATE(5412), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147463] = 6, + [147459] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(5044), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7739), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147475] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5421), 1, + STATE(5420), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147483] = 4, - ACTIONS(6462), 1, + [147495] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4821), 1, + STATE(5079), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147499] = 4, - ACTIONS(6462), 1, + [147511] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5079), 1, + STATE(5080), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147515] = 4, - ACTIONS(6462), 1, + [147527] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5080), 1, + STATE(5081), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147531] = 4, - ACTIONS(6462), 1, + [147543] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5081), 1, + STATE(5065), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147547] = 5, - ACTIONS(2338), 1, + [147559] = 5, + ACTIONS(2344), 1, anon_sym_DQUOTE, - ACTIONS(2340), 1, + ACTIONS(2346), 1, anon_sym_SQUOTE, - ACTIONS(7743), 1, + ACTIONS(7741), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(4654), 2, + STATE(4642), 2, sym__module_export_name, sym_string, - [147565] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5042), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7745), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147581] = 4, - ACTIONS(6462), 1, + [147577] = 4, + ACTIONS(6470), 1, anon_sym_EQ, STATE(5082), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147597] = 4, - ACTIONS(6462), 1, + [147593] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5043), 1, + STATE(5066), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147613] = 6, + [147609] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, STATE(5454), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147633] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5064), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147649] = 4, - ACTIONS(6462), 1, + [147629] = 4, + ACTIONS(6470), 1, anon_sym_EQ, STATE(5083), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147665] = 6, + [147645] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5325), 1, + STATE(5328), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147685] = 6, + [147665] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5472), 1, + STATE(5471), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147705] = 6, - ACTIONS(7040), 1, + [147685] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(5084), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7731), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [147701] = 6, + ACTIONS(7028), 1, anon_sym_LBRACE, - ACTIONS(7591), 1, + ACTIONS(7589), 1, anon_sym_SEMI, - ACTIONS(7593), 1, + ACTIONS(7591), 1, sym__automatic_semicolon, - ACTIONS(7595), 1, + ACTIONS(7593), 1, sym__function_signature_automatic_semicolon, STATE(776), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147725] = 6, + [147721] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5143), 1, + STATE(5146), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147745] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5065), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [147761] = 4, - ACTIONS(6462), 1, + [147741] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5084), 1, + STATE(5085), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147777] = 6, + [147757] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5146), 1, + STATE(5150), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147797] = 5, - ACTIONS(6705), 1, - anon_sym_AMP, + [147777] = 5, ACTIONS(6709), 1, + anon_sym_AMP, + ACTIONS(6713), 1, anon_sym_extends, - ACTIONS(7577), 1, + ACTIONS(7575), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7747), 2, + ACTIONS(7743), 2, sym__automatic_semicolon, anon_sym_SEMI, - [147815] = 2, + [147795] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -260961,7 +260947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147827] = 2, + [147807] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -260971,7 +260957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147839] = 2, + [147819] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -260981,79 +260967,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147851] = 2, + [147831] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2728), 5, + ACTIONS(2716), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147863] = 6, + [147843] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5329), 1, + STATE(5333), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147883] = 2, + [147863] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2608), 5, + ACTIONS(2612), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147895] = 4, - ACTIONS(6462), 1, + [147875] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5098), 1, + STATE(5100), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147911] = 4, - ACTIONS(6462), 1, + [147891] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4619), 1, + STATE(5087), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7749), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147927] = 6, + [147907] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5335), 1, + STATE(5339), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [147947] = 2, + [147927] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -261063,7 +261049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147959] = 2, + [147939] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -261073,45 +261059,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147971] = 4, - ACTIONS(6462), 1, + [147951] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5085), 1, + STATE(5088), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [147987] = 4, - ACTIONS(6462), 1, + [147967] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5086), 1, + STATE(4616), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7745), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148003] = 6, + [147983] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(3974), 1, + STATE(3973), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148023] = 2, + [148003] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -261121,17 +261107,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148035] = 2, + [148015] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1767), 5, + ACTIONS(1755), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148047] = 2, + [148027] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -261141,17 +261127,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148059] = 2, + [148039] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1833), 5, + ACTIONS(1821), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148071] = 2, + [148051] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -261161,323 +261147,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148083] = 4, - ACTIONS(6462), 1, + [148063] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5122), 1, + STATE(5121), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148099] = 4, - ACTIONS(6462), 1, + [148079] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4608), 1, + STATE(5091), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148115] = 4, - ACTIONS(6462), 1, + [148095] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5089), 1, + STATE(4553), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148131] = 4, - ACTIONS(7753), 1, + [148111] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(5092), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7731), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148127] = 4, + ACTIONS(7749), 1, anon_sym_in, - ACTIONS(7755), 1, + ACTIONS(7751), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7751), 3, + ACTIONS(7747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148147] = 4, - ACTIONS(7757), 1, + [148143] = 4, + ACTIONS(7753), 1, anon_sym_in, - ACTIONS(7759), 1, + ACTIONS(7755), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7751), 3, + ACTIONS(7747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148163] = 6, + [148159] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(4018), 1, + STATE(4017), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148183] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5093), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148199] = 4, - ACTIONS(6462), 1, + [148179] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4864), 1, + STATE(4870), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148215] = 2, + [148195] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5494), 5, + ACTIONS(5492), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [148227] = 2, + [148207] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2796), 5, + ACTIONS(2800), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148239] = 2, + [148219] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2804), 5, + ACTIONS(2808), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148251] = 6, + [148231] = 6, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(7761), 1, + ACTIONS(7757), 1, anon_sym_class, - ACTIONS(7763), 1, + ACTIONS(7759), 1, anon_sym_abstract, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(3849), 1, + STATE(3855), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148271] = 6, + [148251] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, STATE(4024), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148291] = 6, + [148271] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5367), 1, + STATE(5368), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148311] = 4, - ACTIONS(6462), 1, + [148291] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4870), 1, + STATE(4879), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148327] = 2, + [148307] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5498), 5, + ACTIONS(5496), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [148339] = 4, - ACTIONS(6462), 1, + [148319] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4873), 1, + STATE(4888), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148355] = 2, + [148335] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5498), 5, + ACTIONS(5496), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [148367] = 2, + [148347] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5498), 5, + ACTIONS(5496), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [148379] = 6, + [148359] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5420), 1, + STATE(5426), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148399] = 6, + [148379] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, STATE(3862), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148419] = 4, - ACTIONS(6462), 1, + [148399] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4669), 1, + STATE(4662), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148435] = 4, - ACTIONS(6462), 1, + [148415] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4886), 1, + STATE(4882), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148451] = 2, + [148431] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4933), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2832), 5, + ACTIONS(7528), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [148447] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2836), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148463] = 2, + [148459] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2836), 5, + ACTIONS(2840), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148475] = 2, + [148471] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2848), 5, + ACTIONS(2852), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148487] = 2, + [148483] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2872), 5, + ACTIONS(2876), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148499] = 2, + [148495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -261487,423 +261485,425 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148511] = 4, - ACTIONS(6462), 1, + [148507] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4887), 1, + STATE(5095), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148527] = 4, - ACTIONS(6462), 1, + [148523] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5028), 1, + STATE(5027), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7765), 3, + ACTIONS(7761), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148543] = 2, + [148539] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2888), 5, + ACTIONS(2892), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148555] = 4, - ACTIONS(6462), 1, + [148551] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5094), 1, + STATE(5097), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148571] = 2, + [148567] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2684), 5, + ACTIONS(2688), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148583] = 2, + [148579] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1865), 5, + ACTIONS(1849), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148595] = 4, - ACTIONS(6462), 1, + [148591] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4978), 1, + STATE(4979), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148611] = 4, - ACTIONS(6462), 1, + [148607] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5097), 1, + STATE(5011), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148627] = 4, - ACTIONS(6462), 1, + [148623] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5087), 1, + STATE(5086), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148643] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5003), 1, - sym__initializer, + [148639] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(2740), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148659] = 4, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [148651] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4678), 1, + STATE(5016), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7534), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148675] = 2, + [148667] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4709), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2740), 5, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148687] = 4, - ACTIONS(6462), 1, + [148683] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5012), 1, + STATE(4723), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148703] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4634), 1, - sym__initializer, + [148699] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(2812), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148719] = 2, + anon_sym_PIPE_RBRACE, + [148711] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2808), 5, + ACTIONS(2828), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148731] = 2, + [148723] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2824), 5, + ACTIONS(2832), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148743] = 2, + [148735] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2828), 5, + ACTIONS(2856), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148755] = 2, + [148747] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(5098), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2852), 5, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148767] = 4, - ACTIONS(6462), 1, + [148763] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4698), 1, + STATE(5101), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148783] = 4, - ACTIONS(6462), 1, + [148779] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5099), 1, + STATE(4810), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148799] = 4, - ACTIONS(6462), 1, + [148795] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5100), 1, + STATE(4532), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148815] = 4, - ACTIONS(6462), 1, + [148811] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5137), 1, + STATE(4815), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148831] = 4, - ACTIONS(6462), 1, + [148827] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4533), 1, + STATE(5108), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7769), 3, + ACTIONS(7739), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148847] = 4, - ACTIONS(6462), 1, + [148843] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5108), 1, + STATE(5111), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7745), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148863] = 4, - ACTIONS(6462), 1, + [148859] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4823), 1, + STATE(4831), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148879] = 6, + [148875] = 6, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4289), 1, + STATE(4288), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [148899] = 2, + [148895] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7172), 5, + ACTIONS(7178), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148911] = 4, - ACTIONS(6462), 1, + [148907] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5111), 1, + STATE(5113), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148927] = 2, + [148923] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7771), 5, + ACTIONS(7767), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148939] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5112), 1, - sym__initializer, + [148935] = 6, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6486), 1, + anon_sym_LPAREN, + STATE(3364), 1, + sym_formal_parameters, + STATE(4030), 1, + sym__call_signature, + STATE(5316), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, [148955] = 4, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4867), 1, + STATE(5122), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148971] = 2, + [148971] = 4, + ACTIONS(7403), 1, + anon_sym_COLON, + ACTIONS(7769), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7172), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148983] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5114), 1, - sym__initializer, + STATE(5192), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [148987] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7178), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, [148999] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7773), 5, + ACTIONS(7772), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, [149011] = 4, - ACTIONS(7409), 1, - anon_sym_COLON, - ACTIONS(7775), 1, - anon_sym_EQ_GT, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(5123), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5192), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, + ACTIONS(7731), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, [149027] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7391), 5, + ACTIONS(7381), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, [149039] = 4, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5123), 1, + STATE(5136), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -261911,7 +261911,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7174), 5, + ACTIONS(7180), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -261921,472 +261921,433 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7778), 5, + ACTIONS(7774), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, [149079] = 4, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4531), 1, + STATE(4867), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149095] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6482), 1, - anon_sym_LPAREN, - STATE(3365), 1, - sym_formal_parameters, - STATE(4037), 1, - sym__call_signature, - STATE(5281), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149115] = 4, - ACTIONS(6462), 1, + [149095] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4591), 1, + STATE(4549), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149131] = 4, - ACTIONS(6462), 1, + [149111] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4716), 1, + STATE(4755), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149147] = 2, + [149127] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7186), 5, + ACTIONS(7194), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149159] = 4, - ACTIONS(6462), 1, + [149139] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5125), 1, + STATE(5129), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149175] = 4, - ACTIONS(6462), 1, + [149155] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5129), 1, + STATE(5130), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149191] = 4, - ACTIONS(6462), 1, + [149171] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4855), 1, + STATE(4868), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149207] = 4, - ACTIONS(6462), 1, + [149187] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4625), 1, + STATE(4969), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7780), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149223] = 4, - ACTIONS(6462), 1, + [149203] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4996), 1, + STATE(5026), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149239] = 4, - ACTIONS(6462), 1, + [149219] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5041), 1, + STATE(5042), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149255] = 4, - ACTIONS(6462), 1, + [149235] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5049), 1, + STATE(5050), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149271] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(5076), 1, - sym__initializer, + [149251] = 5, + ACTIONS(7544), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7563), 1, + sym__template_chars, + ACTIONS(7776), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149287] = 4, - ACTIONS(7409), 1, + STATE(4115), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [149269] = 4, + ACTIONS(7403), 1, anon_sym_COLON, - ACTIONS(7782), 1, + ACTIONS(7778), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5441), 3, + STATE(5475), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [149303] = 3, - ACTIONS(4837), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5565), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [149317] = 4, - ACTIONS(6462), 1, + [149285] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5130), 1, + STATE(4621), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7781), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149333] = 4, - ACTIONS(6462), 1, + [149301] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4559), 1, + STATE(4550), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149349] = 3, - ACTIONS(7785), 1, + [149317] = 3, + ACTIONS(7783), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3623), 4, + ACTIONS(3614), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [149363] = 2, + [149331] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(5133), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7787), 5, + ACTIONS(7731), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149347] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7785), 5, anon_sym_EQ, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_extends, anon_sym_implements, - [149375] = 4, - ACTIONS(6462), 1, + [149359] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4572), 1, + STATE(4559), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149391] = 4, - ACTIONS(6462), 1, + [149375] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4573), 1, + STATE(4561), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149407] = 5, - ACTIONS(7542), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7567), 1, - sym__template_chars, - ACTIONS(7789), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(4115), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [149425] = 4, - ACTIONS(6462), 1, + [149391] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4576), 1, + STATE(4568), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149441] = 4, - ACTIONS(6462), 1, + [149407] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4583), 1, + STATE(4570), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149457] = 4, - ACTIONS(6462), 1, + [149423] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4585), 1, + STATE(4571), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149473] = 4, - ACTIONS(6462), 1, + [149439] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5133), 1, + STATE(5134), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149489] = 2, + [149455] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4588), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7791), 5, + ACTIONS(7715), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149501] = 6, + [149471] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5150), 1, + STATE(5233), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149521] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4599), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7719), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [149537] = 6, + [149491] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5207), 1, + STATE(5217), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149557] = 4, - ACTIONS(6462), 1, + [149511] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4604), 1, + STATE(4595), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149573] = 4, - ACTIONS(6462), 1, + [149527] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4616), 1, + STATE(4601), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149589] = 4, - ACTIONS(6462), 1, + [149543] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7787), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149555] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4618), 1, + STATE(4606), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149605] = 4, - ACTIONS(6462), 1, + [149571] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4623), 1, + STATE(4613), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7528), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149621] = 4, - ACTIONS(1893), 1, + [149587] = 4, + ACTIONS(1887), 1, anon_sym_DOT, - ACTIONS(4203), 1, + ACTIONS(4285), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 3, + ACTIONS(4287), 3, anon_sym_COMMA, anon_sym_LT, anon_sym_LBRACE_PIPE, - [149637] = 6, + [149603] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5308), 1, + STATE(5299), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149657] = 4, - ACTIONS(1897), 1, + [149623] = 4, + ACTIONS(1891), 1, anon_sym_DOT, - ACTIONS(4203), 1, + ACTIONS(4285), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4205), 3, + ACTIONS(4287), 3, anon_sym_COMMA, anon_sym_LT, anon_sym_LBRACE_PIPE, - [149673] = 6, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7763), 1, - anon_sym_abstract, - ACTIONS(7793), 1, - anon_sym_class, - STATE(1297), 1, - sym_decorator, - STATE(3849), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [149693] = 2, + [149639] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -262396,21 +262357,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149705] = 6, + [149651] = 6, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4098), 1, + STATE(4096), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149725] = 2, + [149671] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -262420,7 +262381,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149737] = 2, + [149683] = 6, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(7759), 1, + anon_sym_abstract, + ACTIONS(7789), 1, + anon_sym_class, + STATE(1285), 1, + sym_decorator, + STATE(3855), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [149703] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -262430,7 +262405,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149749] = 2, + [149715] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7791), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149727] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -262440,46 +262425,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [149761] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7795), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149773] = 6, + [149739] = 6, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(4631), 1, + STATE(4627), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149793] = 2, + [149759] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4672), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7210), 5, + ACTIONS(7536), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149805] = 6, - ACTIONS(7318), 1, + [149775] = 5, + ACTIONS(7544), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7793), 1, + anon_sym_BQUOTE, + ACTIONS(7795), 1, + sym__template_chars, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(4296), 2, + sym_template_type, + aux_sym_template_literal_type_repeat1, + [149793] = 6, + ACTIONS(7298), 1, anon_sym_AMP, - ACTIONS(7320), 1, + ACTIONS(7300), 1, anon_sym_PIPE, - ACTIONS(7322), 1, + ACTIONS(7302), 1, anon_sym_extends, ACTIONS(7797), 1, anon_sym_as, @@ -262488,31 +262478,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [149825] = 4, - STATE(5419), 1, + [149813] = 4, + STATE(5403), 1, sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7569), 2, + ACTIONS(7567), 2, anon_sym_with, anon_sym_assert, ACTIONS(7801), 2, sym__automatic_semicolon, anon_sym_SEMI, - [149841] = 4, - STATE(5448), 1, + [149829] = 4, + STATE(5446), 1, sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7569), 2, + ACTIONS(7567), 2, anon_sym_with, anon_sym_assert, ACTIONS(7803), 2, sym__automatic_semicolon, anon_sym_SEMI, - [149857] = 2, + [149845] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -262522,45 +262512,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149869] = 6, + [149857] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(3827), 1, + STATE(3828), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149889] = 6, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3307), 1, - sym_formal_parameters, - STATE(3908), 1, - sym__call_signature, - STATE(5222), 1, - sym_type_parameters, + [149877] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [149909] = 2, + ACTIONS(7204), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149889] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7204), 5, + ACTIONS(7210), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149921] = 2, + [149901] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -262570,6 +262556,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, + [149913] = 6, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + STATE(3317), 1, + sym_formal_parameters, + STATE(4156), 1, + sym__call_signature, + STATE(5224), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, [149933] = 2, ACTIONS(5), 2, sym_html_comment, @@ -262581,9 +262581,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_PIPE_RBRACE, [149945] = 4, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4862), 1, + STATE(4875), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -262593,9 +262593,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, [149961] = 4, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4880), 1, + STATE(4881), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -262605,7 +262605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, [149977] = 4, - ACTIONS(7409), 1, + ACTIONS(7403), 1, anon_sym_COLON, ACTIONS(7813), 1, anon_sym_EQ_GT, @@ -262616,48 +262616,36 @@ static const uint16_t ts_small_parse_table[] = { sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [149993] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4826), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7528), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150009] = 6, + [149993] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5181), 1, + STATE(5172), 1, sym__call_signature, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150029] = 6, + [150013] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5425), 1, + STATE(5422), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150049] = 4, - ACTIONS(7409), 1, + [150033] = 4, + ACTIONS(7403), 1, anon_sym_COLON, ACTIONS(7816), 1, anon_sym_EQ_GT, @@ -262668,118 +262656,106 @@ static const uint16_t ts_small_parse_table[] = { sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [150065] = 4, - ACTIONS(7409), 1, + [150049] = 4, + ACTIONS(7403), 1, anon_sym_COLON, ACTIONS(7819), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5441), 3, + STATE(5475), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [150081] = 6, + [150065] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3895), 1, + STATE(3893), 1, sym_formal_parameters, - STATE(5348), 1, + STATE(5354), 1, sym_type_parameters, - STATE(5437), 1, + STATE(5436), 1, sym__call_signature, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150101] = 6, + [150085] = 6, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6482), 1, + ACTIONS(6486), 1, anon_sym_LPAREN, - STATE(3365), 1, + STATE(3364), 1, sym_formal_parameters, - STATE(3886), 1, + STATE(3765), 1, sym__call_signature, - STATE(5281), 1, + STATE(5316), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150121] = 4, - ACTIONS(7409), 1, + [150105] = 4, + ACTIONS(7403), 1, anon_sym_COLON, ACTIONS(7822), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(5441), 3, + STATE(5475), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [150137] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4530), 1, - sym__initializer, + [150121] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7825), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150153] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7827), 5, + ACTIONS(7825), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [150165] = 2, + [150133] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7829), 5, + ACTIONS(7827), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150177] = 4, - ACTIONS(6462), 1, + anon_sym_PIPE_RBRACE, + [150145] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4650), 1, + STATE(4639), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7831), 3, + ACTIONS(7829), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150193] = 4, - ACTIONS(6462), 1, + [150161] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5109), 1, + STATE(4573), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7825), 3, + ACTIONS(7831), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150209] = 4, - ACTIONS(6462), 1, + [150177] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4659), 1, + STATE(4647), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, @@ -262788,259 +262764,271 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150225] = 4, - ACTIONS(6462), 1, + [150193] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4674), 1, + STATE(4787), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7831), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150241] = 4, - ACTIONS(6462), 1, + [150209] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4688), 1, + STATE(4670), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150257] = 4, - ACTIONS(6462), 1, + [150225] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4693), 1, + STATE(4680), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150273] = 6, + [150241] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7835), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [150253] = 6, ACTIONS(2570), 1, anon_sym_LT, ACTIONS(3288), 1, anon_sym_LPAREN, - STATE(3307), 1, + STATE(3317), 1, sym_formal_parameters, - STATE(5001), 1, + STATE(4999), 1, sym__call_signature, - STATE(5222), 1, + STATE(5224), 1, sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150293] = 4, - ACTIONS(6462), 1, + [150273] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4694), 1, + STATE(4685), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150309] = 4, - ACTIONS(6462), 1, + [150289] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4715), 1, + STATE(4686), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150325] = 4, - ACTIONS(6462), 1, + [150305] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4717), 1, + STATE(4702), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7548), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150341] = 4, - ACTIONS(6462), 1, + [150321] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4718), 1, + STATE(4704), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150357] = 4, - ACTIONS(6462), 1, + [150337] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4719), 1, + STATE(4711), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150373] = 4, - ACTIONS(6462), 1, + [150353] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4721), 1, + STATE(4713), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150389] = 2, + [150369] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(4714), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7835), 5, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150385] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, + STATE(4715), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, [150401] = 4, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4723), 1, + STATE(4716), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [150417] = 4, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4725), 1, + STATE(4722), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7548), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [150433] = 4, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4733), 1, + STATE(4725), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [150449] = 4, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4738), 1, + STATE(4726), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [150465] = 4, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4740), 1, + STATE(4596), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [150481] = 4, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4598), 1, + STATE(4788), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7556), 3, + ACTIONS(7831), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [150497] = 4, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4538), 1, + STATE(4739), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7825), 3, + ACTIONS(7565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [150513] = 4, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4757), 1, + STATE(4747), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7548), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [150529] = 4, - ACTIONS(6462), 1, - anon_sym_EQ, - STATE(4575), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7825), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [150545] = 4, - ACTIONS(6462), 1, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4702), 1, + STATE(4712), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7556), 3, + ACTIONS(7831), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150561] = 6, + [150545] = 6, ACTIONS(219), 1, anon_sym_LBRACE_PIPE, ACTIONS(1541), 1, @@ -263049,158 +263037,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, STATE(867), 1, sym_object_type, - STATE(4692), 1, + STATE(4689), 1, sym_extends_type_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150581] = 4, - ACTIONS(6462), 1, + [150565] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4574), 1, + STATE(4577), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7556), 3, + ACTIONS(7565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150597] = 4, - ACTIONS(6462), 1, + [150581] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4764), 1, + STATE(4757), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7548), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150613] = 4, - ACTIONS(6462), 1, + [150597] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4768), 1, + STATE(4758), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150629] = 4, - ACTIONS(6462), 1, + [150613] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4773), 1, + STATE(4759), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7528), 3, + ACTIONS(7530), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150645] = 4, - ACTIONS(6366), 1, + [150629] = 4, + ACTIONS(6360), 1, anon_sym_DOT, ACTIONS(7837), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 3, + ACTIONS(6358), 3, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT, - [150661] = 4, - ACTIONS(6462), 1, + [150645] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4786), 1, + STATE(4781), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7546), 3, + ACTIONS(7548), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150677] = 4, - ACTIONS(6462), 1, + [150661] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(4729), 1, + STATE(4735), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7556), 3, + ACTIONS(7565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150693] = 4, - ACTIONS(6462), 1, + [150677] = 4, + ACTIONS(6470), 1, anon_sym_EQ, - STATE(5061), 1, + STATE(4767), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150709] = 4, - ACTIONS(7839), 1, - anon_sym_from, - STATE(5151), 1, - sym__from_clause, + [150693] = 4, + ACTIONS(6470), 1, + anon_sym_EQ, + STATE(5062), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7841), 2, + ACTIONS(7715), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [150724] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, + [150709] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7839), 1, + anon_sym_DQUOTE, + STATE(4493), 1, + aux_sym_string_repeat1, + ACTIONS(7841), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [150726] = 5, + ACTIONS(1903), 1, + anon_sym_COMMA, ACTIONS(7843), 1, - anon_sym_RPAREN, + anon_sym_EQ, + ACTIONS(7845), 1, + anon_sym_RBRACK, + STATE(4580), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150741] = 5, + [150743] = 5, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5261), 1, + STATE(5267), 1, sym_type_parameters, - STATE(5709), 1, + STATE(5729), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150758] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7845), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150775] = 4, + [150760] = 4, ACTIONS(7847), 1, anon_sym_COMMA, - STATE(4425), 1, + STATE(4521), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, @@ -263208,1367 +263197,1376 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7849), 2, sym__automatic_semicolon, anon_sym_SEMI, - [150790] = 4, - ACTIONS(7847), 1, - anon_sym_COMMA, - STATE(4425), 1, - aux_sym_variable_declaration_repeat1, + [150775] = 5, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(7851), 1, + anon_sym_export, + STATE(1285), 1, + sym_decorator, + STATE(3855), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7851), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [150805] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7853), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, + [150792] = 5, + ACTIONS(3), 1, sym_comment, - [150822] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7853), 1, + anon_sym_DQUOTE, + STATE(4394), 1, + aux_sym_string_repeat1, + ACTIONS(7855), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [150809] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7855), 1, + ACTIONS(7853), 1, anon_sym_SQUOTE, - STATE(4436), 1, + STATE(4396), 1, aux_sym_string_repeat2, ACTIONS(7857), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [150839] = 4, - ACTIONS(3843), 1, - anon_sym_COLON, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7859), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [150854] = 5, + [150826] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7861), 1, + ACTIONS(7859), 1, anon_sym_DQUOTE, - STATE(4399), 1, + STATE(4493), 1, aux_sym_string_repeat1, - ACTIONS(7863), 2, + ACTIONS(7841), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [150871] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7861), 1, - anon_sym_SQUOTE, - STATE(4400), 1, - aux_sym_string_repeat2, - ACTIONS(7865), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [150888] = 5, - ACTIONS(6622), 1, + [150843] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(7867), 1, + ACTIONS(7861), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [150905] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7869), 1, - anon_sym_DQUOTE, - STATE(4431), 1, - aux_sym_string_repeat1, - ACTIONS(7871), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [150922] = 5, + [150860] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7869), 1, + ACTIONS(7859), 1, anon_sym_SQUOTE, - STATE(4436), 1, + STATE(4497), 1, aux_sym_string_repeat2, - ACTIONS(7857), 2, + ACTIONS(7863), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [150939] = 4, - ACTIONS(7847), 1, + [150877] = 5, + ACTIONS(1903), 1, anon_sym_COMMA, - STATE(4425), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(7843), 1, + anon_sym_EQ, + ACTIONS(7865), 1, + anon_sym_RBRACK, + STATE(5006), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7873), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [150954] = 4, - ACTIONS(7140), 1, + [150894] = 5, + ACTIONS(3519), 1, + anon_sym_LPAREN, + ACTIONS(6362), 1, + anon_sym_LT, + STATE(3146), 1, + sym_arguments, + STATE(3270), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150911] = 5, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, + anon_sym_PIPE, + ACTIONS(6608), 1, + anon_sym_extends, + ACTIONS(7867), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [150928] = 4, + ACTIONS(7144), 1, anon_sym_EQ, - STATE(5166), 1, + STATE(5365), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7875), 2, + ACTIONS(7869), 2, anon_sym_COMMA, anon_sym_RPAREN, - [150969] = 3, - ACTIONS(6127), 1, + [150943] = 3, + ACTIONS(6153), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - [150982] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7877), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [150999] = 3, - ACTIONS(7879), 1, + [150956] = 3, + ACTIONS(7871), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3843), 3, + ACTIONS(3819), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - [151012] = 3, - ACTIONS(7705), 1, + [150969] = 3, + ACTIONS(7703), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4238), 3, + ACTIONS(4201), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151025] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(7881), 1, - anon_sym_export, - STATE(1297), 1, - sym_decorator, - STATE(3849), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, + [150982] = 5, + ACTIONS(3), 1, sym_comment, - [151042] = 5, - ACTIONS(3507), 1, - anon_sym_LPAREN, - ACTIONS(6352), 1, - anon_sym_LT, - STATE(3128), 1, - sym_arguments, - STATE(3248), 1, - sym_type_arguments, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [151059] = 5, - ACTIONS(6622), 1, + ACTIONS(7873), 1, + anon_sym_SQUOTE, + STATE(4497), 1, + aux_sym_string_repeat2, + ACTIONS(7863), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [150999] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(7883), 1, + ACTIONS(7875), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151076] = 5, - ACTIONS(6622), 1, + [151016] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(7885), 1, - anon_sym_RBRACK, + ACTIONS(7877), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151093] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7887), 1, - anon_sym_SQUOTE, - STATE(4394), 1, - aux_sym_string_repeat2, - ACTIONS(7889), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151110] = 4, - ACTIONS(7847), 1, - anon_sym_COMMA, - STATE(4425), 1, - aux_sym_variable_declaration_repeat1, + [151033] = 4, + ACTIONS(7879), 1, + anon_sym_from, + STATE(5319), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7891), 2, + ACTIONS(5119), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151125] = 5, - ACTIONS(4633), 1, + [151048] = 4, + ACTIONS(6350), 1, + anon_sym_STAR, + ACTIONS(6354), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(5482), 2, + sym_namespace_import, + sym_named_imports, + [151063] = 5, + ACTIONS(3535), 1, anon_sym_LPAREN, - ACTIONS(7893), 1, + ACTIONS(6063), 1, anon_sym_LT, - STATE(1966), 1, + STATE(2936), 1, sym_arguments, - STATE(1967), 1, + STATE(3032), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151142] = 5, - ACTIONS(6622), 1, + [151080] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(7895), 1, - anon_sym_RPAREN, + ACTIONS(7881), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151159] = 2, + [151097] = 4, + ACTIONS(7847), 1, + anon_sym_COMMA, + STATE(4521), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7897), 4, + ACTIONS(7883), 2, sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, anon_sym_SEMI, - [151170] = 4, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6360), 1, - anon_sym_LBRACE, - ACTIONS(5), 2, + [151112] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(7885), 1, + anon_sym_SQUOTE, + STATE(4479), 1, + aux_sym_string_repeat2, + ACTIONS(7887), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [151129] = 5, + ACTIONS(3), 1, sym_comment, - STATE(5547), 2, - sym_namespace_import, - sym_named_imports, - [151185] = 3, - ACTIONS(7899), 1, - anon_sym_DOT, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7873), 1, + anon_sym_DQUOTE, + STATE(4493), 1, + aux_sym_string_repeat1, + ACTIONS(7841), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151146] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [151198] = 5, - ACTIONS(7901), 1, + ACTIONS(7889), 4, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, + anon_sym_SEMI, + [151157] = 5, + ACTIONS(7891), 1, sym_identifier, - STATE(3951), 1, + STATE(3950), 1, sym_nested_type_identifier, - STATE(4612), 1, + STATE(4615), 1, sym_generic_type, - STATE(5633), 1, + STATE(5639), 1, sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151215] = 5, - ACTIONS(7160), 1, + [151174] = 5, + ACTIONS(7164), 1, anon_sym_COMMA, - ACTIONS(7903), 1, + ACTIONS(7893), 1, anon_sym_LBRACE, - ACTIONS(7905), 1, + ACTIONS(7895), 1, anon_sym_LBRACE_PIPE, - STATE(4440), 1, + STATE(4450), 1, aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151232] = 5, - ACTIONS(7160), 1, + [151191] = 5, + ACTIONS(7164), 1, anon_sym_COMMA, - ACTIONS(7907), 1, + ACTIONS(7897), 1, anon_sym_LBRACE, - ACTIONS(7909), 1, + ACTIONS(7899), 1, anon_sym_LBRACE_PIPE, - STATE(4440), 1, + STATE(4450), 1, aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151249] = 5, - ACTIONS(7160), 1, + [151208] = 5, + ACTIONS(7164), 1, anon_sym_COMMA, - ACTIONS(7907), 1, + ACTIONS(7897), 1, anon_sym_LBRACE, - ACTIONS(7909), 1, + ACTIONS(7899), 1, anon_sym_LBRACE_PIPE, - STATE(4440), 1, + STATE(4450), 1, aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151266] = 4, - ACTIONS(7847), 1, - anon_sym_COMMA, - STATE(4401), 1, - aux_sym_variable_declaration_repeat1, + [151225] = 3, + ACTIONS(7901), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7911), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151281] = 5, + ACTIONS(6358), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [151238] = 4, + ACTIONS(7144), 1, + anon_sym_EQ, + STATE(5166), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7903), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [151253] = 5, ACTIONS(99), 1, anon_sym_AT, - ACTIONS(7913), 1, + ACTIONS(7905), 1, anon_sym_class, - STATE(1297), 1, + STATE(1285), 1, sym_decorator, - STATE(3849), 1, + STATE(3855), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151298] = 5, - ACTIONS(7178), 1, + [151270] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(7915), 1, - anon_sym_QMARK, + ACTIONS(7907), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151315] = 4, - ACTIONS(7917), 1, - anon_sym_COMMA, - STATE(4425), 1, - aux_sym_variable_declaration_repeat1, + [151287] = 5, + ACTIONS(7184), 1, + anon_sym_AMP, + ACTIONS(7186), 1, + anon_sym_PIPE, + ACTIONS(7188), 1, + anon_sym_extends, + ACTIONS(7909), 1, + anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7920), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151330] = 5, - ACTIONS(6622), 1, + [151304] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(7922), 1, + ACTIONS(7911), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151347] = 4, - ACTIONS(7140), 1, - anon_sym_EQ, - STATE(5405), 1, - sym__initializer, + [151321] = 4, + ACTIONS(7847), 1, + anon_sym_COMMA, + STATE(4521), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7924), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [151362] = 5, - ACTIONS(1909), 1, + ACTIONS(7913), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151336] = 4, + ACTIONS(7847), 1, anon_sym_COMMA, - ACTIONS(7926), 1, - anon_sym_EQ, - ACTIONS(7928), 1, - anon_sym_RBRACK, - STATE(5000), 1, - aux_sym_array_pattern_repeat1, + STATE(4521), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151379] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5337), 1, - sym_type_parameters, - STATE(5661), 1, - sym_formal_parameters, + ACTIONS(7915), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151351] = 4, + ACTIONS(6622), 1, + anon_sym_EQ, + STATE(5229), 1, + sym_default_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151396] = 5, + ACTIONS(7917), 2, + anon_sym_COMMA, + anon_sym_GT, + [151366] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7930), 1, + ACTIONS(7885), 1, anon_sym_DQUOTE, - STATE(4431), 1, + STATE(4387), 1, aux_sym_string_repeat1, - ACTIONS(7871), 2, + ACTIONS(7919), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151413] = 5, - ACTIONS(3), 1, + [151383] = 5, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(5338), 1, + sym_type_parameters, + STATE(5642), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [151400] = 5, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, + anon_sym_PIPE, + ACTIONS(6608), 1, + anon_sym_extends, + ACTIONS(7921), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7932), 1, - anon_sym_DQUOTE, - STATE(4431), 1, - aux_sym_string_repeat1, - ACTIONS(7934), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151430] = 4, + sym_comment, + [151417] = 5, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(5231), 1, + sym_type_parameters, + STATE(5515), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [151434] = 5, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, + anon_sym_PIPE, ACTIONS(6608), 1, - anon_sym_EQ, - STATE(5227), 1, - sym_default_type, + anon_sym_extends, + ACTIONS(7923), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7937), 2, + [151451] = 4, + ACTIONS(7925), 1, anon_sym_COMMA, - anon_sym_GT, - [151445] = 5, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(6066), 1, - anon_sym_LT, - STATE(2919), 1, - sym_arguments, - STATE(2954), 1, - sym_type_arguments, + STATE(4433), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151462] = 4, - ACTIONS(7939), 1, + ACTIONS(4866), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151466] = 4, + ACTIONS(7928), 1, anon_sym_COMMA, STATE(4434), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7421), 2, + ACTIONS(7419), 2, anon_sym_LBRACE, anon_sym_GT, - [151477] = 5, - ACTIONS(6622), 1, + [151481] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(7942), 1, + ACTIONS(7931), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151494] = 5, + [151498] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7944), 1, - anon_sym_SQUOTE, - STATE(4436), 1, - aux_sym_string_repeat2, - ACTIONS(7946), 2, - sym_unescaped_single_string_fragment, + ACTIONS(7933), 1, + anon_sym_DQUOTE, + STATE(4455), 1, + aux_sym_string_repeat1, + ACTIONS(7935), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [151511] = 5, - ACTIONS(7949), 1, + [151515] = 5, + ACTIONS(7937), 1, sym_identifier, - ACTIONS(7951), 1, + ACTIONS(7939), 1, anon_sym_const, - ACTIONS(7953), 1, + ACTIONS(7941), 1, anon_sym_GT, - STATE(5280), 1, + STATE(5286), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151528] = 2, + [151532] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7955), 4, + ACTIONS(7943), 4, sym__template_chars, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR_LBRACE, - [151539] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5229), 1, - sym_type_parameters, - STATE(5511), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151556] = 5, - ACTIONS(7957), 1, - anon_sym_LBRACE, - ACTIONS(7959), 1, - anon_sym_COMMA, - ACTIONS(7962), 1, - anon_sym_LBRACE_PIPE, - STATE(4440), 1, - aux_sym_extends_type_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151573] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7964), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151590] = 5, + [151543] = 5, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5176), 1, + STATE(5175), 1, sym_type_parameters, - STATE(5534), 1, + STATE(5549), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151607] = 4, + [151560] = 4, ACTIONS(7847), 1, anon_sym_COMMA, - STATE(4412), 1, + STATE(4390), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7966), 2, + ACTIONS(7945), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151622] = 4, - ACTIONS(7968), 1, + [151575] = 4, + ACTIONS(7947), 1, anon_sym_EQ, - STATE(5351), 1, + STATE(5352), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6767), 2, + ACTIONS(6737), 2, anon_sym_in, anon_sym_of, - [151637] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7970), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [151654] = 5, + [151590] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7930), 1, + ACTIONS(7933), 1, anon_sym_SQUOTE, - STATE(4436), 1, + STATE(4456), 1, aux_sym_string_repeat2, - ACTIONS(7857), 2, + ACTIONS(7949), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151671] = 5, - ACTIONS(7160), 1, + [151607] = 4, + ACTIONS(6622), 1, + anon_sym_EQ, + STATE(5280), 1, + sym_default_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7951), 2, anon_sym_COMMA, - ACTIONS(7440), 1, - anon_sym_LBRACE, - ACTIONS(7442), 1, - anon_sym_LBRACE_PIPE, - STATE(4421), 1, - aux_sym_extends_type_clause_repeat1, + anon_sym_GT, + [151622] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151688] = 3, - ACTIONS(7972), 1, + ACTIONS(6039), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151633] = 3, + ACTIONS(7953), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 3, + ACTIONS(3637), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - [151701] = 5, - ACTIONS(3), 1, + [151646] = 5, + ACTIONS(7164), 1, + anon_sym_COMMA, + ACTIONS(7442), 1, + anon_sym_LBRACE, + ACTIONS(7444), 1, + anon_sym_LBRACE_PIPE, + STATE(4418), 1, + aux_sym_extends_type_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [151663] = 5, + ACTIONS(4627), 1, + anon_sym_LPAREN, + ACTIONS(7956), 1, + anon_sym_LT, + STATE(1966), 1, + sym_arguments, + STATE(1967), 1, + sym_type_arguments, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7975), 1, - anon_sym_DQUOTE, - STATE(4457), 1, - aux_sym_string_repeat1, - ACTIONS(7977), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151718] = 5, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [151680] = 4, + ACTIONS(7960), 1, + anon_sym_COMMA, + STATE(4469), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(7975), 1, - anon_sym_SQUOTE, - STATE(4458), 1, - aux_sym_string_repeat2, - ACTIONS(7979), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [151735] = 5, - ACTIONS(6622), 1, + sym_comment, + ACTIONS(7958), 2, + anon_sym_LBRACE, + anon_sym_implements, + [151695] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(7981), 1, + ACTIONS(7962), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151752] = 4, - ACTIONS(6608), 1, - anon_sym_EQ, - STATE(5276), 1, - sym_default_type, + [151712] = 5, + ACTIONS(7964), 1, + anon_sym_LBRACE, + ACTIONS(7966), 1, + anon_sym_COMMA, + ACTIONS(7969), 1, + anon_sym_LBRACE_PIPE, + STATE(4450), 1, + aux_sym_extends_type_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7983), 2, - anon_sym_COMMA, - anon_sym_GT, - [151767] = 5, - ACTIONS(6622), 1, + [151729] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(7985), 1, + ACTIONS(7971), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151784] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(7987), 1, - anon_sym_COLON, + [151746] = 4, + ACTIONS(7879), 1, + anon_sym_from, + STATE(5256), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151801] = 5, + ACTIONS(7973), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151761] = 5, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5392), 1, + STATE(5390), 1, sym_type_parameters, - STATE(5542), 1, + STATE(5539), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151818] = 5, - ACTIONS(7949), 1, - sym_identifier, - ACTIONS(7951), 1, - anon_sym_const, - ACTIONS(7989), 1, - anon_sym_GT, - STATE(5280), 1, - sym_type_parameter, - ACTIONS(5), 2, - sym_html_comment, + [151778] = 5, + ACTIONS(3), 1, sym_comment, - [151835] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7975), 1, + anon_sym_DQUOTE, + STATE(4495), 1, + aux_sym_string_repeat1, + ACTIONS(7977), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [151795] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7991), 1, + ACTIONS(7979), 1, anon_sym_DQUOTE, - STATE(4431), 1, + STATE(4493), 1, aux_sym_string_repeat1, - ACTIONS(7871), 2, + ACTIONS(7841), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [151852] = 5, + [151812] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7991), 1, + ACTIONS(7979), 1, anon_sym_SQUOTE, - STATE(4436), 1, + STATE(4497), 1, aux_sym_string_repeat2, - ACTIONS(7857), 2, + ACTIONS(7863), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [151869] = 5, + [151829] = 5, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5260), 1, + STATE(5179), 1, sym_type_parameters, - STATE(5554), 1, + STATE(5698), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151886] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5178), 1, - sym_type_parameters, - STATE(5690), 1, - sym_formal_parameters, + [151846] = 4, + ACTIONS(7879), 1, + anon_sym_from, + STATE(5152), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151903] = 4, - ACTIONS(7995), 1, - anon_sym_COMMA, - STATE(4482), 1, - aux_sym_extends_clause_repeat1, + ACTIONS(7981), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [151861] = 4, + ACTIONS(3819), 1, + anon_sym_COLON, + ACTIONS(4593), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7993), 2, - anon_sym_LBRACE, - anon_sym_implements, - [151918] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7997), 1, - anon_sym_DQUOTE, - STATE(4430), 1, - aux_sym_string_repeat1, - ACTIONS(7999), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151935] = 4, - ACTIONS(8001), 1, + ACTIONS(7983), 2, anon_sym_COMMA, - STATE(4463), 1, - aux_sym_sequence_expression_repeat1, + anon_sym_RBRACE, + [151876] = 5, + ACTIONS(6394), 1, + anon_sym_LPAREN, + ACTIONS(6400), 1, + anon_sym_LT, + STATE(3249), 1, + sym_arguments, + STATE(3339), 1, + sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4866), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [151950] = 4, + [151893] = 4, ACTIONS(7847), 1, anon_sym_COMMA, - STATE(4391), 1, + STATE(4411), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8004), 2, + ACTIONS(7985), 2, sym__automatic_semicolon, anon_sym_SEMI, - [151965] = 5, - ACTIONS(6390), 1, - anon_sym_LPAREN, - ACTIONS(6396), 1, + [151908] = 5, + ACTIONS(2570), 1, anon_sym_LT, - STATE(3227), 1, - sym_arguments, - STATE(3394), 1, - sym_type_arguments, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(5266), 1, + sym_type_parameters, + STATE(5578), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [151982] = 5, - ACTIONS(3), 1, + [151925] = 4, + ACTIONS(7601), 1, + anon_sym_EQ, + STATE(5310), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(7987), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [151940] = 5, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, + anon_sym_PIPE, + ACTIONS(6608), 1, + anon_sym_extends, + ACTIONS(7989), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8006), 1, - anon_sym_DQUOTE, - STATE(4486), 1, - aux_sym_string_repeat1, - ACTIONS(8008), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [151999] = 5, + sym_comment, + [151957] = 5, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5409), 1, + STATE(5406), 1, sym_type_parameters, - STATE(5697), 1, + STATE(5704), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152016] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(8010), 1, - anon_sym_RPAREN, + [151974] = 3, + ACTIONS(6360), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152033] = 5, + ACTIONS(6358), 3, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT, + [151987] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7991), 1, + anon_sym_DQUOTE, + STATE(4413), 1, + aux_sym_string_repeat1, + ACTIONS(7993), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152004] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8006), 1, + ACTIONS(7991), 1, anon_sym_SQUOTE, - STATE(4491), 1, + STATE(4404), 1, aux_sym_string_repeat2, - ACTIONS(8012), 2, + ACTIONS(7995), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152050] = 4, - ACTIONS(7839), 1, - anon_sym_from, - STATE(5310), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(5119), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152065] = 5, - ACTIONS(6622), 1, - anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, - anon_sym_extends, - ACTIONS(8014), 1, - anon_sym_COLON, + [152021] = 4, + ACTIONS(7960), 1, + anon_sym_COMMA, + STATE(4502), 1, + aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152082] = 5, - ACTIONS(7178), 1, + ACTIONS(7997), 2, + anon_sym_LBRACE, + anon_sym_implements, + [152036] = 5, + ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(7186), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7188), 1, anon_sym_extends, - ACTIONS(8016), 1, + ACTIONS(7999), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152099] = 5, + [152053] = 5, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5417), 1, + STATE(5415), 1, sym_type_parameters, - STATE(5684), 1, + STATE(5848), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152116] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7887), 1, - anon_sym_DQUOTE, - STATE(4492), 1, - aux_sym_string_repeat1, - ACTIONS(8018), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152133] = 5, - ACTIONS(6622), 1, + [152070] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(8020), 1, - anon_sym_RBRACK, + ACTIONS(8001), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152150] = 5, - ACTIONS(6622), 1, + [152087] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(8022), 1, + ACTIONS(8003), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152167] = 5, - ACTIONS(6622), 1, + [152104] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(8024), 1, - anon_sym_RBRACK, + ACTIONS(8005), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152184] = 5, - ACTIONS(6622), 1, + [152121] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(8026), 1, - anon_sym_COLON, + ACTIONS(8007), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152201] = 4, + [152138] = 4, ACTIONS(5048), 1, anon_sym_COMMA, - STATE(4463), 1, + STATE(4433), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7289), 2, + ACTIONS(7291), 2, sym__automatic_semicolon, anon_sym_SEMI, - [152216] = 3, - ACTIONS(6366), 1, - anon_sym_DOT, + [152153] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 3, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT, - [152229] = 5, - ACTIONS(6622), 1, + ACTIONS(8009), 4, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_assert, + anon_sym_SEMI, + [152164] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(8028), 1, + ACTIONS(8011), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152246] = 4, - ACTIONS(7995), 1, + [152181] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7839), 1, + anon_sym_SQUOTE, + STATE(4497), 1, + aux_sym_string_repeat2, + ACTIONS(7863), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152198] = 5, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, + anon_sym_PIPE, + ACTIONS(6608), 1, + anon_sym_extends, + ACTIONS(8013), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152215] = 4, + ACTIONS(7847), 1, anon_sym_COMMA, - STATE(4502), 1, - aux_sym_extends_clause_repeat1, + STATE(4425), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8030), 2, - anon_sym_LBRACE, - anon_sym_implements, - [152261] = 5, - ACTIONS(7949), 1, + ACTIONS(8015), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152230] = 5, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, + anon_sym_PIPE, + ACTIONS(6608), 1, + anon_sym_extends, + ACTIONS(8017), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152247] = 5, + ACTIONS(7937), 1, sym_identifier, - ACTIONS(7951), 1, + ACTIONS(7939), 1, anon_sym_const, - ACTIONS(8032), 1, + ACTIONS(8019), 1, anon_sym_GT, - STATE(5280), 1, + STATE(5286), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152278] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8034), 4, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_assert, - anon_sym_SEMI, - [152289] = 2, + [152264] = 5, + ACTIONS(7937), 1, + sym_identifier, + ACTIONS(7939), 1, + anon_sym_const, + ACTIONS(8021), 1, + anon_sym_GT, + STATE(5286), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6075), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152300] = 5, + [152281] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8036), 1, + ACTIONS(8023), 1, anon_sym_DQUOTE, - STATE(4431), 1, + STATE(4496), 1, aux_sym_string_repeat1, - ACTIONS(7871), 2, + ACTIONS(8025), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152317] = 5, - ACTIONS(6622), 1, + [152298] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(8038), 1, + ACTIONS(8027), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152334] = 5, - ACTIONS(7949), 1, - sym_identifier, - ACTIONS(7951), 1, - anon_sym_const, - ACTIONS(8040), 1, - anon_sym_GT, - STATE(5280), 1, - sym_type_parameter, + [152315] = 5, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(5222), 1, + sym_type_parameters, + STATE(5673), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152351] = 5, - ACTIONS(6622), 1, + [152332] = 5, + ACTIONS(6604), 1, anon_sym_AMP, - ACTIONS(6624), 1, + ACTIONS(6606), 1, anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6608), 1, anon_sym_extends, - ACTIONS(8042), 1, + ACTIONS(8029), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152368] = 5, + [152349] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8023), 1, + anon_sym_SQUOTE, + STATE(4498), 1, + aux_sym_string_repeat2, + ACTIONS(8031), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152366] = 5, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(3288), 1, + anon_sym_LPAREN, + STATE(3703), 1, + sym_formal_parameters, + STATE(5264), 1, + sym_type_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152383] = 5, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, STATE(5223), 1, sym_type_parameters, - STATE(5614), 1, + STATE(5873), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152385] = 5, + [152400] = 5, + ACTIONS(99), 1, + anon_sym_AT, + ACTIONS(8033), 1, + anon_sym_class, + STATE(1285), 1, + sym_decorator, + STATE(3855), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152417] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8036), 1, - anon_sym_SQUOTE, - STATE(4436), 1, - aux_sym_string_repeat2, - ACTIONS(7857), 2, - sym_unescaped_single_string_fragment, + ACTIONS(8035), 1, + anon_sym_DQUOTE, + STATE(4493), 1, + aux_sym_string_repeat1, + ACTIONS(8037), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [152402] = 5, + [152434] = 5, + ACTIONS(7937), 1, + sym_identifier, + ACTIONS(7939), 1, + anon_sym_const, + ACTIONS(8040), 1, + anon_sym_GT, + STATE(5286), 1, + sym_type_parameter, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152451] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7855), 1, + ACTIONS(8042), 1, anon_sym_DQUOTE, - STATE(4431), 1, + STATE(4493), 1, aux_sym_string_repeat1, - ACTIONS(7871), 2, + ACTIONS(7841), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152419] = 5, + [152468] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, ACTIONS(8044), 1, anon_sym_DQUOTE, - STATE(4497), 1, + STATE(4493), 1, aux_sym_string_repeat1, - ACTIONS(8046), 2, + ACTIONS(7841), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152436] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5225), 1, - sym_type_parameters, - STATE(5838), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152453] = 5, + [152485] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8044), 1, + ACTIONS(8046), 1, anon_sym_SQUOTE, - STATE(4498), 1, + STATE(4497), 1, aux_sym_string_repeat2, ACTIONS(8048), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152470] = 5, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3703), 1, - sym_formal_parameters, - STATE(5259), 1, - sym_type_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152487] = 5, + [152502] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8050), 1, - anon_sym_DQUOTE, - STATE(4431), 1, - aux_sym_string_repeat1, - ACTIONS(7871), 2, - sym_unescaped_double_string_fragment, + ACTIONS(8044), 1, + anon_sym_SQUOTE, + STATE(4497), 1, + aux_sym_string_repeat2, + ACTIONS(7863), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [152504] = 5, + [152519] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8050), 1, + ACTIONS(8042), 1, anon_sym_SQUOTE, - STATE(4436), 1, + STATE(4497), 1, aux_sym_string_repeat2, - ACTIONS(7857), 2, + ACTIONS(7863), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152521] = 5, - ACTIONS(99), 1, - anon_sym_AT, - ACTIONS(8052), 1, - anon_sym_class, - STATE(1297), 1, - sym_decorator, - STATE(3849), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152538] = 5, - ACTIONS(7178), 1, + [152536] = 5, + ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(7186), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7188), 1, anon_sym_extends, - ACTIONS(8054), 1, + ACTIONS(8051), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152555] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [152553] = 4, + ACTIONS(7847), 1, + anon_sym_COMMA, + STATE(4426), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(8056), 1, - anon_sym_DQUOTE, - STATE(4506), 1, - aux_sym_string_repeat1, - ACTIONS(8058), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [152572] = 4, - ACTIONS(8062), 1, + sym_comment, + ACTIONS(8053), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152568] = 4, + ACTIONS(8057), 1, anon_sym_COMMA, STATE(4502), 1, aux_sym_extends_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8060), 2, + ACTIONS(8055), 2, anon_sym_LBRACE, anon_sym_implements, - [152587] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8056), 1, - anon_sym_SQUOTE, - STATE(4510), 1, - aux_sym_string_repeat2, - ACTIONS(8065), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152604] = 3, - ACTIONS(8067), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8069), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [152617] = 5, - ACTIONS(7178), 1, + [152583] = 5, + ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(7186), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7188), 1, anon_sym_extends, - ACTIONS(8072), 1, + ACTIONS(8060), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152634] = 5, + [152600] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8074), 1, + ACTIONS(8062), 1, anon_sym_DQUOTE, - STATE(4431), 1, + STATE(4511), 1, aux_sym_string_repeat1, - ACTIONS(7871), 2, + ACTIONS(8064), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [152651] = 5, - ACTIONS(7178), 1, + [152617] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8062), 1, + anon_sym_SQUOTE, + STATE(4512), 1, + aux_sym_string_repeat2, + ACTIONS(8066), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152634] = 5, + ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(7186), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7188), 1, anon_sym_extends, - ACTIONS(8076), 1, + ACTIONS(8068), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152668] = 5, - ACTIONS(8078), 1, + [152651] = 3, + ACTIONS(8070), 1, + sym_escape_sequence, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8072), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [152664] = 5, + ACTIONS(8075), 1, sym_identifier, - STATE(3856), 1, + STATE(3860), 1, sym_nested_type_identifier, - STATE(4447), 1, + STATE(4446), 1, sym_generic_type, - STATE(5633), 1, + STATE(5639), 1, sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152685] = 4, - ACTIONS(7839), 1, + [152681] = 4, + ACTIONS(7879), 1, anon_sym_from, - STATE(5177), 1, + STATE(5185), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, @@ -264576,613 +264574,614 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5064), 2, sym__automatic_semicolon, anon_sym_SEMI, - [152700] = 5, + [152696] = 5, + ACTIONS(3967), 1, + anon_sym_LPAREN, + ACTIONS(8077), 1, + anon_sym_LT, + STATE(1643), 1, + sym_arguments, + STATE(1648), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [152713] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8079), 1, + anon_sym_DQUOTE, + STATE(4493), 1, + aux_sym_string_repeat1, + ACTIONS(7841), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [152730] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8074), 1, + ACTIONS(8079), 1, anon_sym_SQUOTE, - STATE(4436), 1, + STATE(4497), 1, aux_sym_string_repeat2, - ACTIONS(7857), 2, + ACTIONS(7863), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [152717] = 5, - ACTIONS(1909), 1, - anon_sym_COMMA, - ACTIONS(7926), 1, - anon_sym_EQ, - ACTIONS(8080), 1, - anon_sym_RBRACK, - STATE(4578), 1, - aux_sym_array_pattern_repeat1, + [152747] = 5, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, + anon_sym_PIPE, + ACTIONS(6608), 1, + anon_sym_extends, + ACTIONS(8081), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152734] = 5, + [152764] = 5, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5278), 1, + STATE(5464), 1, sym_type_parameters, - STATE(5699), 1, + STATE(5659), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152751] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7997), 1, - anon_sym_SQUOTE, - STATE(4446), 1, - aux_sym_string_repeat2, - ACTIONS(8082), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [152768] = 5, + [152781] = 5, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5466), 1, + STATE(5274), 1, sym_type_parameters, - STATE(5659), 1, + STATE(5674), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152785] = 4, - ACTIONS(7839), 1, - anon_sym_from, - STATE(5249), 1, - sym__from_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8084), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [152800] = 5, + [152798] = 5, ACTIONS(2570), 1, anon_sym_LT, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5470), 1, + STATE(5467), 1, sym_type_parameters, STATE(5683), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152817] = 4, - ACTIONS(7847), 1, - anon_sym_COMMA, - STATE(4392), 1, - aux_sym_variable_declaration_repeat1, + [152815] = 5, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, + anon_sym_PIPE, + ACTIONS(6608), 1, + anon_sym_extends, + ACTIONS(8083), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8086), 2, - sym__automatic_semicolon, - anon_sym_SEMI, [152832] = 5, - ACTIONS(7178), 1, + ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(7186), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7188), 1, anon_sym_extends, - ACTIONS(8088), 1, + ACTIONS(8085), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, [152849] = 5, - ACTIONS(6670), 1, + ACTIONS(6674), 1, anon_sym_LPAREN, - ACTIONS(6672), 1, + ACTIONS(6676), 1, anon_sym_LT, - STATE(2919), 1, + STATE(2936), 1, sym_arguments, - STATE(2954), 1, + STATE(3032), 1, sym_type_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, [152866] = 5, - ACTIONS(4031), 1, - anon_sym_LPAREN, - ACTIONS(8090), 1, - anon_sym_LT, - STATE(1580), 1, - sym_arguments, - STATE(1587), 1, - sym_type_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [152883] = 5, - ACTIONS(7178), 1, + ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(7186), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7188), 1, anon_sym_extends, - ACTIONS(8092), 1, + ACTIONS(8087), 1, anon_sym_QMARK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152900] = 4, - ACTIONS(7603), 1, - anon_sym_EQ, - STATE(5309), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8094), 2, + [152883] = 4, + ACTIONS(8089), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [152915] = 4, - ACTIONS(2482), 1, - anon_sym_LBRACE, - ACTIONS(8096), 1, - anon_sym_LPAREN, - STATE(786), 1, - sym_statement_block, + STATE(4521), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152929] = 4, - ACTIONS(7949), 1, - sym_identifier, - ACTIONS(7951), 1, - anon_sym_const, - STATE(4720), 1, - sym_type_parameter, + ACTIONS(8092), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [152898] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7975), 1, + anon_sym_SQUOTE, + STATE(4499), 1, + aux_sym_string_repeat2, + ACTIONS(8094), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [152915] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152943] = 4, - ACTIONS(2570), 1, - anon_sym_LT, + ACTIONS(8096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152925] = 4, + ACTIONS(5276), 1, + anon_sym_COMMA, ACTIONS(8098), 1, - anon_sym_EQ, - STATE(5632), 1, - sym_type_parameters, + anon_sym_RBRACE, + STATE(4970), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152957] = 4, - ACTIONS(5278), 1, + [152939] = 4, + ACTIONS(5080), 1, anon_sym_COMMA, ACTIONS(8100), 1, anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + STATE(4971), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152971] = 4, + [152953] = 4, ACTIONS(8102), 1, anon_sym_COMMA, ACTIONS(8104), 1, anon_sym_RBRACK, - STATE(4644), 1, + STATE(4641), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152985] = 4, - ACTIONS(5080), 1, + [152967] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8106), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152977] = 3, + ACTIONS(7843), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8108), 2, anon_sym_COMMA, - ACTIONS(8106), 1, anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, + [152989] = 4, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(8110), 1, + anon_sym_EQ, + STATE(5618), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [152999] = 4, + [153003] = 4, ACTIONS(5011), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8112), 1, anon_sym_AMP, - ACTIONS(8110), 1, + ACTIONS(8114), 1, anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153013] = 2, + [153017] = 4, + ACTIONS(6814), 1, + anon_sym_implements, + ACTIONS(8116), 1, + anon_sym_LBRACE, + STATE(5486), 1, + sym_implements_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8112), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153023] = 2, + [153031] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8118), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153033] = 2, + [153041] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153043] = 2, + [153051] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8118), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153053] = 3, - ACTIONS(7926), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8120), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [153065] = 4, - ACTIONS(4031), 1, + [153061] = 4, + ACTIONS(3967), 1, anon_sym_LPAREN, - ACTIONS(8122), 1, + ACTIONS(8120), 1, anon_sym_DOT, - STATE(1581), 1, + STATE(1563), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153079] = 3, - ACTIONS(8124), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8126), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [153091] = 4, - ACTIONS(3234), 1, + [153075] = 4, + ACTIONS(3222), 1, anon_sym_GT, - ACTIONS(8128), 1, + ACTIONS(8122), 1, anon_sym_COMMA, STATE(4434), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153105] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8112), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153115] = 4, - ACTIONS(8130), 1, + [153089] = 4, + ACTIONS(8124), 1, sym_identifier, - ACTIONS(8132), 1, + ACTIONS(8126), 1, anon_sym_LBRACK, - ACTIONS(8134), 1, + ACTIONS(8128), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153129] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8136), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153139] = 4, - ACTIONS(7989), 1, - anon_sym_GT, - ACTIONS(8138), 1, - anon_sym_COMMA, - STATE(4685), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153153] = 4, - ACTIONS(8140), 1, + [153103] = 4, + ACTIONS(8130), 1, anon_sym_COMMA, - ACTIONS(8142), 1, + ACTIONS(8132), 1, anon_sym_RBRACK, - STATE(4556), 1, + STATE(4554), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153167] = 2, + [153117] = 4, + ACTIONS(4183), 1, + anon_sym_extends, + ACTIONS(8134), 1, + anon_sym_AMP, + ACTIONS(8136), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, - sym__automatic_semicolon, + [153131] = 4, + ACTIONS(8138), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153177] = 4, - ACTIONS(4216), 1, - anon_sym_extends, - ACTIONS(8146), 1, - anon_sym_AMP, - ACTIONS(8148), 1, - anon_sym_PIPE, + ACTIONS(8140), 1, + anon_sym_RPAREN, + STATE(4864), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153191] = 4, + [153145] = 4, ACTIONS(3254), 1, anon_sym_GT, - ACTIONS(8150), 1, + ACTIONS(8142), 1, anon_sym_COMMA, STATE(4434), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153205] = 4, - ACTIONS(4866), 1, - anon_sym_RPAREN, - ACTIONS(8152), 1, - anon_sym_COMMA, - STATE(4546), 1, - aux_sym_sequence_expression_repeat1, + [153159] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153219] = 4, + ACTIONS(7747), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153169] = 4, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(5427), 1, + ACTIONS(5592), 1, anon_sym_RPAREN, - STATE(4557), 1, + STATE(4555), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153233] = 4, + [153183] = 4, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(5427), 1, + ACTIONS(5592), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4695), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153247] = 2, + [153197] = 4, + ACTIONS(4866), 1, + anon_sym_RPAREN, + ACTIONS(8144), 1, + anon_sym_COMMA, + STATE(4545), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5692), 3, + [153211] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8096), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [153257] = 4, - ACTIONS(8155), 1, + anon_sym_SEMI, + [153221] = 4, + ACTIONS(8147), 1, sym_identifier, - ACTIONS(8157), 1, + ACTIONS(8149), 1, anon_sym_LBRACK, - ACTIONS(8159), 1, + ACTIONS(8151), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153271] = 4, - ACTIONS(8161), 1, + [153235] = 4, + ACTIONS(8040), 1, + anon_sym_GT, + ACTIONS(8153), 1, anon_sym_COMMA, - ACTIONS(8163), 1, - anon_sym_RPAREN, - STATE(4894), 1, - aux_sym_formal_parameters_repeat1, + STATE(4681), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153285] = 2, + [153249] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7751), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153295] = 3, - ACTIONS(7926), 1, - anon_sym_EQ, + [153259] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8165), 2, + ACTIONS(8157), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [153307] = 4, - ACTIONS(1976), 1, + anon_sym_SEMI, + [153269] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8096), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5560), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [153279] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153321] = 2, + ACTIONS(5692), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [153289] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153331] = 4, - ACTIONS(2990), 1, + [153299] = 4, + ACTIONS(2976), 1, anon_sym_RBRACK, - ACTIONS(8167), 1, + ACTIONS(8159), 1, anon_sym_COMMA, - STATE(4939), 1, + STATE(4937), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153345] = 4, + [153313] = 4, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(8169), 1, + ACTIONS(8161), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4695), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153359] = 4, - ACTIONS(8171), 1, + [153327] = 4, + ACTIONS(8163), 1, sym_identifier, - ACTIONS(8173), 1, + ACTIONS(8165), 1, anon_sym_LBRACK, - ACTIONS(8175), 1, + ACTIONS(8167), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153373] = 2, + [153341] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153383] = 2, + [153351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153393] = 2, + [153361] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153403] = 4, + [153371] = 4, ACTIONS(1047), 1, anon_sym_LBRACE_PIPE, ACTIONS(1627), 1, anon_sym_LBRACE, - STATE(4126), 1, + STATE(4127), 1, sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153417] = 4, + [153385] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8155), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153395] = 4, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(8171), 1, + anon_sym_RBRACE, + STATE(4962), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153409] = 4, ACTIONS(1976), 1, anon_sym_COMMA, ACTIONS(5356), 1, anon_sym_RPAREN, - STATE(4676), 1, + STATE(4669), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153431] = 4, + [153423] = 4, ACTIONS(1976), 1, anon_sym_COMMA, ACTIONS(5356), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4695), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153445] = 2, + [153437] = 3, + ACTIONS(7843), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153455] = 4, - ACTIONS(5222), 1, + ACTIONS(8173), 2, anon_sym_COMMA, - ACTIONS(8179), 1, anon_sym_RBRACK, - STATE(4580), 1, - aux_sym_array_repeat1, + [153449] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153469] = 4, - ACTIONS(5080), 1, + ACTIONS(8169), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8181), 1, - anon_sym_RBRACE, - STATE(4961), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SEMI, + [153459] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153483] = 2, + ACTIONS(8175), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153469] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153493] = 2, + [153479] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8175), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153503] = 2, + [153489] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153513] = 4, - ACTIONS(1976), 1, + [153499] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8155), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5560), 1, - anon_sym_RPAREN, - STATE(4705), 1, - aux_sym_array_repeat1, + anon_sym_SEMI, + [153509] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153527] = 2, + ACTIONS(8096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153519] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -265190,15 +265189,25 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153537] = 2, + [153529] = 4, + ACTIONS(8179), 1, + sym_identifier, + ACTIONS(8181), 1, + anon_sym_LBRACK, + ACTIONS(8183), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153543] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8175), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153547] = 2, + [153553] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -265206,124 +265215,102 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153557] = 2, + [153563] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8112), 3, + ACTIONS(8187), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153567] = 2, + [153573] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8189), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153577] = 4, - ACTIONS(8187), 1, - sym_identifier, - ACTIONS(8189), 1, - anon_sym_LBRACK, + [153583] = 4, + ACTIONS(5222), 1, + anon_sym_COMMA, ACTIONS(8191), 1, - sym_private_property_identifier, + anon_sym_RBRACK, + STATE(4583), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153591] = 4, - ACTIONS(1909), 1, + [153597] = 4, + ACTIONS(1903), 1, anon_sym_COMMA, ACTIONS(8193), 1, anon_sym_RBRACK, - STATE(4609), 1, + STATE(4610), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153605] = 4, + [153611] = 4, + ACTIONS(6394), 1, + anon_sym_LPAREN, + ACTIONS(8195), 1, + anon_sym_DOT, + STATE(3300), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153625] = 4, ACTIONS(5222), 1, anon_sym_COMMA, ACTIONS(5262), 1, anon_sym_RBRACK, - STATE(4580), 1, + STATE(4583), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153619] = 4, + [153639] = 4, ACTIONS(5692), 1, anon_sym_RBRACK, - ACTIONS(8195), 1, + ACTIONS(8197), 1, anon_sym_COMMA, - STATE(4580), 1, + STATE(4583), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153633] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8183), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153643] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8198), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, [153653] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [153663] = 4, - ACTIONS(6390), 1, - anon_sym_LPAREN, ACTIONS(8200), 1, - anon_sym_DOT, - STATE(3300), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [153677] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8114), 3, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [153687] = 2, + ACTIONS(8202), 1, + anon_sym_RPAREN, + STATE(4998), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153697] = 4, - ACTIONS(8202), 1, + [153677] = 4, + ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(8204), 1, + ACTIONS(5560), 1, anon_sym_RPAREN, - STATE(4964), 1, - aux_sym_formal_parameters_repeat1, + STATE(4695), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153711] = 3, - ACTIONS(7785), 1, + [153691] = 3, + ACTIONS(7783), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, @@ -265331,493 +265318,477 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3699), 2, anon_sym_in, anon_sym_of, - [153723] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7751), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153733] = 2, + [153703] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153743] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8114), 3, - sym__automatic_semicolon, + [153713] = 4, + ACTIONS(8204), 1, anon_sym_COMMA, - anon_sym_SEMI, - [153753] = 4, ACTIONS(8206), 1, - anon_sym_COMMA, - ACTIONS(8208), 1, anon_sym_RBRACK, - STATE(4606), 1, + STATE(4603), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153767] = 4, - ACTIONS(6824), 1, - anon_sym_AMP, + [153727] = 4, ACTIONS(6826), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(6828), 1, + anon_sym_PIPE, + ACTIONS(6830), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153781] = 4, - ACTIONS(3252), 1, + [153741] = 4, + ACTIONS(3238), 1, anon_sym_GT, - ACTIONS(8210), 1, + ACTIONS(8208), 1, anon_sym_COMMA, STATE(4434), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153795] = 4, + [153755] = 4, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(5429), 1, + ACTIONS(5427), 1, anon_sym_RPAREN, - STATE(4607), 1, + STATE(4605), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153809] = 4, + [153769] = 4, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(5429), 1, + ACTIONS(5427), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4695), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153823] = 2, + [153783] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8212), 3, + ACTIONS(7747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153833] = 2, + [153793] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8185), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153843] = 2, + [153803] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8187), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153853] = 4, - ACTIONS(8214), 1, + [153813] = 4, + ACTIONS(8210), 1, sym_identifier, - ACTIONS(8216), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(8218), 1, + ACTIONS(8214), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153867] = 4, - ACTIONS(8220), 1, + [153827] = 4, + ACTIONS(8216), 1, sym_identifier, - ACTIONS(8222), 1, + ACTIONS(8218), 1, anon_sym_LBRACK, - ACTIONS(8224), 1, + ACTIONS(8220), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153881] = 4, - ACTIONS(8226), 1, + [153841] = 4, + ACTIONS(8222), 1, sym_identifier, - ACTIONS(8228), 1, + ACTIONS(8224), 1, anon_sym_LBRACK, - ACTIONS(8230), 1, + ACTIONS(8226), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153895] = 4, - ACTIONS(8232), 1, + [153855] = 4, + ACTIONS(8228), 1, sym_identifier, - ACTIONS(8234), 1, + ACTIONS(8230), 1, anon_sym_LBRACK, - ACTIONS(8236), 1, + ACTIONS(8232), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153909] = 2, + [153869] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153919] = 4, - ACTIONS(8238), 1, + [153879] = 4, + ACTIONS(8234), 1, sym_identifier, - ACTIONS(8240), 1, + ACTIONS(8236), 1, anon_sym_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8238), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153933] = 4, + [153893] = 4, ACTIONS(2978), 1, anon_sym_RBRACK, - ACTIONS(8244), 1, + ACTIONS(8240), 1, anon_sym_COMMA, - STATE(4939), 1, + STATE(4937), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153947] = 4, + [153907] = 4, + ACTIONS(1903), 1, + anon_sym_COMMA, + ACTIONS(7865), 1, + anon_sym_RBRACK, + STATE(5006), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [153921] = 4, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(8246), 1, + ACTIONS(8242), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4695), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153961] = 2, + [153935] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153971] = 4, - ACTIONS(8165), 1, - anon_sym_RBRACK, - ACTIONS(8248), 1, - anon_sym_COMMA, - STATE(4609), 1, - aux_sym_array_pattern_repeat1, + [153945] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [153985] = 3, - ACTIONS(7042), 1, + ACTIONS(8096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153955] = 3, + ACTIONS(7068), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8251), 2, + ACTIONS(8244), 2, sym__automatic_semicolon, anon_sym_SEMI, - [153997] = 3, - ACTIONS(7058), 1, + [153967] = 3, + ACTIONS(7030), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8251), 2, + ACTIONS(8244), 2, sym__automatic_semicolon, anon_sym_SEMI, - [154009] = 3, - ACTIONS(7587), 1, - anon_sym_LBRACE, + [153979] = 4, + ACTIONS(8173), 1, + anon_sym_RBRACK, + ACTIONS(8246), 1, + anon_sym_COMMA, + STATE(4610), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7589), 2, + [153993] = 4, + ACTIONS(5222), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [154021] = 5, + ACTIONS(5308), 1, + anon_sym_RBRACK, + STATE(5004), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154007] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8253), 1, + ACTIONS(8249), 1, sym__glimmer_template_content, - ACTIONS(8256), 1, + ACTIONS(8252), 1, sym_glimmer_closing_tag, - STATE(4613), 1, + STATE(4612), 1, aux_sym_glimmer_template_repeat1, - [154037] = 2, + [154023] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154047] = 4, - ACTIONS(1909), 1, - anon_sym_COMMA, - ACTIONS(8080), 1, - anon_sym_RBRACK, - STATE(4609), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154061] = 2, + [154033] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154071] = 4, - ACTIONS(1909), 1, - anon_sym_COMMA, - ACTIONS(7928), 1, - anon_sym_RBRACK, - STATE(5000), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154085] = 2, + [154043] = 3, + ACTIONS(7585), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, - sym__automatic_semicolon, + ACTIONS(7587), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154095] = 2, + anon_sym_LBRACE_PIPE, + [154055] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8258), 3, + ACTIONS(8254), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154105] = 2, + [154065] = 4, + ACTIONS(5222), 1, + anon_sym_COMMA, + ACTIONS(5308), 1, + anon_sym_RBRACK, + STATE(4583), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154115] = 2, + [154079] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8260), 3, + ACTIONS(8256), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154125] = 4, - ACTIONS(5222), 1, + [154089] = 4, + ACTIONS(1903), 1, anon_sym_COMMA, - ACTIONS(5308), 1, + ACTIONS(7845), 1, anon_sym_RBRACK, - STATE(4994), 1, - aux_sym_array_repeat1, + STATE(4610), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154139] = 2, + [154103] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8256), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154149] = 2, + [154113] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8260), 3, + ACTIONS(8258), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154159] = 2, + [154123] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8262), 3, + ACTIONS(8106), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154169] = 2, + [154133] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8264), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154179] = 4, - ACTIONS(5222), 1, - anon_sym_COMMA, - ACTIONS(5308), 1, - anon_sym_RBRACK, - STATE(4580), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154193] = 2, + [154143] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8260), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154203] = 4, - ACTIONS(1909), 1, + [154153] = 4, + ACTIONS(1903), 1, anon_sym_COMMA, - ACTIONS(7928), 1, + ACTIONS(7865), 1, anon_sym_RBRACK, - STATE(4609), 1, + STATE(4610), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154217] = 2, + [154167] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154177] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8262), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154227] = 2, + [154187] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8266), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154237] = 5, + [154197] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8268), 1, + ACTIONS(8264), 1, sym__glimmer_template_content, - ACTIONS(8270), 1, + ACTIONS(8266), 1, sym_glimmer_closing_tag, - STATE(4613), 1, + STATE(4612), 1, aux_sym_glimmer_template_repeat1, - [154253] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8144), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154263] = 2, + [154213] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8260), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154273] = 4, - ACTIONS(3242), 1, + [154223] = 4, + ACTIONS(3226), 1, anon_sym_GT, - ACTIONS(8272), 1, + ACTIONS(8268), 1, anon_sym_COMMA, STATE(4434), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154287] = 2, + [154237] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8264), 3, + ACTIONS(8270), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154297] = 4, + [154247] = 4, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(5431), 1, + ACTIONS(5429), 1, anon_sym_RPAREN, - STATE(4640), 1, + STATE(4638), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154311] = 4, + [154261] = 4, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(5431), 1, + ACTIONS(5429), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4695), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154325] = 3, - ACTIONS(8274), 1, + [154275] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7224), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [154285] = 3, + ACTIONS(8272), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8276), 2, + ACTIONS(8274), 2, anon_sym_COMMA, anon_sym_from, - [154337] = 4, + [154297] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154307] = 4, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(8278), 1, + ACTIONS(8276), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4695), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154351] = 2, + [154321] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7224), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [154361] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8183), 3, + ACTIONS(8278), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154371] = 2, + [154331] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -265825,580 +265796,612 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154381] = 4, - ACTIONS(2986), 1, + [154341] = 4, + ACTIONS(2990), 1, anon_sym_RBRACK, ACTIONS(8282), 1, anon_sym_COMMA, - STATE(4939), 1, + STATE(4937), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154395] = 4, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(7289), 1, - anon_sym_RPAREN, - STATE(4546), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154409] = 2, + [154355] = 3, + ACTIONS(8284), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, - sym__automatic_semicolon, + ACTIONS(8286), 2, anon_sym_COMMA, - anon_sym_SEMI, - [154419] = 2, + anon_sym_RBRACE, + [154367] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8288), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154429] = 4, + [154377] = 4, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(5433), 1, + ACTIONS(5431), 1, anon_sym_RPAREN, - STATE(4651), 1, + STATE(4646), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154443] = 4, + [154391] = 4, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(5433), 1, + ACTIONS(5431), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4695), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154457] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8286), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154467] = 4, + [154405] = 4, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(8288), 1, + ACTIONS(8290), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4695), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154481] = 2, + [154419] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8290), 3, + ACTIONS(8292), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154491] = 4, - ACTIONS(2988), 1, + [154429] = 4, + ACTIONS(2986), 1, anon_sym_RBRACK, - ACTIONS(8292), 1, + ACTIONS(8294), 1, anon_sym_COMMA, - STATE(4939), 1, + STATE(4937), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154505] = 3, - ACTIONS(8294), 1, - anon_sym_as, + [154443] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8296), 2, + ACTIONS(8280), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [154517] = 2, + anon_sym_SEMI, + [154453] = 4, + ACTIONS(4879), 1, + anon_sym_COMMA, + ACTIONS(7291), 1, + anon_sym_RPAREN, + STATE(4545), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154467] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8298), 3, + ACTIONS(8296), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [154527] = 2, + [154477] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8106), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154537] = 4, - ACTIONS(5278), 1, + [154487] = 4, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(8300), 1, + ACTIONS(8298), 1, anon_sym_RBRACE, STATE(4970), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154551] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8144), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154561] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8302), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154571] = 2, + [154501] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154581] = 4, - ACTIONS(8304), 1, + [154511] = 4, + ACTIONS(8300), 1, anon_sym_LPAREN, - ACTIONS(8306), 1, + ACTIONS(8302), 1, anon_sym_await, STATE(34), 1, sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154595] = 2, + [154525] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8304), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154605] = 2, + [154535] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154615] = 2, + [154545] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154625] = 2, + [154555] = 4, + ACTIONS(6964), 1, + anon_sym_RBRACE, + ACTIONS(8308), 1, + anon_sym_COMMA, + STATE(4744), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154569] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154635] = 4, - ACTIONS(6908), 1, - anon_sym_RBRACE, - ACTIONS(8314), 1, - anon_sym_COMMA, - STATE(4750), 1, - aux_sym_export_clause_repeat1, + [154579] = 4, + ACTIONS(1047), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1627), 1, + anon_sym_LBRACE, + STATE(4200), 1, + sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154649] = 4, - ACTIONS(7839), 1, + [154593] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8157), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154603] = 4, + ACTIONS(7879), 1, anon_sym_from, - ACTIONS(8316), 1, + ACTIONS(8312), 1, anon_sym_as, - STATE(5198), 1, + STATE(5201), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154663] = 4, + [154617] = 4, ACTIONS(2292), 1, anon_sym_LBRACE, - ACTIONS(8318), 1, + ACTIONS(8314), 1, sym_identifier, - STATE(4470), 1, + STATE(4407), 1, sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154677] = 2, + [154631] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154687] = 4, - ACTIONS(1047), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1627), 1, - anon_sym_LBRACE, - STATE(4201), 1, - sym_object_type, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154701] = 2, + [154641] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154711] = 2, + [154651] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154721] = 4, - ACTIONS(8320), 1, + [154661] = 4, + ACTIONS(8316), 1, anon_sym_COMMA, - ACTIONS(8322), 1, + ACTIONS(8318), 1, anon_sym_RBRACE, - STATE(4730), 1, + STATE(4724), 1, aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154735] = 2, + [154675] = 4, + ACTIONS(1976), 1, + anon_sym_COMMA, + ACTIONS(8320), 1, + anon_sym_RPAREN, + STATE(4695), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154689] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154745] = 3, - ACTIONS(8326), 1, + [154699] = 3, + ACTIONS(8324), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7721), 2, + ACTIONS(7717), 2, anon_sym_extends, anon_sym_LBRACE_PIPE, - [154757] = 4, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(8328), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154771] = 3, - ACTIONS(8330), 1, - anon_sym_as, + [154711] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8276), 2, + ACTIONS(8304), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [154783] = 2, + anon_sym_SEMI, + [154721] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154793] = 4, - ACTIONS(7949), 1, + [154731] = 4, + ACTIONS(7937), 1, sym_identifier, - ACTIONS(7951), 1, + ACTIONS(7939), 1, anon_sym_const, - STATE(4778), 1, + STATE(4774), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154807] = 4, - ACTIONS(6062), 1, + [154745] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6039), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154755] = 4, + ACTIONS(6059), 1, anon_sym_LPAREN, - ACTIONS(8332), 1, + ACTIONS(8326), 1, anon_sym_DOT, - STATE(2940), 1, + STATE(2941), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154821] = 2, + [154769] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154831] = 2, + [154779] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154841] = 4, - ACTIONS(8334), 1, + [154789] = 4, + ACTIONS(8328), 1, sym_identifier, - STATE(3887), 1, + STATE(3886), 1, sym_decorator_member_expression, - STATE(5691), 1, + STATE(5580), 1, sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154855] = 2, + [154803] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154865] = 4, - ACTIONS(8336), 1, + [154813] = 4, + ACTIONS(8330), 1, anon_sym_COMMA, - ACTIONS(8339), 1, + ACTIONS(8333), 1, anon_sym_GT, - STATE(4685), 1, + STATE(4681), 1, aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154879] = 2, + [154827] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6364), 3, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LT, - [154889] = 4, - ACTIONS(1635), 1, + ACTIONS(8096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154837] = 4, + ACTIONS(8335), 1, + anon_sym_COMMA, + ACTIONS(8338), 1, + anon_sym_RPAREN, + STATE(4683), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [154851] = 4, + ACTIONS(1643), 1, anon_sym_DQUOTE, - ACTIONS(1637), 1, + ACTIONS(1645), 1, anon_sym_SQUOTE, - STATE(4415), 1, + STATE(4414), 1, sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154903] = 2, + [154865] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154913] = 2, + [154875] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154923] = 2, + [154885] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8304), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154933] = 2, + [154895] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154943] = 4, + [154905] = 4, ACTIONS(219), 1, anon_sym_LBRACE_PIPE, ACTIONS(1541), 1, anon_sym_LBRACE, - STATE(873), 1, + STATE(874), 1, sym_object_type, ACTIONS(5), 2, sym_html_comment, sym_comment, - [154957] = 2, + [154919] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154967] = 2, + [154929] = 3, + ACTIONS(8342), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154977] = 4, - ACTIONS(8341), 1, + ACTIONS(8274), 2, anon_sym_COMMA, - ACTIONS(8344), 1, - anon_sym_RPAREN, - STATE(4695), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [154991] = 4, - ACTIONS(2512), 1, + anon_sym_RBRACE, + [154941] = 4, + ACTIONS(2514), 1, anon_sym_while, - ACTIONS(8346), 1, + ACTIONS(8344), 1, anon_sym_else, - STATE(856), 1, + STATE(857), 1, sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155005] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(7920), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155015] = 2, + [154955] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155025] = 2, + [154965] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8175), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155035] = 4, + [154975] = 4, ACTIONS(5692), 1, anon_sym_RPAREN, - ACTIONS(8348), 1, + ACTIONS(8346), 1, anon_sym_COMMA, - STATE(4700), 1, + STATE(4695), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155049] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8351), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155059] = 2, + [154989] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8185), 3, + ACTIONS(8306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155069] = 4, - ACTIONS(8353), 1, + [154999] = 4, + ACTIONS(8349), 1, anon_sym_COMMA, - ACTIONS(8355), 1, + ACTIONS(8351), 1, anon_sym_RBRACE, - STATE(4956), 1, + STATE(4957), 1, aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155083] = 4, - ACTIONS(5278), 1, + [155013] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8092), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8300), 1, + anon_sym_SEMI, + [155023] = 4, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(8298), 1, anon_sym_RBRACE, STATE(4965), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155097] = 4, + [155037] = 4, ACTIONS(1976), 1, anon_sym_COMMA, - ACTIONS(8357), 1, + ACTIONS(8353), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4695), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155111] = 2, + [155051] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8340), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155061] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8355), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155121] = 4, - ACTIONS(7318), 1, + [155071] = 4, + ACTIONS(7298), 1, anon_sym_AMP, - ACTIONS(7320), 1, + ACTIONS(7300), 1, anon_sym_PIPE, - ACTIONS(7322), 1, + ACTIONS(7302), 1, anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, + [155085] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8322), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155095] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8310), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155105] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8175), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155115] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8280), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155125] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8280), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, [155135] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -266406,7 +266409,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8304), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -266414,7 +266417,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -266422,7 +266425,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8177), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -266430,7 +266433,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -266438,7 +266441,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -266446,7 +266449,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -266454,7 +266457,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -266462,7 +266465,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -266470,7 +266473,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -266478,7 +266481,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8175), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -266486,17 +266489,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [155255] = 4, - ACTIONS(8361), 1, + ACTIONS(8357), 1, anon_sym_COMMA, - ACTIONS(8363), 1, - anon_sym_GT, - STATE(5091), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(8359), 1, + anon_sym_RBRACE, + STATE(4809), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -266504,7 +266507,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8355), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -266512,189 +266515,189 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155289] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, + [155289] = 4, + ACTIONS(8361), 1, anon_sym_COMMA, - anon_sym_SEMI, - [155299] = 4, - ACTIONS(8365), 1, - anon_sym_LPAREN, - ACTIONS(8367), 1, - anon_sym_await, - STATE(36), 1, - sym__for_header, + ACTIONS(8363), 1, + anon_sym_RBRACE, + STATE(4809), 1, + aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155313] = 2, + [155303] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155323] = 2, + [155313] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155333] = 2, + [155323] = 4, + ACTIONS(3535), 1, + anon_sym_LPAREN, + ACTIONS(8326), 1, + anon_sym_DOT, + STATE(2941), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155337] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155343] = 4, - ACTIONS(8369), 1, - anon_sym_COMMA, - ACTIONS(8371), 1, - anon_sym_RBRACE, - STATE(4807), 1, - aux_sym_enum_body_repeat1, + [155347] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(8280), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, [155357] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8185), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155367] = 4, - ACTIONS(8373), 1, - anon_sym_COMMA, - ACTIONS(8375), 1, - anon_sym_RBRACE, - STATE(4807), 1, - aux_sym_enum_body_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155381] = 2, + [155367] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155391] = 2, + [155377] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8304), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155401] = 2, + [155387] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8365), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155411] = 2, + [155397] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8367), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [155421] = 2, + [155407] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8187), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155431] = 2, + [155417] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8175), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155441] = 2, + [155427] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155451] = 2, + [155437] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155461] = 2, + [155447] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8187), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155471] = 2, + [155457] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155481] = 2, + [155467] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8377), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [155491] = 2, + [155477] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8304), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155501] = 2, + [155487] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, + [155497] = 4, + ACTIONS(8369), 1, + anon_sym_COMMA, + ACTIONS(8372), 1, + anon_sym_RBRACE, + STATE(4744), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, [155511] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8175), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -266702,7 +266705,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -266710,7 +266713,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8355), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -266718,7 +266721,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8185), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -266726,362 +266729,362 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155561] = 2, + [155561] = 3, + ACTIONS(8374), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8376), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [155571] = 4, - ACTIONS(8379), 1, - anon_sym_COMMA, - ACTIONS(8382), 1, - anon_sym_RBRACE, - STATE(4750), 1, - aux_sym_export_clause_repeat1, + [155573] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155585] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8384), 3, + ACTIONS(8304), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155595] = 2, + [155583] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155605] = 2, + [155593] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155615] = 2, + [155603] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155625] = 2, + [155613] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155635] = 2, + [155623] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8378), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155645] = 2, + [155633] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8355), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155655] = 4, - ACTIONS(6866), 1, - anon_sym_implements, - ACTIONS(8386), 1, - anon_sym_LBRACE, - STATE(5624), 1, - sym_implements_clause, + [155643] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155669] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8310), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155679] = 2, + [155653] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155689] = 2, + [155663] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8380), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [155699] = 2, + [155673] = 4, + ACTIONS(8382), 1, + anon_sym_COMMA, + ACTIONS(8384), 1, + anon_sym_RBRACE, + STATE(4659), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155709] = 2, + [155687] = 3, + ACTIONS(8386), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, - sym__automatic_semicolon, + ACTIONS(8388), 2, anon_sym_COMMA, - anon_sym_SEMI, - [155719] = 2, + anon_sym_RBRACE, + [155699] = 4, + ACTIONS(4627), 1, + anon_sym_LPAREN, + ACTIONS(8390), 1, + anon_sym_DOT, + STATE(2046), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155729] = 2, + [155713] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6075), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155739] = 2, + [155723] = 3, + ACTIONS(8392), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8390), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [155749] = 4, - ACTIONS(8392), 1, + ACTIONS(6466), 2, anon_sym_COMMA, - ACTIONS(8394), 1, anon_sym_RBRACE, - STATE(4666), 1, - aux_sym_export_clause_repeat1, + [155735] = 3, + ACTIONS(8394), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155763] = 2, + ACTIONS(7785), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [155747] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8187), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155773] = 3, + [155757] = 4, + ACTIONS(6464), 1, + anon_sym_type, ACTIONS(8396), 1, - anon_sym_as, + sym_identifier, + STATE(5139), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8398), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [155785] = 2, + [155771] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8398), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155795] = 3, - ACTIONS(8400), 1, - anon_sym_LBRACE, + [155781] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7787), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [155807] = 4, - ACTIONS(4633), 1, - anon_sym_LPAREN, - ACTIONS(8402), 1, - anon_sym_DOT, - STATE(2046), 1, - sym_arguments, + ACTIONS(8310), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155791] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155821] = 2, + ACTIONS(8096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155801] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8400), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155831] = 2, + [155811] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8404), 3, + ACTIONS(8402), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155841] = 3, + [155821] = 4, + ACTIONS(8404), 1, + anon_sym_COMMA, ACTIONS(8406), 1, - anon_sym_as, + anon_sym_GT, + STATE(4548), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6578), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [155853] = 2, + [155835] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155863] = 2, + [155845] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8175), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155873] = 4, + [155855] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8408), 1, + sym__glimmer_template_content, ACTIONS(8410), 1, - anon_sym_COMMA, + sym_glimmer_closing_tag, + STATE(4629), 1, + aux_sym_glimmer_template_repeat1, + [155871] = 4, + ACTIONS(7879), 1, + anon_sym_from, + ACTIONS(8312), 1, + anon_sym_as, + STATE(5293), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [155885] = 4, + ACTIONS(6464), 1, + anon_sym_type, ACTIONS(8412), 1, - anon_sym_GT, - STATE(4541), 1, - aux_sym_type_parameters_repeat1, + sym_identifier, + STATE(5343), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155887] = 4, - ACTIONS(6576), 1, + [155899] = 4, + ACTIONS(6464), 1, anon_sym_type, ACTIONS(8414), 1, sym_identifier, - STATE(5139), 1, + STATE(5344), 1, sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155901] = 2, + [155913] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8355), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155911] = 4, - ACTIONS(7839), 1, - anon_sym_from, - ACTIONS(8316), 1, - anon_sym_as, - STATE(5288), 1, - sym__from_clause, + [155923] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155925] = 2, + ACTIONS(8322), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155933] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8388), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155935] = 4, - ACTIONS(6576), 1, - anon_sym_type, + [155943] = 4, ACTIONS(8416), 1, - sym_identifier, - STATE(5339), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [155949] = 4, - ACTIONS(6576), 1, - anon_sym_type, - ACTIONS(8418), 1, - sym_identifier, - STATE(5340), 1, - sym__import_identifier, + anon_sym_COMMA, + ACTIONS(8419), 1, + anon_sym_RBRACE, + STATE(4784), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155963] = 2, + [155957] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8398), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155973] = 2, + [155967] = 4, + ACTIONS(1557), 1, + anon_sym_DQUOTE, + ACTIONS(1559), 1, + anon_sym_SQUOTE, + STATE(5562), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + [155981] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8177), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155983] = 4, - ACTIONS(8420), 1, - anon_sym_COMMA, - ACTIONS(8423), 1, - anon_sym_RBRACE, - STATE(4787), 1, - aux_sym_named_imports_repeat1, + [155991] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [155997] = 4, - ACTIONS(3535), 1, - anon_sym_LPAREN, - ACTIONS(8332), 1, - anon_sym_DOT, - STATE(2940), 1, - sym_arguments, + ACTIONS(8177), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156001] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(8322), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, [156011] = 4, - ACTIONS(1551), 1, - anon_sym_DQUOTE, - ACTIONS(1553), 1, - anon_sym_SQUOTE, - STATE(5562), 1, - sym_string, + ACTIONS(8421), 1, + anon_sym_LPAREN, + ACTIONS(8423), 1, + anon_sym_await, + STATE(36), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -267089,7 +267092,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267097,7 +267100,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267105,7 +267108,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267113,7 +267116,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8106), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267121,7 +267124,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267129,7 +267132,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267137,7 +267140,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8355), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267145,7 +267148,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267153,7 +267156,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267161,108 +267164,108 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8425), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156125] = 2, + [156125] = 4, + ACTIONS(6674), 1, + anon_sym_LPAREN, + ACTIONS(8326), 1, + anon_sym_DOT, + STATE(2941), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156135] = 2, + [156139] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156145] = 2, + [156149] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156155] = 4, - ACTIONS(6670), 1, - anon_sym_LPAREN, - ACTIONS(8332), 1, - anon_sym_DOT, - STATE(2940), 1, - sym_arguments, + [156159] = 3, + ACTIONS(8425), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156169] = 2, + ACTIONS(6737), 2, + anon_sym_in, + anon_sym_of, + [156171] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(7242), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [156181] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156179] = 2, + [156191] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156189] = 2, + [156201] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156199] = 4, + [156211] = 4, ACTIONS(8427), 1, anon_sym_COMMA, ACTIONS(8430), 1, anon_sym_RBRACE, - STATE(4807), 1, + STATE(4809), 1, aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156213] = 3, - ACTIONS(8432), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6767), 2, - anon_sym_in, - anon_sym_of, [156225] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7242), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, + ACTIONS(8155), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, [156235] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7222), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, + ACTIONS(8280), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, [156245] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8106), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267270,7 +267273,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267278,7 +267281,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267286,7 +267289,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267294,7 +267297,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8304), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267302,287 +267305,287 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8402), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156305] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8268), 1, - sym__glimmer_template_content, - ACTIONS(8434), 1, - sym_glimmer_closing_tag, - STATE(4613), 1, - aux_sym_glimmer_template_repeat1, - [156321] = 2, + [156305] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156331] = 2, + [156315] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156341] = 4, + [156325] = 4, ACTIONS(3550), 1, anon_sym_COLON, - ACTIONS(8436), 1, + ACTIONS(8432), 1, anon_sym_RPAREN, STATE(5606), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156355] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156365] = 4, - ACTIONS(8438), 1, + [156339] = 4, + ACTIONS(6464), 1, + anon_sym_type, + ACTIONS(8434), 1, sym_identifier, - ACTIONS(8440), 1, - anon_sym_LBRACK, - ACTIONS(8442), 1, - sym_private_property_identifier, + STATE(5140), 1, + sym__import_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156379] = 2, - ACTIONS(5), 2, - sym_html_comment, + [156353] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156389] = 4, - ACTIONS(5278), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8264), 1, + sym__glimmer_template_content, + ACTIONS(8436), 1, + sym_glimmer_closing_tag, + STATE(4612), 1, + aux_sym_glimmer_template_repeat1, + [156369] = 4, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(8444), 1, + ACTIONS(8438), 1, anon_sym_RBRACE, STATE(4970), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156403] = 4, - ACTIONS(6576), 1, - anon_sym_type, - ACTIONS(8446), 1, - sym_identifier, - STATE(5140), 1, - sym__import_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [156417] = 2, + [156383] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156427] = 2, + [156393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156437] = 2, + [156403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156447] = 2, + [156413] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156457] = 2, + [156423] = 4, + ACTIONS(8440), 1, + sym_identifier, + ACTIONS(8442), 1, + anon_sym_LBRACK, + ACTIONS(8444), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156467] = 2, + [156437] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156477] = 2, + [156447] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7222), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [156457] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156487] = 2, + [156467] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8448), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156497] = 3, - ACTIONS(8450), 1, - sym_identifier, + [156477] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8452), 2, + ACTIONS(8446), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [156509] = 4, + [156487] = 4, ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(8454), 1, + ACTIONS(8448), 1, anon_sym_RBRACE, STATE(4971), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156523] = 2, + [156501] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156533] = 2, + [156511] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156543] = 2, + [156521] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156553] = 2, + [156531] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156563] = 2, + [156541] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8304), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156573] = 2, + [156551] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8448), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156583] = 2, + [156561] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156593] = 2, + [156571] = 4, + ACTIONS(6759), 1, + anon_sym_RBRACE, + ACTIONS(8452), 1, + anon_sym_COMMA, + STATE(4784), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [156585] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8355), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156603] = 2, + [156595] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8454), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156613] = 4, - ACTIONS(6753), 1, - anon_sym_RBRACE, - ACTIONS(8458), 1, - anon_sym_COMMA, - STATE(4787), 1, - aux_sym_named_imports_repeat1, + [156605] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156627] = 2, + ACTIONS(8446), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156615] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8460), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156637] = 2, + [156625] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8448), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156647] = 2, + [156635] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, + [156645] = 3, + ACTIONS(8458), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8460), 2, + sym__automatic_semicolon, + anon_sym_SEMI, [156657] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8462), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267590,7 +267593,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8456), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267598,7 +267601,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8462), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267606,7 +267609,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8462), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267614,7 +267617,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8464), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267622,7 +267625,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8304), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267630,7 +267633,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267638,7 +267641,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267646,7 +267649,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267654,7 +267657,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267662,7 +267665,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267678,7 +267681,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -267686,292 +267689,272 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8466), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156797] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8312), 3, - sym__automatic_semicolon, + [156797] = 4, + ACTIONS(1679), 1, + anon_sym_RPAREN, + ACTIONS(8464), 1, anon_sym_COMMA, - anon_sym_SEMI, - [156807] = 2, + STATE(4683), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156817] = 2, + [156811] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156827] = 2, + [156821] = 4, + ACTIONS(1976), 1, + anon_sym_COMMA, + ACTIONS(5560), 1, + anon_sym_RPAREN, + STATE(4700), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156837] = 2, + [156835] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156847] = 2, + [156845] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156857] = 2, + [156855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156867] = 2, + [156865] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156877] = 2, + [156875] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8355), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156887] = 2, + [156885] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156897] = 2, + [156895] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156907] = 2, + [156905] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156917] = 2, + [156915] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156927] = 2, + [156925] = 4, + ACTIONS(2482), 1, + anon_sym_LBRACE, + ACTIONS(8470), 1, + anon_sym_LPAREN, + STATE(796), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8468), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156937] = 2, + [156939] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8304), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156947] = 4, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(8181), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, + [156949] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [156961] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8470), 1, - sym__glimmer_template_content, - ACTIONS(8472), 1, - sym_glimmer_closing_tag, - STATE(4817), 1, - aux_sym_glimmer_template_repeat1, - [156977] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8474), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156987] = 2, + [156959] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156997] = 2, + [156969] = 3, + ACTIONS(7068), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8472), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [157007] = 2, + [156981] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8474), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157017] = 2, + [156991] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157027] = 3, - ACTIONS(7042), 1, - anon_sym_DOT, + [157001] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 2, + ACTIONS(8365), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [157039] = 2, + [157011] = 4, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(8171), 1, + anon_sym_RBRACE, + STATE(4971), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157049] = 2, + [157025] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157059] = 2, + [157035] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8478), 3, + ACTIONS(8476), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - [157069] = 2, + [157045] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8478), 1, + sym__glimmer_template_content, + ACTIONS(8480), 1, + sym_glimmer_closing_tag, + STATE(4822), 1, + aux_sym_glimmer_template_repeat1, + [157061] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157079] = 2, + [157071] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8384), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157089] = 2, + [157081] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157099] = 2, + [157091] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8106), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157109] = 2, + [157101] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157119] = 4, - ACTIONS(1679), 1, - anon_sym_RPAREN, - ACTIONS(8480), 1, - anon_sym_COMMA, - STATE(4695), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157133] = 2, + [157111] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8355), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157143] = 2, + [157121] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157153] = 4, - ACTIONS(7486), 1, + [157131] = 4, + ACTIONS(7476), 1, anon_sym_COMMA, ACTIONS(8482), 1, anon_sym_LBRACE, @@ -267980,42 +267963,42 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [157167] = 2, + [157145] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157177] = 2, + [157155] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157187] = 2, + [157165] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8175), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157197] = 4, - ACTIONS(5278), 1, + [157175] = 4, + ACTIONS(5276), 1, anon_sym_COMMA, ACTIONS(8484), 1, anon_sym_RBRACE, - STATE(4941), 1, + STATE(4945), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157211] = 4, - ACTIONS(5278), 1, + [157189] = 4, + ACTIONS(5276), 1, anon_sym_COMMA, ACTIONS(8484), 1, anon_sym_RBRACE, @@ -268024,26 +268007,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [157225] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8351), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157235] = 4, + [157203] = 4, ACTIONS(8486), 1, anon_sym_COMMA, ACTIONS(8488), 1, anon_sym_RPAREN, - STATE(4947), 1, + STATE(4949), 1, aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157249] = 4, - ACTIONS(5278), 1, + [157217] = 4, + ACTIONS(5276), 1, anon_sym_COMMA, ACTIONS(8490), 1, anon_sym_RBRACE, @@ -268052,271 +268027,270 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [157263] = 4, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(8492), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, + [157231] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157277] = 2, + ACTIONS(8280), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157241] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8355), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157287] = 4, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(8494), 1, - anon_sym_RBRACE, - STATE(4971), 1, - aux_sym_object_pattern_repeat1, + [157251] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157301] = 2, + ACTIONS(8322), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157261] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157311] = 4, - ACTIONS(5278), 1, + [157271] = 4, + ACTIONS(8492), 1, + anon_sym_COMMA, + ACTIONS(8494), 1, + anon_sym_RBRACK, + STATE(4648), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [157285] = 4, + ACTIONS(5080), 1, anon_sym_COMMA, ACTIONS(8496), 1, anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + STATE(4971), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157325] = 2, + [157299] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8304), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157335] = 2, + [157309] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157345] = 2, + [157319] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157355] = 2, + [157329] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157365] = 4, - ACTIONS(8498), 1, - anon_sym_COMMA, - ACTIONS(8500), 1, - anon_sym_RBRACK, - STATE(4653), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157379] = 3, - ACTIONS(7058), 1, + [157339] = 3, + ACTIONS(7030), 1, anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8476), 2, + ACTIONS(8472), 2, sym__automatic_semicolon, anon_sym_SEMI, - [157391] = 2, + [157351] = 4, + ACTIONS(7937), 1, + sym_identifier, + ACTIONS(7939), 1, + anon_sym_const, + STATE(4972), 1, + sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157401] = 2, + [157365] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157411] = 2, + [157375] = 4, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(8498), 1, + anon_sym_RBRACE, + STATE(4971), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157421] = 2, + [157389] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8502), 3, + ACTIONS(8355), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157431] = 2, + [157399] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157441] = 4, + [157409] = 4, ACTIONS(2292), 1, anon_sym_LBRACE, - ACTIONS(8504), 1, + ACTIONS(8500), 1, sym_identifier, STATE(4509), 1, sym_export_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157455] = 2, + [157423] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157433] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157465] = 2, + [157443] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157475] = 2, + [157453] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157485] = 4, - ACTIONS(3507), 1, + [157463] = 4, + ACTIONS(3519), 1, anon_sym_LPAREN, - ACTIONS(8506), 1, + ACTIONS(8504), 1, anon_sym_DOT, - STATE(3164), 1, + STATE(3191), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157499] = 2, + [157477] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157509] = 2, + [157487] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157519] = 2, + [157497] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157529] = 2, + [157507] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157539] = 2, + [157517] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157549] = 2, + [157527] = 4, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(8506), 1, + anon_sym_RBRACE, + STATE(4970), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157559] = 2, + [157541] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157569] = 2, + [157551] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8175), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157579] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8508), 1, - sym__glimmer_template_content, - ACTIONS(8510), 1, - sym_glimmer_closing_tag, - STATE(4632), 1, - aux_sym_glimmer_template_repeat1, - [157595] = 2, + [157561] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157605] = 2, + [157571] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -268324,688 +268298,704 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [157615] = 2, + [157581] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8304), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157625] = 4, - ACTIONS(8512), 1, + [157591] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8169), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8515), 1, + anon_sym_SEMI, + [157601] = 4, + ACTIONS(8508), 1, + anon_sym_COMMA, + ACTIONS(8511), 1, anon_sym_RBRACK, - STATE(4939), 1, + STATE(4937), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157639] = 4, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(8517), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + [157615] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157653] = 4, - ACTIONS(5278), 1, + ACTIONS(8340), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8519), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [157625] = 3, + ACTIONS(4173), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157667] = 2, + ACTIONS(4175), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [157637] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8521), 3, + ACTIONS(8513), 3, sym__template_chars, anon_sym_BQUOTE, anon_sym_DOLLAR_LBRACE, - [157677] = 2, + [157647] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157687] = 3, - ACTIONS(4195), 1, + [157657] = 3, + ACTIONS(4271), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4197), 2, + ACTIONS(4273), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [157699] = 3, - ACTIONS(4308), 1, - anon_sym_LBRACE, + [157669] = 4, + ACTIONS(5276), 1, + anon_sym_COMMA, + ACTIONS(8515), 1, + anon_sym_RBRACE, + STATE(4970), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(4310), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [157711] = 2, + [157683] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157721] = 4, - ACTIONS(1687), 1, - anon_sym_RPAREN, - ACTIONS(8523), 1, + [157693] = 4, + ACTIONS(5276), 1, anon_sym_COMMA, - STATE(4695), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(8517), 1, + anon_sym_RBRACE, + STATE(4970), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157735] = 4, - ACTIONS(7949), 1, + [157707] = 4, + ACTIONS(7937), 1, sym_identifier, - ACTIONS(7951), 1, + ACTIONS(7939), 1, anon_sym_const, - STATE(5280), 1, + STATE(5286), 1, sym_type_parameter, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157749] = 2, + [157721] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157759] = 2, + [157731] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157769] = 2, + [157741] = 4, + ACTIONS(1687), 1, + anon_sym_RPAREN, + ACTIONS(8519), 1, + anon_sym_COMMA, + STATE(4683), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8185), 3, + [157755] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8187), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157779] = 4, - ACTIONS(8525), 1, + [157765] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8280), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8527), 1, + anon_sym_SEMI, + [157775] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157785] = 4, + ACTIONS(8521), 1, + anon_sym_COMMA, + ACTIONS(8523), 1, anon_sym_RBRACE, - STATE(4807), 1, + STATE(4809), 1, aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157793] = 2, + [157799] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8304), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157803] = 2, + [157809] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157813] = 2, + [157819] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157823] = 4, - ACTIONS(8529), 1, + [157829] = 4, + ACTIONS(8525), 1, anon_sym_COMMA, - ACTIONS(8531), 1, + ACTIONS(8527), 1, anon_sym_RBRACE, - STATE(4807), 1, + STATE(4809), 1, aux_sym_enum_body_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157837] = 2, + [157843] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8175), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157847] = 2, + [157853] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8304), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157857] = 2, + [157863] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157867] = 2, + [157873] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157877] = 4, + [157883] = 4, ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(8533), 1, + ACTIONS(8529), 1, anon_sym_RBRACE, STATE(4971), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157891] = 2, + [157897] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8351), 3, + ACTIONS(8340), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157901] = 2, + [157907] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7114), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [157911] = 4, - ACTIONS(1681), 1, - anon_sym_RPAREN, - ACTIONS(8535), 1, + ACTIONS(8096), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4695), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [157925] = 4, - ACTIONS(5278), 1, + anon_sym_SEMI, + [157917] = 4, + ACTIONS(5276), 1, anon_sym_COMMA, - ACTIONS(8537), 1, + ACTIONS(8531), 1, anon_sym_RBRACE, STATE(4970), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157939] = 2, + [157931] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8359), 3, + ACTIONS(8310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157949] = 2, + [157941] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8539), 3, + ACTIONS(8355), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [157959] = 2, + [157951] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8312), 3, + ACTIONS(8533), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [157969] = 4, - ACTIONS(8541), 1, - anon_sym_COMMA, - ACTIONS(8543), 1, - anon_sym_RBRACK, - STATE(5029), 1, - aux_sym_tuple_type_repeat1, + [157961] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157983] = 4, - ACTIONS(8545), 1, + ACTIONS(8157), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157971] = 4, + ACTIONS(8535), 1, anon_sym_COMMA, - ACTIONS(8548), 1, + ACTIONS(8538), 1, anon_sym_RBRACE, STATE(4970), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [157997] = 4, - ACTIONS(8550), 1, + [157985] = 4, + ACTIONS(8540), 1, anon_sym_COMMA, - ACTIONS(8553), 1, + ACTIONS(8543), 1, anon_sym_RBRACE, STATE(4971), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158011] = 2, + [157999] = 4, + ACTIONS(8545), 1, + anon_sym_COMMA, + ACTIONS(8547), 1, + anon_sym_GT, + STATE(5058), 1, + aux_sym_type_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158021] = 2, + [158013] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158031] = 4, - ACTIONS(8555), 1, - sym_identifier, - ACTIONS(8557), 1, - anon_sym_require, - STATE(4916), 1, - sym_nested_identifier, + [158023] = 4, + ACTIONS(6604), 1, + anon_sym_AMP, + ACTIONS(6606), 1, + anon_sym_PIPE, + ACTIONS(6608), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158045] = 2, + [158037] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158055] = 4, - ACTIONS(6705), 1, - anon_sym_AMP, - ACTIONS(6709), 1, - anon_sym_extends, - ACTIONS(7577), 1, - anon_sym_PIPE, + [158047] = 4, + ACTIONS(8549), 1, + anon_sym_COMMA, + ACTIONS(8551), 1, + anon_sym_RBRACK, + STATE(5030), 1, + aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158069] = 2, + [158061] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8502), 3, + ACTIONS(7114), 3, + anon_sym_LBRACK, + sym_identifier, + sym_private_property_identifier, + [158071] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8304), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158079] = 2, + [158081] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158089] = 2, + [158091] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158099] = 2, + [158101] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158109] = 2, + [158111] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158119] = 2, + [158121] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158129] = 4, - ACTIONS(6622), 1, + [158131] = 4, + ACTIONS(6709), 1, anon_sym_AMP, - ACTIONS(6624), 1, - anon_sym_PIPE, - ACTIONS(6626), 1, + ACTIONS(6713), 1, anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158143] = 2, + [158145] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8284), 3, + ACTIONS(8502), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158153] = 2, + [158155] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8304), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158163] = 2, + [158165] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8324), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158173] = 4, - ACTIONS(8559), 1, + [158175] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8322), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8561), 1, + anon_sym_SEMI, + [158185] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8306), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158195] = 4, + ACTIONS(8553), 1, + anon_sym_COMMA, + ACTIONS(8555), 1, anon_sym_RBRACE, - STATE(4845), 1, + STATE(4842), 1, aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158187] = 2, + [158209] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6578), 3, + ACTIONS(6466), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_from, - [158197] = 2, + [158219] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8308), 3, + ACTIONS(8306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158207] = 3, - ACTIONS(8563), 1, + [158229] = 3, + ACTIONS(8557), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8276), 2, + ACTIONS(8274), 2, anon_sym_COMMA, anon_sym_from, - [158219] = 4, - ACTIONS(3224), 1, + [158241] = 4, + ACTIONS(3236), 1, anon_sym_GT, - ACTIONS(8565), 1, + ACTIONS(8559), 1, anon_sym_COMMA, STATE(4434), 1, aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158233] = 2, + [158255] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158243] = 2, + [158265] = 4, + ACTIONS(2570), 1, + anon_sym_LT, + ACTIONS(8561), 1, + anon_sym_EQ, + STATE(5640), 1, + sym_type_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8310), 3, + [158279] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158253] = 4, - ACTIONS(5222), 1, + [158289] = 4, + ACTIONS(1681), 1, + anon_sym_RPAREN, + ACTIONS(8563), 1, anon_sym_COMMA, - ACTIONS(8567), 1, - anon_sym_RBRACK, - STATE(4580), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158267] = 4, - ACTIONS(2570), 1, - anon_sym_LT, - ACTIONS(8569), 1, - anon_sym_EQ, - STATE(5640), 1, - sym_type_parameters, + STATE(4683), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158281] = 2, + [158303] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158291] = 4, + [158313] = 4, ACTIONS(1976), 1, anon_sym_COMMA, ACTIONS(5421), 1, anon_sym_RPAREN, - STATE(5034), 1, + STATE(5036), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158305] = 4, + [158327] = 4, ACTIONS(1976), 1, anon_sym_COMMA, ACTIONS(5421), 1, anon_sym_RPAREN, - STATE(4700), 1, + STATE(4695), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158319] = 2, + [158341] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158329] = 4, - ACTIONS(1909), 1, - anon_sym_COMMA, - ACTIONS(8571), 1, - anon_sym_RBRACK, - STATE(4609), 1, - aux_sym_array_pattern_repeat1, + [158351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158343] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8573), 3, + ACTIONS(8322), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158353] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8324), 3, - sym__automatic_semicolon, + [158361] = 4, + ACTIONS(5222), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158363] = 2, + ACTIONS(8567), 1, + anon_sym_RBRACK, + STATE(4583), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158373] = 2, + [158375] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8198), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158383] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8136), 3, - sym__automatic_semicolon, + [158385] = 4, + ACTIONS(1903), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158393] = 2, + ACTIONS(8569), 1, + anon_sym_RBRACK, + STATE(4610), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158403] = 4, - ACTIONS(8575), 1, + [158399] = 4, + ACTIONS(8571), 1, sym_identifier, - ACTIONS(8577), 1, + ACTIONS(8573), 1, anon_sym_LBRACK, - ACTIONS(8579), 1, + ACTIONS(8575), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158417] = 4, - ACTIONS(8581), 1, + [158413] = 4, + ACTIONS(8577), 1, sym_identifier, - ACTIONS(8583), 1, + ACTIONS(8579), 1, anon_sym_LBRACK, - ACTIONS(8585), 1, + ACTIONS(8581), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158431] = 2, + [158427] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8587), 3, + ACTIONS(8583), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158441] = 4, - ACTIONS(8589), 1, - sym_identifier, - ACTIONS(8591), 1, - anon_sym_LBRACK, - ACTIONS(8593), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158455] = 4, - ACTIONS(8595), 1, + [158437] = 4, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(8597), 1, + ACTIONS(8587), 1, anon_sym_LBRACK, - ACTIONS(8599), 1, + ACTIONS(8589), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158469] = 2, + [158451] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158479] = 2, + [158461] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8601), 3, + ACTIONS(8591), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158489] = 2, + [158471] = 4, + ACTIONS(8593), 1, + sym_identifier, + ACTIONS(8595), 1, + anon_sym_LBRACK, + ACTIONS(8597), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8573), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158499] = 2, + [158485] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8599), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158509] = 3, + [158495] = 3, ACTIONS(7238), 1, anon_sym_EQ, ACTIONS(5), 2, @@ -269014,125 +269004,141 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3699), 2, anon_sym_in, anon_sym_of, - [158521] = 2, + [158507] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158531] = 2, + [158517] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8605), 3, + ACTIONS(8601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158541] = 2, + [158527] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158551] = 4, - ACTIONS(1909), 1, - anon_sym_COMMA, - ACTIONS(8080), 1, - anon_sym_RBRACK, - STATE(4578), 1, - aux_sym_array_pattern_repeat1, + [158537] = 4, + ACTIONS(7184), 1, + anon_sym_AMP, + ACTIONS(7186), 1, + anon_sym_PIPE, + ACTIONS(7188), 1, + anon_sym_extends, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158565] = 2, + [158551] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8169), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158575] = 4, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_extends, + [158561] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158589] = 2, + ACTIONS(8603), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158571] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158599] = 2, + [158581] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8599), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158609] = 2, + [158591] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8408), 3, + ACTIONS(8402), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158619] = 2, + [158601] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8175), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158629] = 2, + [158611] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158639] = 2, + [158621] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8609), 3, + ACTIONS(8605), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158649] = 4, - ACTIONS(2972), 1, + [158631] = 4, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, + anon_sym_require, + STATE(4913), 1, + sym_nested_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [158645] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8603), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158655] = 4, + ACTIONS(2974), 1, anon_sym_RBRACK, ACTIONS(8611), 1, anon_sym_COMMA, - STATE(4939), 1, + STATE(4937), 1, aux_sym_tuple_type_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [158663] = 2, + [158669] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158673] = 2, + [158679] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -269140,56 +269146,50 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158683] = 2, + [158689] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8615), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158693] = 2, + [158699] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8615), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158703] = 4, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(8617), 1, - anon_sym_RPAREN, - STATE(4700), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158717] = 2, + [158709] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8619), 3, + ACTIONS(8591), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158727] = 2, + [158719] = 4, + ACTIONS(1976), 1, + anon_sym_COMMA, + ACTIONS(8617), 1, + anon_sym_RPAREN, + STATE(4695), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8601), 3, - sym__automatic_semicolon, + [158733] = 4, + ACTIONS(3252), 1, + anon_sym_GT, + ACTIONS(8619), 1, anon_sym_COMMA, - anon_sym_SEMI, - [158737] = 2, + STATE(4434), 1, + aux_sym_implements_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, [158747] = 2, ACTIONS(5), 2, sym_html_comment, @@ -269202,7 +269202,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8613), 3, + ACTIONS(8623), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269210,7 +269210,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8623), 3, + ACTIONS(8625), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269218,7 +269218,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8623), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269226,7 +269226,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8625), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269234,7 +269234,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8615), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269242,7 +269242,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8619), 3, + ACTIONS(8627), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269250,7 +269250,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8627), 3, + ACTIONS(8629), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269258,7 +269258,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269266,7 +269266,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269274,7 +269274,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269282,7 +269282,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269290,7 +269290,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269298,7 +269298,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269306,7 +269306,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269314,7 +269314,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269322,7 +269322,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269330,36 +269330,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158927] = 4, - ACTIONS(3226), 1, - anon_sym_GT, - ACTIONS(8629), 1, - anon_sym_COMMA, - STATE(4434), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [158941] = 2, + [158927] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8106), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158951] = 2, + [158937] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8631), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, + [158947] = 4, + ACTIONS(8019), 1, + anon_sym_GT, + ACTIONS(8631), 1, + anon_sym_COMMA, + STATE(4681), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, [158961] = 2, ACTIONS(5), 2, sym_html_comment, @@ -269372,7 +269372,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8635), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269380,7 +269380,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269388,7 +269388,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269396,7 +269396,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269404,7 +269404,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269412,7 +269412,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269420,7 +269420,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269428,7 +269428,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8106), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269436,7 +269436,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269444,7 +269444,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269452,7 +269452,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269460,7 +269460,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269468,7 +269468,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269476,7 +269476,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269484,7 +269484,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269492,7 +269492,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269500,7 +269500,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269508,7 +269508,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8599), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269516,7 +269516,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8603), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269524,7 +269524,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269532,7 +269532,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269540,7 +269540,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269548,7 +269548,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269556,7 +269556,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8155), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269564,7 +269564,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269572,7 +269572,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269580,7 +269580,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8637), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269588,7 +269588,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8635), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269596,7 +269596,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269604,7 +269604,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8106), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269612,154 +269612,154 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8633), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159281] = 4, - ACTIONS(8040), 1, - anon_sym_GT, - ACTIONS(8637), 1, - anon_sym_COMMA, - STATE(4685), 1, - aux_sym_type_parameters_repeat1, + [159281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159295] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8631), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159305] = 2, + [159291] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159315] = 2, + [159301] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8591), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159325] = 2, + [159311] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8601), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159335] = 2, + [159321] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159345] = 2, + [159331] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159355] = 2, + [159341] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159365] = 2, + [159351] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159375] = 2, + [159361] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8189), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159385] = 2, + [159371] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8198), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159395] = 2, + [159381] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159405] = 2, + [159391] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8613), 3, + ACTIONS(8623), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159415] = 2, + [159401] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, + ACTIONS(8106), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159425] = 2, + [159411] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8613), 3, + ACTIONS(8623), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159435] = 3, + [159421] = 3, ACTIONS(8639), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3613), 2, + ACTIONS(3637), 2, anon_sym_COMMA, anon_sym_RBRACK, - [159447] = 2, + [159433] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8198), 3, + ACTIONS(8189), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, + [159443] = 4, + ACTIONS(219), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1541), 1, + anon_sym_LBRACE, + STATE(852), 1, + sym_object_type, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, [159457] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8625), 3, + ACTIONS(8627), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269767,61 +269767,51 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8112), 3, + ACTIONS(8175), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159477] = 4, - ACTIONS(219), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1541), 1, - anon_sym_LBRACE, - STATE(851), 1, - sym_object_type, + [159477] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159491] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8607), 3, + ACTIONS(8106), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159501] = 2, + [159487] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159511] = 2, + [159497] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159521] = 2, + ACTIONS(6358), 3, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_LT, + [159507] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159531] = 2, + [159517] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8198), 3, + ACTIONS(8189), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159541] = 3, + [159527] = 3, ACTIONS(8642), 1, anon_sym_LBRACE, ACTIONS(5), 2, @@ -269830,11 +269820,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7835), 2, anon_sym_extends, anon_sym_LBRACE_PIPE, + [159539] = 4, + ACTIONS(8644), 1, + sym_identifier, + STATE(3896), 1, + sym_decorator_member_expression, + STATE(5821), 1, + sym_decorator_call_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, [159553] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8183), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -269842,175 +269842,175 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8450), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159573] = 4, - ACTIONS(5222), 1, - anon_sym_COMMA, - ACTIONS(5262), 1, - anon_sym_RBRACK, - STATE(4566), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [159587] = 2, + [159573] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8136), 3, + ACTIONS(8096), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159597] = 2, + [159583] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8456), 3, + ACTIONS(8187), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159607] = 2, + [159593] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8177), 3, + ACTIONS(8157), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159617] = 2, + [159603] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159627] = 2, + [159613] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8185), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, + [159623] = 4, + ACTIONS(5080), 1, + anon_sym_COMMA, + ACTIONS(8100), 1, + anon_sym_RBRACE, + STATE(4916), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, [159637] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8106), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159647] = 2, + [159647] = 4, + ACTIONS(1903), 1, + anon_sym_COMMA, + ACTIONS(7845), 1, + anon_sym_RBRACK, + STATE(4580), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, - sym__automatic_semicolon, + [159661] = 4, + ACTIONS(5276), 1, anon_sym_COMMA, - anon_sym_SEMI, - [159657] = 2, + ACTIONS(8098), 1, + anon_sym_RBRACE, + STATE(4930), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8116), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159667] = 2, + [159675] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8144), 3, + ACTIONS(8189), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159677] = 2, + [159685] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159687] = 2, + [159695] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159697] = 2, + [159705] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8198), 3, + ACTIONS(8189), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159707] = 4, - ACTIONS(8644), 1, - sym_identifier, - STATE(3896), 1, - sym_decorator_member_expression, - STATE(5821), 1, - sym_decorator_call_expression, + [159715] = 4, + ACTIONS(5222), 1, + anon_sym_COMMA, + ACTIONS(5262), 1, + anon_sym_RBRACK, + STATE(4579), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159721] = 2, + [159729] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8607), 3, + ACTIONS(8603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159731] = 4, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(8106), 1, - anon_sym_RBRACE, - STATE(4908), 1, - aux_sym_object_pattern_repeat1, + [159739] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159745] = 2, + ACTIONS(8603), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159749] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8198), 3, + ACTIONS(8189), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159755] = 4, - ACTIONS(5278), 1, - anon_sym_COMMA, - ACTIONS(8100), 1, - anon_sym_RBRACE, - STATE(4910), 1, - aux_sym_object_repeat1, + [159759] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(8157), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, [159769] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8114), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, [159779] = 3, - ACTIONS(3288), 1, - anon_sym_LPAREN, - STATE(3699), 1, - sym_formal_parameters, + ACTIONS(6771), 1, + anon_sym_LBRACE, + STATE(2589), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -270028,61 +270028,67 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8648), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159808] = 3, - ACTIONS(7293), 1, + [159808] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8419), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [159817] = 3, + ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(2698), 1, + STATE(798), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159819] = 2, + [159828] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8423), 2, + ACTIONS(8108), 2, anon_sym_COMMA, anon_sym_RBRACE, - [159828] = 3, - ACTIONS(7293), 1, + [159837] = 3, + ACTIONS(4352), 1, anon_sym_LBRACE, - STATE(2684), 1, + STATE(2134), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159839] = 2, + [159848] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(1711), 2, sym__automatic_semicolon, anon_sym_SEMI, - [159848] = 3, - ACTIONS(7293), 1, + [159857] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2717), 1, + STATE(2684), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159859] = 3, - ACTIONS(7293), 1, + [159868] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2693), 1, + STATE(2690), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159870] = 3, - ACTIONS(4335), 1, - anon_sym_LBRACE, - STATE(2133), 1, - sym_statement_block, + [159879] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159881] = 3, + ACTIONS(5055), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [159888] = 3, ACTIONS(8650), 1, anon_sym_SEMI, ACTIONS(8652), 1, @@ -270090,23 +270096,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [159892] = 3, - ACTIONS(7040), 1, + [159899] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(4034), 1, + STATE(2694), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159903] = 3, - ACTIONS(2482), 1, + [159910] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(5461), 1, + STATE(2700), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159914] = 3, + [159921] = 3, ACTIONS(8654), 1, anon_sym_SEMI, ACTIONS(8656), 1, @@ -270114,61 +270120,84 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [159925] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(4298), 1, - sym_formal_parameters, + [159932] = 3, + ACTIONS(7028), 1, + anon_sym_LBRACE, + STATE(4035), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159936] = 2, + [159943] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(8658), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [159945] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8660), 2, anon_sym_in, anon_sym_of, - [159954] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2687), 1, - sym_statement_block, + [159952] = 3, + ACTIONS(8660), 1, + sym_identifier, + ACTIONS(8662), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159965] = 3, - ACTIONS(8662), 1, - sym_identifier, - ACTIONS(8664), 1, - sym_private_property_identifier, + [159963] = 3, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(4297), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159976] = 3, - ACTIONS(8666), 1, + [159974] = 3, + ACTIONS(8664), 1, anon_sym_LBRACE, - STATE(4036), 1, + STATE(4037), 1, sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159987] = 3, - ACTIONS(8668), 1, + [159985] = 3, + ACTIONS(8666), 1, sym_identifier, - ACTIONS(8670), 1, + ACTIONS(8668), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [159998] = 3, + [159996] = 3, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(5599), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160007] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8670), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160016] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6014), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160025] = 3, + ACTIONS(7273), 1, + anon_sym_LBRACE, + STATE(2658), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160036] = 3, ACTIONS(8672), 1, sym_identifier, ACTIONS(8674), 1, @@ -270176,15 +270205,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [160009] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5597), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160020] = 3, + [160047] = 3, ACTIONS(8676), 1, sym_identifier, ACTIONS(8678), 1, @@ -270192,328 +270213,308 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [160031] = 3, + [160058] = 3, ACTIONS(4651), 1, anon_sym_LBRACE, - STATE(2728), 1, + STATE(2721), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160042] = 2, + [160069] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5050), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160051] = 2, + ACTIONS(8680), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [160078] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6015), 2, + ACTIONS(6053), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160060] = 3, - ACTIONS(8680), 1, - sym_identifier, + [160087] = 3, ACTIONS(8682), 1, + sym_identifier, + ACTIONS(8684), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160071] = 2, + [160098] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8684), 2, + ACTIONS(8686), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [160080] = 3, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(2583), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160091] = 3, - ACTIONS(8686), 1, - sym_identifier, + anon_sym_RBRACE, + [160107] = 3, ACTIONS(8688), 1, + sym_identifier, + ACTIONS(8690), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160102] = 3, - ACTIONS(7293), 1, + [160118] = 3, + ACTIONS(6771), 1, anon_sym_LBRACE, - STATE(2671), 1, - sym_statement_block, + STATE(2591), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160113] = 3, - ACTIONS(8690), 1, + [160129] = 3, + ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5443), 1, - sym_object, + STATE(5388), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160124] = 3, - ACTIONS(6757), 1, + [160140] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2585), 1, - sym_class_body, + STATE(2670), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160135] = 3, - ACTIONS(8438), 1, + [160151] = 3, + ACTIONS(8440), 1, sym_identifier, - ACTIONS(8442), 1, + ACTIONS(8444), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160146] = 2, + [160162] = 3, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(5693), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160173] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(7803), 2, sym__automatic_semicolon, anon_sym_SEMI, - [160155] = 3, - ACTIONS(4031), 1, - anon_sym_LPAREN, - STATE(1671), 1, - sym_arguments, + [160182] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160166] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2688), 1, - sym_statement_block, + ACTIONS(6071), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160191] = 3, + ACTIONS(3967), 1, + anon_sym_LPAREN, + STATE(1671), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160177] = 3, - ACTIONS(6468), 1, + [160202] = 3, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5688), 1, + STATE(5769), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160188] = 3, + [160213] = 3, ACTIONS(8692), 1, - anon_sym_SEMI, - ACTIONS(8694), 1, - sym__automatic_semicolon, + anon_sym_LBRACE, + STATE(5439), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160199] = 3, - ACTIONS(6468), 1, + [160224] = 3, + ACTIONS(6059), 1, anon_sym_LPAREN, - STATE(5765), 1, - sym_formal_parameters, + STATE(2796), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160210] = 2, + [160235] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8696), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160219] = 2, + ACTIONS(5050), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160244] = 3, + ACTIONS(6942), 1, + anon_sym_LBRACE, + STATE(237), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6050), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160228] = 3, - ACTIONS(2482), 1, + [160255] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(5385), 1, + STATE(2699), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160239] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6083), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160248] = 2, + [160266] = 3, + ACTIONS(8694), 1, + anon_sym_SEMI, + ACTIONS(8696), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8698), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160257] = 3, - ACTIONS(8700), 1, + [160277] = 3, + ACTIONS(8698), 1, sym_identifier, - ACTIONS(8702), 1, + ACTIONS(8700), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160268] = 3, - ACTIONS(7839), 1, + [160288] = 3, + ACTIONS(7879), 1, anon_sym_from, - STATE(3944), 1, + STATE(3943), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160279] = 2, + [160299] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8704), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [160288] = 3, - ACTIONS(6898), 1, + ACTIONS(8702), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160308] = 3, + ACTIONS(6856), 1, anon_sym_LBRACE, - STATE(219), 1, + STATE(900), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160299] = 3, - ACTIONS(8706), 1, + [160319] = 3, + ACTIONS(8704), 1, anon_sym_LPAREN, - STATE(796), 1, + STATE(787), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160310] = 3, - ACTIONS(6900), 1, + [160330] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(899), 1, - sym_class_body, + STATE(2679), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160321] = 3, - ACTIONS(8708), 1, - sym_identifier, - ACTIONS(8710), 1, - anon_sym_STAR, + [160341] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160332] = 3, - ACTIONS(8712), 1, + ACTIONS(7395), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [160350] = 3, + ACTIONS(8706), 1, sym_identifier, - ACTIONS(8714), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [160343] = 2, + ACTIONS(8708), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7401), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [160352] = 3, - ACTIONS(6470), 1, - anon_sym_COLON, - STATE(4799), 1, - sym_type_annotation, + [160361] = 3, + ACTIONS(8710), 1, + sym_identifier, + ACTIONS(8712), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160363] = 3, + [160372] = 3, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5453), 1, + STATE(5452), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160374] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8716), 2, - sym__automatic_semicolon, - anon_sym_SEMI, [160383] = 3, - ACTIONS(8718), 1, - sym_identifier, - ACTIONS(8720), 1, - sym_private_property_identifier, + ACTIONS(8714), 1, + anon_sym_LPAREN, + STATE(49), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, [160394] = 3, - ACTIONS(7293), 1, + ACTIONS(6771), 1, anon_sym_LBRACE, - STATE(2677), 1, - sym_statement_block, + STATE(1665), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160405] = 3, - ACTIONS(8722), 1, - anon_sym_SEMI, - ACTIONS(8724), 1, - sym__automatic_semicolon, + [160405] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160416] = 3, + ACTIONS(8716), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160414] = 3, ACTIONS(3550), 1, anon_sym_COLON, - STATE(5292), 1, + STATE(5295), 1, sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160427] = 2, + [160425] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8726), 2, + ACTIONS(8718), 2, anon_sym_COMMA, anon_sym_RBRACK, - [160436] = 2, + [160434] = 3, + ACTIONS(8720), 1, + anon_sym_SEMI, + ACTIONS(8722), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8728), 2, - anon_sym_COMMA, - anon_sym_RBRACK, [160445] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 2, + ACTIONS(8724), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [160454] = 2, + anon_sym_RBRACK, + [160454] = 3, + ACTIONS(8726), 1, + sym_identifier, + ACTIONS(8728), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160463] = 3, + [160465] = 3, ACTIONS(8730), 1, sym_identifier, ACTIONS(8732), 1, @@ -270521,234 +270522,233 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [160474] = 3, - ACTIONS(7293), 1, + [160476] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2705), 1, + STATE(2716), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160485] = 2, + [160487] = 3, + ACTIONS(8734), 1, + sym_identifier, + ACTIONS(8736), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6046), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160494] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(5216), 1, - sym_statement_block, + [160498] = 3, + ACTIONS(4627), 1, + anon_sym_LPAREN, + STATE(2351), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160505] = 2, + [160509] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 2, + ACTIONS(6022), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160514] = 3, - ACTIONS(8734), 1, - anon_sym_LBRACE, - STATE(911), 1, - sym_enum_body, + [160518] = 3, + ACTIONS(8738), 1, + sym_identifier, + ACTIONS(8740), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160525] = 2, + [160529] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8120), 2, + ACTIONS(6043), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160534] = 3, - ACTIONS(6733), 1, - anon_sym_LBRACE, - STATE(2356), 1, - sym_class_body, + [160538] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160545] = 3, - ACTIONS(8130), 1, - sym_identifier, - ACTIONS(8134), 1, - sym_private_property_identifier, + ACTIONS(6057), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160547] = 3, + ACTIONS(6741), 1, + anon_sym_LBRACE, + STATE(2273), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160556] = 3, - ACTIONS(6757), 1, + [160558] = 3, + ACTIONS(8742), 1, anon_sym_LBRACE, - STATE(1665), 1, - sym_class_body, + STATE(912), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160567] = 3, - ACTIONS(8736), 1, - anon_sym_LPAREN, - STATE(32), 1, - sym_parenthesized_expression, + [160569] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, + ACTIONS(6026), 2, + anon_sym_COMMA, + anon_sym_RBRACE, [160578] = 3, - ACTIONS(7293), 1, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2661), 1, + STATE(2665), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160589] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6009), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160598] = 3, - ACTIONS(8736), 1, + [160589] = 3, + ACTIONS(8714), 1, anon_sym_LPAREN, - STATE(33), 1, + STATE(32), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160609] = 3, + [160600] = 3, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5398), 1, + STATE(5210), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160620] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2711), 1, - sym_statement_block, + [160611] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160631] = 3, - ACTIONS(6468), 1, + ACTIONS(6018), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160620] = 3, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5510), 1, + STATE(5576), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, + [160631] = 3, + ACTIONS(6741), 1, + anon_sym_LBRACE, + STATE(2234), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, [160642] = 3, - ACTIONS(8736), 1, + ACTIONS(8714), 1, anon_sym_LPAREN, - STATE(35), 1, + STATE(33), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, [160653] = 3, - ACTIONS(3288), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3301), 1, + STATE(5860), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, [160664] = 3, - ACTIONS(6468), 1, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5820), 1, + STATE(5490), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160675] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(6079), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160684] = 3, - ACTIONS(6468), 1, + [160675] = 3, + ACTIONS(3288), 1, anon_sym_LPAREN, - STATE(5500), 1, + STATE(3320), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160695] = 3, - ACTIONS(2482), 1, + [160686] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(820), 1, + STATE(2671), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160706] = 2, + [160697] = 3, + ACTIONS(8714), 1, + anon_sym_LPAREN, + STATE(35), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8738), 2, - anon_sym_COMMA, - anon_sym_GT, - [160715] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2664), 1, - sym_statement_block, + [160708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160726] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5869), 1, - sym_formal_parameters, + ACTIONS(5057), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [160717] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160737] = 2, + ACTIONS(6026), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160726] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6003), 2, + ACTIONS(8744), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [160746] = 2, + anon_sym_GT, + [160735] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6028), 2, + ACTIONS(6018), 2, anon_sym_COMMA, anon_sym_RBRACE, + [160744] = 3, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(5872), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, [160755] = 3, - ACTIONS(6868), 1, + ACTIONS(6832), 1, anon_sym_LBRACE, - STATE(4199), 1, + STATE(4198), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, [160766] = 3, - ACTIONS(8734), 1, + ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(845), 1, - sym_enum_body, + STATE(5458), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [160777] = 3, - ACTIONS(7293), 1, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2716), 1, + STATE(2663), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, @@ -270756,7 +270756,7 @@ static const uint16_t ts_small_parse_table[] = { [160788] = 3, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5401), 1, + STATE(5395), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, @@ -270765,48 +270765,64 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6009), 2, + ACTIONS(6043), 2, anon_sym_COMMA, anon_sym_RBRACE, [160808] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6079), 2, + ACTIONS(6067), 2, anon_sym_COMMA, anon_sym_RBRACE, [160817] = 3, - ACTIONS(7839), 1, - anon_sym_from, - STATE(5148), 1, - sym__from_clause, + ACTIONS(3288), 1, + anon_sym_LPAREN, + STATE(3700), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160828] = 3, - ACTIONS(8740), 1, + [160828] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6067), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160837] = 3, + ACTIONS(8124), 1, + sym_identifier, + ACTIONS(8128), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [160848] = 3, + ACTIONS(8746), 1, anon_sym_LBRACE, STATE(862), 1, sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160839] = 3, - ACTIONS(7839), 1, - anon_sym_from, - STATE(5248), 1, - sym__from_clause, + [160859] = 3, + ACTIONS(2482), 1, + anon_sym_LBRACE, + STATE(5397), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160850] = 2, + [160870] = 3, + ACTIONS(8234), 1, + sym_identifier, + ACTIONS(8238), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8742), 2, - anon_sym_COMMA, - anon_sym_GT, - [160859] = 3, + [160881] = 3, ACTIONS(1721), 1, anon_sym_LBRACE, STATE(235), 1, @@ -270814,203 +270830,210 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [160870] = 2, + [160892] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(5999), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160879] = 3, - ACTIONS(6898), 1, - anon_sym_LBRACE, - STATE(221), 1, - sym_class_body, + [160901] = 3, + ACTIONS(7879), 1, + anon_sym_from, + STATE(5255), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160890] = 3, - ACTIONS(7293), 1, + [160912] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2668), 1, + STATE(2672), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160901] = 3, - ACTIONS(7293), 1, + [160923] = 3, + ACTIONS(6942), 1, anon_sym_LBRACE, - STATE(2653), 1, - sym_statement_block, + STATE(221), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160912] = 2, + [160934] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8553), 2, + ACTIONS(8543), 2, anon_sym_COMMA, anon_sym_RBRACE, - [160921] = 3, - ACTIONS(8744), 1, - anon_sym_SEMI, - ACTIONS(8746), 1, - sym__automatic_semicolon, + [160943] = 3, + ACTIONS(7273), 1, + anon_sym_LBRACE, + STATE(2659), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160932] = 3, - ACTIONS(8748), 1, - anon_sym_SEMI, - ACTIONS(8750), 1, - sym__automatic_semicolon, + [160954] = 3, + ACTIONS(7273), 1, + anon_sym_LBRACE, + STATE(2713), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160943] = 2, + [160965] = 3, + ACTIONS(7879), 1, + anon_sym_from, + STATE(5149), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8548), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [160952] = 3, - ACTIONS(4633), 1, - anon_sym_LPAREN, - STATE(2266), 1, - sym_arguments, + [160976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160963] = 3, - ACTIONS(7293), 1, + ACTIONS(8538), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [160985] = 3, + ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(2673), 1, + STATE(821), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160974] = 3, - ACTIONS(4031), 1, - anon_sym_LPAREN, - STATE(1690), 1, - sym_arguments, + [160996] = 3, + ACTIONS(8748), 1, + anon_sym_SEMI, + ACTIONS(8750), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160985] = 3, + [161007] = 3, ACTIONS(8752), 1, - anon_sym_LPAREN, - STATE(37), 1, - sym__for_header, + anon_sym_SEMI, + ACTIONS(8754), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [160996] = 3, - ACTIONS(6733), 1, + [161018] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(6030), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161027] = 3, + ACTIONS(4348), 1, anon_sym_LBRACE, - STATE(2273), 1, - sym_class_body, + STATE(1667), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161007] = 3, - ACTIONS(6733), 1, + [161038] = 3, + ACTIONS(8742), 1, anon_sym_LBRACE, - STATE(2234), 1, - sym_class_body, + STATE(846), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161018] = 3, - ACTIONS(7293), 1, + [161049] = 3, + ACTIONS(4352), 1, anon_sym_LBRACE, - STATE(2685), 1, + STATE(2148), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161029] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5605), 1, - sym_formal_parameters, + [161060] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161040] = 3, - ACTIONS(3288), 1, + ACTIONS(8756), 2, + anon_sym_COMMA, + anon_sym_GT, + [161069] = 3, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3599), 1, + STATE(4106), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161051] = 3, - ACTIONS(6468), 1, + [161080] = 3, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5706), 1, + STATE(5621), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161062] = 3, - ACTIONS(6468), 1, + [161091] = 3, + ACTIONS(3288), 1, anon_sym_LPAREN, - STATE(5774), 1, + STATE(3601), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161073] = 3, - ACTIONS(6468), 1, + [161102] = 3, + ACTIONS(8758), 1, anon_sym_LPAREN, - STATE(4107), 1, - sym_formal_parameters, + STATE(37), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161084] = 2, + [161113] = 3, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(5727), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8754), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [161093] = 3, - ACTIONS(8756), 1, - sym_identifier, - STATE(4916), 1, - sym_nested_identifier, + [161124] = 3, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(5793), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161104] = 3, - ACTIONS(4335), 1, - anon_sym_LBRACE, - STATE(2315), 1, - sym_statement_block, + [161135] = 3, + ACTIONS(8760), 1, + sym_identifier, + STATE(4913), 1, + sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161115] = 3, - ACTIONS(7293), 1, + [161146] = 3, + ACTIONS(4352), 1, anon_sym_LBRACE, - STATE(2672), 1, + STATE(2316), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161126] = 3, - ACTIONS(4331), 1, + [161157] = 3, + ACTIONS(4352), 1, anon_sym_LBRACE, - STATE(1667), 1, + STATE(2237), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161137] = 3, + [161168] = 3, ACTIONS(3550), 1, anon_sym_COLON, STATE(5200), 1, @@ -271018,287 +271041,309 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [161148] = 3, - ACTIONS(6868), 1, + [161179] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(777), 1, - sym_class_body, + STATE(2673), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161159] = 3, - ACTIONS(6733), 1, + [161190] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2216), 1, - sym_class_body, + STATE(2702), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161170] = 3, - ACTIONS(6468), 1, + [161201] = 3, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5756), 1, + STATE(5825), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161181] = 3, - ACTIONS(6757), 1, + [161212] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(1698), 1, - sym_class_body, + STATE(2687), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161192] = 3, - ACTIONS(7293), 1, + [161223] = 3, + ACTIONS(6741), 1, anon_sym_LBRACE, - STATE(2670), 1, - sym_statement_block, + STATE(2217), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161203] = 3, - ACTIONS(8758), 1, - sym_identifier, - ACTIONS(8760), 1, - sym_private_property_identifier, + [161234] = 3, + ACTIONS(6832), 1, + anon_sym_LBRACE, + STATE(777), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161214] = 2, + [161245] = 3, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(5721), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7430), 2, + [161256] = 3, + ACTIONS(6771), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [161223] = 2, + STATE(1698), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161267] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(8762), 2, anon_sym_COMMA, anon_sym_GT, - [161232] = 3, - ACTIONS(6868), 1, + [161276] = 3, + ACTIONS(6832), 1, anon_sym_LBRACE, - STATE(4214), 1, + STATE(4213), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161243] = 3, - ACTIONS(6468), 1, + [161287] = 3, + ACTIONS(4627), 1, anon_sym_LPAREN, - STATE(5831), 1, - sym_formal_parameters, + STATE(2266), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161254] = 2, + [161298] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4487), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161263] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8339), 2, - anon_sym_COMMA, - anon_sym_GT, - [161272] = 3, - ACTIONS(6482), 1, + [161307] = 3, + ACTIONS(3967), 1, anon_sym_LPAREN, - STATE(3383), 1, - sym_formal_parameters, + STATE(1690), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161283] = 3, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(1723), 1, - sym_class_body, + [161318] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161294] = 2, + ACTIONS(8338), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [161327] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8344), 2, + ACTIONS(8333), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [161303] = 3, - ACTIONS(6868), 1, + anon_sym_GT, + [161336] = 3, + ACTIONS(6832), 1, anon_sym_LBRACE, - STATE(4215), 1, + STATE(4214), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161314] = 3, - ACTIONS(8752), 1, + [161347] = 3, + ACTIONS(8758), 1, anon_sym_LPAREN, STATE(62), 1, sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161325] = 3, - ACTIONS(7293), 1, + [161358] = 3, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(5731), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161369] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2669), 1, + STATE(2667), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161336] = 3, - ACTIONS(6900), 1, + [161380] = 3, + ACTIONS(6856), 1, anon_sym_LBRACE, STATE(933), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161347] = 3, - ACTIONS(8764), 1, - anon_sym_SEMI, - ACTIONS(8766), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161358] = 3, - ACTIONS(8768), 1, - sym_identifier, - ACTIONS(8770), 1, - sym_private_property_identifier, + [161391] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161369] = 3, - ACTIONS(7293), 1, + ACTIONS(7427), 2, anon_sym_LBRACE, - STATE(2702), 1, - sym_statement_block, + anon_sym_EQ_GT, + [161400] = 3, + ACTIONS(8764), 1, + anon_sym_SEMI, + ACTIONS(8766), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161380] = 3, - ACTIONS(7293), 1, + [161411] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2712), 1, + STATE(2685), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161391] = 2, + [161422] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8772), 2, + ACTIONS(8768), 2, anon_sym_COMMA, anon_sym_RBRACK, - [161400] = 2, + [161431] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8515), 2, + ACTIONS(8511), 2, anon_sym_COMMA, anon_sym_RBRACK, - [161409] = 3, - ACTIONS(6757), 1, + [161440] = 3, + ACTIONS(6741), 1, anon_sym_LBRACE, - STATE(1699), 1, + STATE(2356), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161420] = 3, - ACTIONS(4331), 1, + [161451] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(1700), 1, + STATE(2696), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161431] = 3, - ACTIONS(4331), 1, + [161462] = 3, + ACTIONS(4352), 1, anon_sym_LBRACE, - STATE(1701), 1, + STATE(2293), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161442] = 3, - ACTIONS(8774), 1, - sym_identifier, - ACTIONS(8776), 1, - sym_private_property_identifier, + [161473] = 3, + ACTIONS(6771), 1, + anon_sym_LBRACE, + STATE(1699), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161453] = 3, - ACTIONS(4335), 1, + [161484] = 3, + ACTIONS(4348), 1, anon_sym_LBRACE, - STATE(2237), 1, + STATE(1700), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161464] = 3, - ACTIONS(7293), 1, + [161495] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2707), 1, + STATE(2701), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161475] = 3, - ACTIONS(6757), 1, + [161506] = 3, + ACTIONS(4348), 1, anon_sym_LBRACE, - STATE(1702), 1, - sym_class_body, + STATE(1701), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161486] = 3, - ACTIONS(6900), 1, + [161517] = 3, + ACTIONS(8770), 1, + sym_identifier, + ACTIONS(8772), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [161528] = 3, + ACTIONS(6856), 1, anon_sym_LBRACE, - STATE(893), 1, + STATE(894), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161497] = 3, - ACTIONS(6733), 1, + [161539] = 3, + ACTIONS(6741), 1, anon_sym_LBRACE, - STATE(2276), 1, + STATE(2277), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161508] = 2, + [161550] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8778), 2, + ACTIONS(8774), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161517] = 3, - ACTIONS(8666), 1, + [161559] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8776), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161568] = 3, + ACTIONS(6771), 1, anon_sym_LBRACE, - STATE(4079), 1, - sym_enum_body, + STATE(1702), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161528] = 3, + [161579] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8778), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161588] = 3, ACTIONS(8780), 1, sym_identifier, ACTIONS(8782), 1, @@ -271306,324 +271351,308 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [161539] = 3, - ACTIONS(4335), 1, + [161599] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2160), 1, + STATE(2680), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161550] = 3, - ACTIONS(1721), 1, - anon_sym_LBRACE, - STATE(224), 1, - sym_statement_block, + [161610] = 3, + ACTIONS(8784), 1, + anon_sym_COMMA, + ACTIONS(8786), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161561] = 3, - ACTIONS(4335), 1, - anon_sym_LBRACE, - STATE(2293), 1, - sym_statement_block, + [161621] = 3, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(8790), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161572] = 2, + [161632] = 3, + ACTIONS(6771), 1, + anon_sym_LBRACE, + STATE(1723), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8784), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161581] = 3, - ACTIONS(8786), 1, - anon_sym_SEMI, - ACTIONS(8788), 1, - sym__automatic_semicolon, + [161643] = 3, + ACTIONS(6486), 1, + anon_sym_LPAREN, + STATE(3334), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161592] = 3, - ACTIONS(7293), 1, + [161654] = 3, + ACTIONS(1721), 1, anon_sym_LBRACE, - STATE(2699), 1, + STATE(224), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161603] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8790), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [161612] = 3, - ACTIONS(6868), 1, + [161665] = 3, + ACTIONS(4352), 1, anon_sym_LBRACE, - STATE(4152), 1, - sym_class_body, + STATE(2223), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161623] = 3, + [161676] = 3, ACTIONS(8792), 1, - anon_sym_COMMA, + anon_sym_SEMI, ACTIONS(8794), 1, - anon_sym_from, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161634] = 3, - ACTIONS(8796), 1, - sym_identifier, - ACTIONS(8798), 1, - sym_private_property_identifier, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161645] = 3, + [161687] = 3, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5224), 1, + STATE(5239), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161656] = 3, - ACTIONS(4335), 1, + [161698] = 3, + ACTIONS(6942), 1, anon_sym_LBRACE, - STATE(2223), 1, - sym_statement_block, + STATE(236), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161667] = 3, - ACTIONS(8800), 1, - sym_identifier, - ACTIONS(8802), 1, - sym_private_property_identifier, + [161709] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161678] = 3, - ACTIONS(8804), 1, - sym_identifier, - ACTIONS(8806), 1, - sym_private_property_identifier, + ACTIONS(8796), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [161718] = 3, + ACTIONS(7273), 1, + anon_sym_LBRACE, + STATE(2676), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161689] = 3, - ACTIONS(6898), 1, + [161729] = 3, + ACTIONS(6856), 1, anon_sym_LBRACE, - STATE(237), 1, + STATE(913), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161700] = 3, - ACTIONS(6900), 1, - anon_sym_LBRACE, - STATE(912), 1, - sym_class_body, + [161740] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161711] = 3, - ACTIONS(8736), 1, - anon_sym_LPAREN, - STATE(49), 1, - sym_parenthesized_expression, + ACTIONS(8798), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [161749] = 3, + ACTIONS(8800), 1, + sym_identifier, + ACTIONS(8802), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161722] = 2, + [161760] = 3, + ACTIONS(8804), 1, + sym_identifier, + ACTIONS(8806), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8808), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [161731] = 3, - ACTIONS(7293), 1, + [161771] = 3, + ACTIONS(7028), 1, anon_sym_LBRACE, - STATE(2674), 1, + STATE(803), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161742] = 3, - ACTIONS(7040), 1, + [161782] = 3, + ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(797), 1, + STATE(5257), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161753] = 3, - ACTIONS(8238), 1, - sym_identifier, - ACTIONS(8242), 1, - sym_private_property_identifier, + [161793] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161764] = 3, - ACTIONS(6868), 1, + ACTIONS(8808), 2, + anon_sym_COMMA, + anon_sym_GT, + [161802] = 3, + ACTIONS(6832), 1, anon_sym_LBRACE, - STATE(795), 1, + STATE(802), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161775] = 2, + [161813] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6046), 2, + ACTIONS(6057), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161784] = 3, + [161822] = 3, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5202), 1, + STATE(5214), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161795] = 2, + [161833] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6038), 2, + ACTIONS(6022), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161804] = 3, + [161842] = 3, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5208), 1, + STATE(5218), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161815] = 3, - ACTIONS(4633), 1, + [161853] = 3, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(2350), 1, - sym_arguments, + STATE(3955), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161826] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3957), 1, - sym_formal_parameters, + [161864] = 3, + ACTIONS(7273), 1, + anon_sym_LBRACE, + STATE(2677), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161837] = 2, + [161875] = 3, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(5708), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8810), 2, - anon_sym_COMMA, - anon_sym_GT, - [161846] = 3, - ACTIONS(4335), 1, + [161886] = 3, + ACTIONS(4352), 1, anon_sym_LBRACE, - STATE(2125), 1, + STATE(2128), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161857] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2675), 1, - sym_statement_block, + [161897] = 3, + ACTIONS(8810), 1, + sym_identifier, + ACTIONS(8812), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161868] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5660), 1, - sym_formal_parameters, + [161908] = 3, + ACTIONS(6741), 1, + anon_sym_LBRACE, + STATE(2131), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161879] = 3, - ACTIONS(6733), 1, + [161919] = 3, + ACTIONS(6832), 1, anon_sym_LBRACE, - STATE(2131), 1, + STATE(4152), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161890] = 2, + [161930] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8812), 2, + ACTIONS(8814), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161899] = 2, + [161939] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8814), 2, + ACTIONS(8816), 2, anon_sym_COMMA, anon_sym_RBRACE, - [161908] = 2, + [161948] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4625), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161917] = 3, - ACTIONS(8816), 1, - sym_identifier, - ACTIONS(8818), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [161928] = 3, - ACTIONS(7293), 1, + [161957] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2676), 1, + STATE(2678), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161939] = 2, + [161968] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4549), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161948] = 2, + [161977] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(4553), 2, sym__automatic_semicolon, anon_sym_SEMI, - [161957] = 3, - ACTIONS(8820), 1, + [161986] = 3, + ACTIONS(8818), 1, sym_identifier, - ACTIONS(8822), 1, + ACTIONS(8820), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161968] = 3, + [161997] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(8822), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [162006] = 3, ACTIONS(8824), 1, sym_identifier, ACTIONS(8826), 1, @@ -271631,15 +271660,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [161979] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(3840), 1, - sym_formal_parameters, + [162017] = 3, + ACTIONS(7749), 1, + anon_sym_in, + ACTIONS(7751), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - [161990] = 3, + [162028] = 3, ACTIONS(8828), 1, sym_identifier, ACTIONS(8830), 1, @@ -271647,987 +271676,951 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [162001] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8832), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [162010] = 3, - ACTIONS(7753), 1, - anon_sym_in, - ACTIONS(7755), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162021] = 3, - ACTIONS(8834), 1, - sym_identifier, - ACTIONS(8836), 1, - sym_private_property_identifier, + [162039] = 3, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(3842), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162032] = 3, - ACTIONS(8838), 1, + [162050] = 3, + ACTIONS(8832), 1, sym_identifier, - ACTIONS(8840), 1, + ACTIONS(8834), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162043] = 3, - ACTIONS(8842), 1, + [162061] = 3, + ACTIONS(8836), 1, sym_identifier, - ACTIONS(8844), 1, + ACTIONS(8838), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162054] = 3, - ACTIONS(6757), 1, + [162072] = 3, + ACTIONS(6771), 1, anon_sym_LBRACE, - STATE(2599), 1, + STATE(2536), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162065] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(740), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162076] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(8165), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [162085] = 3, - ACTIONS(8736), 1, - anon_sym_LPAREN, - STATE(55), 1, - sym_parenthesized_expression, + [162083] = 3, + ACTIONS(8840), 1, + sym_identifier, + ACTIONS(8842), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162096] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2678), 1, - sym_statement_block, + [162094] = 3, + ACTIONS(8844), 1, + sym_identifier, + ACTIONS(8846), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162107] = 3, - ACTIONS(7293), 1, + [162105] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2692), 1, + STATE(2688), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162118] = 3, + [162116] = 3, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(802), 1, + STATE(804), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162129] = 3, - ACTIONS(2482), 1, - anon_sym_LBRACE, - STATE(774), 1, - sym_statement_block, + [162127] = 3, + ACTIONS(8848), 1, + sym_identifier, + ACTIONS(8850), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162140] = 3, - ACTIONS(6898), 1, + [162138] = 3, + ACTIONS(6942), 1, anon_sym_LBRACE, STATE(217), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162151] = 3, - ACTIONS(6733), 1, + [162149] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2289), 1, - sym_class_body, + STATE(2693), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162162] = 2, + [162160] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6034), 2, + ACTIONS(8852), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [162171] = 3, - ACTIONS(2482), 1, + anon_sym_RPAREN, + [162169] = 3, + ACTIONS(6741), 1, anon_sym_LBRACE, - STATE(887), 1, - sym_statement_block, + STATE(2290), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162182] = 3, - ACTIONS(4335), 1, + [162180] = 3, + ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(2295), 1, + STATE(888), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162193] = 3, - ACTIONS(8846), 1, - sym_identifier, - ACTIONS(8848), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162204] = 3, - ACTIONS(6733), 1, + [162191] = 3, + ACTIONS(4352), 1, anon_sym_LBRACE, - STATE(2243), 1, - sym_class_body, + STATE(2297), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162215] = 3, - ACTIONS(7839), 1, + [162202] = 3, + ACTIONS(7879), 1, anon_sym_from, - STATE(4150), 1, + STATE(4147), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162226] = 3, - ACTIONS(8850), 1, - sym_identifier, - ACTIONS(8852), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162237] = 3, - ACTIONS(8854), 1, - sym_identifier, - ACTIONS(8856), 1, - sym_private_property_identifier, + [162213] = 3, + ACTIONS(8714), 1, + anon_sym_LPAREN, + STATE(65), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162248] = 3, - ACTIONS(8575), 1, - sym_identifier, - ACTIONS(8579), 1, - sym_private_property_identifier, + [162224] = 3, + ACTIONS(6832), 1, + anon_sym_LBRACE, + STATE(4241), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162259] = 3, - ACTIONS(6868), 1, + [162235] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(4241), 1, - sym_class_body, + STATE(2697), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162270] = 3, - ACTIONS(8858), 1, + [162246] = 3, + ACTIONS(8571), 1, sym_identifier, - ACTIONS(8860), 1, + ACTIONS(8575), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162281] = 3, - ACTIONS(8862), 1, - sym_identifier, - ACTIONS(8864), 1, - sym_private_property_identifier, + [162257] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162292] = 3, - ACTIONS(8866), 1, + ACTIONS(8854), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [162266] = 3, + ACTIONS(8856), 1, anon_sym_SEMI, - ACTIONS(8868), 1, + ACTIONS(8858), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162303] = 3, - ACTIONS(6468), 1, + [162277] = 3, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5570), 1, + STATE(5569), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162314] = 3, - ACTIONS(8214), 1, + [162288] = 3, + ACTIONS(8860), 1, sym_identifier, - ACTIONS(8218), 1, + ACTIONS(8862), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162325] = 3, - ACTIONS(8870), 1, + [162299] = 3, + ACTIONS(8864), 1, anon_sym_in, - ACTIONS(8872), 1, + ACTIONS(8866), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162336] = 3, - ACTIONS(8874), 1, + [162310] = 3, + ACTIONS(8868), 1, sym_identifier, - ACTIONS(8876), 1, + ACTIONS(8870), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162347] = 3, - ACTIONS(8878), 1, + [162321] = 3, + ACTIONS(8872), 1, sym_identifier, - ACTIONS(8880), 1, + ACTIONS(8874), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162358] = 3, - ACTIONS(8882), 1, + [162332] = 3, + ACTIONS(8876), 1, sym_identifier, - ACTIONS(8884), 1, + ACTIONS(8878), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162369] = 3, - ACTIONS(8886), 1, + [162343] = 3, + ACTIONS(8880), 1, sym_identifier, - ACTIONS(8888), 1, + ACTIONS(8882), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162380] = 2, + [162354] = 3, + ACTIONS(8884), 1, + sym_identifier, + ACTIONS(8886), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6054), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162389] = 3, - ACTIONS(8890), 1, + [162365] = 3, + ACTIONS(8888), 1, sym_identifier, - STATE(4611), 1, + STATE(4609), 1, sym_nested_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162400] = 3, - ACTIONS(8892), 1, + [162376] = 3, + ACTIONS(8890), 1, sym_identifier, - ACTIONS(8894), 1, + ACTIONS(8892), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162411] = 2, + [162387] = 3, + ACTIONS(6741), 1, + anon_sym_LBRACE, + STATE(2291), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7432), 2, + [162398] = 3, + ACTIONS(6741), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [162420] = 3, - ACTIONS(8896), 1, - sym_identifier, - ACTIONS(8898), 1, - sym_private_property_identifier, + STATE(2245), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162431] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2682), 1, - sym_statement_block, + [162409] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162442] = 3, - ACTIONS(8900), 1, - sym_identifier, - ACTIONS(8902), 1, - sym_private_property_identifier, + ACTIONS(6079), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162418] = 3, + ACTIONS(7273), 1, + anon_sym_LBRACE, + STATE(2669), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162453] = 3, - ACTIONS(6468), 1, + [162429] = 3, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5696), 1, + STATE(5697), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162464] = 3, - ACTIONS(6733), 1, - anon_sym_LBRACE, - STATE(2327), 1, - sym_class_body, + [162440] = 3, + ACTIONS(8210), 1, + sym_identifier, + ACTIONS(8214), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162475] = 3, - ACTIONS(6733), 1, - anon_sym_LBRACE, - STATE(2232), 1, - sym_class_body, + [162451] = 3, + ACTIONS(8894), 1, + sym_identifier, + ACTIONS(8896), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162486] = 3, - ACTIONS(6868), 1, + [162462] = 3, + ACTIONS(6741), 1, anon_sym_LBRACE, - STATE(4248), 1, + STATE(2328), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162497] = 3, - ACTIONS(6757), 1, + [162473] = 3, + ACTIONS(6741), 1, anon_sym_LBRACE, - STATE(1681), 1, + STATE(2233), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162508] = 3, - ACTIONS(8904), 1, - sym_identifier, - ACTIONS(8906), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162519] = 2, + [162484] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(5999), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162528] = 3, + [162493] = 3, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5180), 1, + STATE(5167), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162539] = 3, - ACTIONS(8908), 1, - sym_identifier, - ACTIONS(8910), 1, - sym_private_property_identifier, + [162504] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162550] = 2, + ACTIONS(6049), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162513] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6042), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [162559] = 3, - ACTIONS(4331), 1, + ACTIONS(7429), 2, anon_sym_LBRACE, - STATE(1683), 1, + anon_sym_EQ_GT, + [162522] = 3, + ACTIONS(4352), 1, + anon_sym_LBRACE, + STATE(2240), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162570] = 3, + [162533] = 3, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5182), 1, + STATE(5177), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162581] = 2, + [162544] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8912), 2, + ACTIONS(8898), 2, sym__automatic_semicolon, anon_sym_SEMI, - [162590] = 2, + [162553] = 3, + ACTIONS(6832), 1, + anon_sym_LBRACE, + STATE(4248), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8914), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [162599] = 3, - ACTIONS(8916), 1, - sym_identifier, - ACTIONS(8918), 1, - sym_private_property_identifier, + [162564] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162610] = 3, - ACTIONS(8920), 1, + ACTIONS(8900), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162573] = 3, + ACTIONS(8902), 1, sym_identifier, - ACTIONS(8922), 1, + ACTIONS(8904), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162621] = 3, - ACTIONS(4331), 1, + [162584] = 3, + ACTIONS(6771), 1, anon_sym_LBRACE, - STATE(1686), 1, - sym_statement_block, + STATE(2544), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162632] = 3, - ACTIONS(6468), 1, + [162595] = 3, + ACTIONS(6476), 1, anon_sym_LPAREN, STATE(5745), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162643] = 3, - ACTIONS(6868), 1, + [162606] = 3, + ACTIONS(8906), 1, + sym_identifier, + ACTIONS(8908), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162617] = 3, + ACTIONS(8910), 1, + sym_identifier, + ACTIONS(8912), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162628] = 3, + ACTIONS(6832), 1, anon_sym_LBRACE, STATE(4251), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162654] = 3, - ACTIONS(6468), 1, + [162639] = 3, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(3971), 1, + STATE(3969), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162665] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2681), 1, - sym_statement_block, + [162650] = 3, + ACTIONS(8914), 1, + sym_identifier, + ACTIONS(8916), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162676] = 3, - ACTIONS(7293), 1, + [162661] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2689), 1, + STATE(2682), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162687] = 3, - ACTIONS(6733), 1, + [162672] = 3, + ACTIONS(6771), 1, anon_sym_LBRACE, - STATE(2306), 1, + STATE(1681), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162698] = 3, - ACTIONS(8924), 1, - sym_identifier, - ACTIONS(8926), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162709] = 3, - ACTIONS(8736), 1, - anon_sym_LPAREN, - STATE(65), 1, - sym_parenthesized_expression, + [162683] = 3, + ACTIONS(4348), 1, + anon_sym_LBRACE, + STATE(1683), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162720] = 3, - ACTIONS(6468), 1, + [162694] = 3, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5596), 1, + STATE(5595), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162731] = 3, - ACTIONS(7293), 1, + [162705] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2704), 1, + STATE(2657), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162742] = 2, + [162716] = 3, + ACTIONS(8918), 1, + sym_identifier, + ACTIONS(8920), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8928), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162751] = 3, - ACTIONS(4335), 1, + [162727] = 3, + ACTIONS(8922), 1, + sym_identifier, + ACTIONS(8924), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162738] = 3, + ACTIONS(6741), 1, anon_sym_LBRACE, - STATE(2312), 1, - sym_statement_block, + STATE(2307), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162762] = 3, - ACTIONS(4331), 1, + [162749] = 3, + ACTIONS(4348), 1, anon_sym_LBRACE, STATE(1704), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162773] = 3, - ACTIONS(7293), 1, + [162760] = 3, + ACTIONS(8926), 1, + sym_identifier, + ACTIONS(8928), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [162771] = 3, + ACTIONS(7028), 1, anon_sym_LBRACE, - STATE(2691), 1, + STATE(3976), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162784] = 3, - ACTIONS(7293), 1, + [162782] = 3, + ACTIONS(6771), 1, anon_sym_LBRACE, - STATE(2697), 1, - sym_statement_block, + STATE(1705), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162795] = 2, + [162793] = 3, + ACTIONS(8930), 1, + sym_identifier, + ACTIONS(8932), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8930), 2, - anon_sym_COMMA, - anon_sym_RBRACE, [162804] = 3, - ACTIONS(7040), 1, + ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(3978), 1, + STATE(737), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, [162815] = 3, - ACTIONS(6757), 1, + ACTIONS(4352), 1, anon_sym_LBRACE, - STATE(1705), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162826] = 2, + STATE(2313), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5057), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162835] = 3, - ACTIONS(6757), 1, + [162826] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2541), 1, - sym_class_body, + STATE(2715), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162846] = 3, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2683), 1, - sym_statement_block, + [162837] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162857] = 2, + ACTIONS(8372), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162846] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8382), 2, + ACTIONS(8934), 2, anon_sym_COMMA, anon_sym_RBRACE, - [162866] = 3, - ACTIONS(6757), 1, + [162855] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(1693), 1, - sym_class_body, + STATE(2675), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162877] = 3, - ACTIONS(7293), 1, + [162866] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2696), 1, + STATE(2714), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162888] = 2, + [162877] = 3, + ACTIONS(7273), 1, + anon_sym_LBRACE, + STATE(2692), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(5055), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [162897] = 3, - ACTIONS(6733), 1, - anon_sym_LBRACE, - STATE(2291), 1, - sym_class_body, + [162888] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162908] = 2, + ACTIONS(8936), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [162897] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8932), 2, + ACTIONS(8173), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [162917] = 3, - ACTIONS(6868), 1, + anon_sym_RBRACK, + [162906] = 3, + ACTIONS(6832), 1, anon_sym_LBRACE, - STATE(778), 1, + STATE(791), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162928] = 3, - ACTIONS(7040), 1, + [162917] = 3, + ACTIONS(7028), 1, anon_sym_LBRACE, - STATE(3983), 1, + STATE(3981), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162939] = 3, - ACTIONS(6733), 1, + [162928] = 3, + ACTIONS(6741), 1, anon_sym_LBRACE, - STATE(2313), 1, + STATE(2314), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162950] = 3, - ACTIONS(8934), 1, - sym_identifier, - ACTIONS(8936), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [162961] = 3, - ACTIONS(4331), 1, + [162939] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(1695), 1, + STATE(2711), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162972] = 2, + [162950] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(7434), 2, + ACTIONS(8938), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [162959] = 3, + ACTIONS(6771), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [162981] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(5737), 1, - sym_formal_parameters, + STATE(1693), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [162992] = 2, + [162970] = 3, + ACTIONS(8714), 1, + anon_sym_LPAREN, + STATE(55), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(8938), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [163001] = 3, - ACTIONS(7040), 1, + [162981] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(803), 1, + STATE(2656), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163012] = 3, - ACTIONS(7293), 1, + [162992] = 3, + ACTIONS(7028), 1, anon_sym_LBRACE, - STATE(2658), 1, + STATE(795), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163023] = 3, - ACTIONS(6868), 1, + [163003] = 3, + ACTIONS(6832), 1, anon_sym_LBRACE, - STATE(787), 1, + STATE(778), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163034] = 3, - ACTIONS(6868), 1, + [163014] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(4263), 1, - sym_class_body, + STATE(2708), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163045] = 2, + [163025] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, ACTIONS(8940), 2, sym__automatic_semicolon, anon_sym_SEMI, - [163054] = 3, + [163034] = 3, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5328), 1, + STATE(5332), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163065] = 3, - ACTIONS(7293), 1, + [163045] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, STATE(2703), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163076] = 3, - ACTIONS(8736), 1, + [163056] = 3, + ACTIONS(3535), 1, anon_sym_LPAREN, - STATE(5239), 1, - sym_parenthesized_expression, + STATE(1271), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163087] = 3, - ACTIONS(3535), 1, + [163067] = 3, + ACTIONS(8714), 1, anon_sym_LPAREN, - STATE(1253), 1, - sym_arguments, + STATE(5241), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163098] = 2, + [163078] = 3, + ACTIONS(4348), 1, + anon_sym_LBRACE, + STATE(1686), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163089] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6015), 2, + ACTIONS(6014), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163107] = 3, - ACTIONS(7293), 1, + [163098] = 3, + ACTIONS(6832), 1, anon_sym_LBRACE, - STATE(2656), 1, - sym_statement_block, + STATE(4262), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163118] = 3, - ACTIONS(4335), 1, + [163109] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2240), 1, + STATE(2709), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163129] = 3, - ACTIONS(7293), 1, + [163120] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2715), 1, + STATE(2704), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163140] = 3, + [163131] = 3, ACTIONS(2482), 1, anon_sym_LBRACE, - STATE(5330), 1, + STATE(5334), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163151] = 3, - ACTIONS(8942), 1, - sym_identifier, - ACTIONS(8944), 1, - sym_private_property_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163162] = 3, - ACTIONS(6062), 1, - anon_sym_LPAREN, - STATE(2812), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [163173] = 3, - ACTIONS(6733), 1, + [163142] = 3, + ACTIONS(4348), 1, anon_sym_LBRACE, - STATE(2129), 1, - sym_class_body, + STATE(1695), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163184] = 2, + [163153] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(6060), 2, + ACTIONS(6075), 2, anon_sym_COMMA, anon_sym_RBRACE, - [163193] = 3, - ACTIONS(4331), 1, - anon_sym_LBRACE, - STATE(1697), 1, - sym_statement_block, + [163162] = 3, + ACTIONS(8942), 1, + sym_identifier, + ACTIONS(8944), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163204] = 3, - ACTIONS(6733), 1, - anon_sym_LBRACE, - STATE(2329), 1, - sym_class_body, + [163173] = 3, + ACTIONS(6478), 1, + anon_sym_COLON, + STATE(4756), 1, + sym_type_annotation, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163215] = 3, - ACTIONS(6468), 1, + [163184] = 3, + ACTIONS(6476), 1, anon_sym_LPAREN, STATE(5666), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163226] = 3, - ACTIONS(6468), 1, - anon_sym_LPAREN, - STATE(4347), 1, - sym_formal_parameters, + [163195] = 3, + ACTIONS(6741), 1, + anon_sym_LBRACE, + STATE(2330), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163237] = 3, - ACTIONS(6468), 1, + [163206] = 3, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(5682), 1, + STATE(4346), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163248] = 3, - ACTIONS(4335), 1, - anon_sym_LBRACE, - STATE(2330), 1, - sym_statement_block, + [163217] = 3, + ACTIONS(6476), 1, + anon_sym_LPAREN, + STATE(5682), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163259] = 3, - ACTIONS(7293), 1, + [163228] = 3, + ACTIONS(4352), 1, anon_sym_LBRACE, - STATE(2710), 1, + STATE(2331), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163270] = 3, - ACTIONS(6468), 1, + [163239] = 3, + ACTIONS(6476), 1, anon_sym_LPAREN, - STATE(4350), 1, + STATE(4349), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163281] = 3, - ACTIONS(6468), 1, + [163250] = 3, + ACTIONS(6476), 1, anon_sym_LPAREN, STATE(5694), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163292] = 3, - ACTIONS(4335), 1, + [163261] = 3, + ACTIONS(4352), 1, anon_sym_LBRACE, - STATE(2331), 1, + STATE(2332), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163303] = 3, - ACTIONS(7293), 1, + [163272] = 3, + ACTIONS(6741), 1, + anon_sym_LBRACE, + STATE(2130), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163283] = 3, + ACTIONS(6741), 1, + anon_sym_LBRACE, + STATE(2333), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [163294] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, STATE(2652), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163314] = 3, - ACTIONS(6733), 1, + [163305] = 3, + ACTIONS(4348), 1, anon_sym_LBRACE, - STATE(2332), 1, - sym_class_body, + STATE(1697), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163325] = 3, - ACTIONS(7293), 1, + [163316] = 3, + ACTIONS(7273), 1, anon_sym_LBRACE, - STATE(2680), 1, + STATE(2683), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163336] = 3, + [163327] = 3, ACTIONS(8946), 1, anon_sym_SEMI, ACTIONS(8948), 1, @@ -272635,6 +272628,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, + [163338] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(7431), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, [163347] = 3, ACTIONS(8950), 1, sym_identifier, @@ -272644,16 +272644,16 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, sym_comment, [163358] = 3, - ACTIONS(2482), 1, + ACTIONS(8664), 1, anon_sym_LBRACE, - STATE(5365), 1, - sym_statement_block, + STATE(4077), 1, + sym_enum_body, ACTIONS(5), 2, sym_html_comment, sym_comment, [163369] = 2, ACTIONS(8954), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -272665,120 +272665,120 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, [163385] = 2, ACTIONS(8958), 1, - sym_number, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163393] = 2, + [163393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(8960), 1, - sym_identifier, + sym_regex_pattern, + [163403] = 2, + ACTIONS(8962), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163401] = 2, - ACTIONS(7238), 1, - anon_sym_EQ, + [163411] = 2, + ACTIONS(8964), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163409] = 2, - ACTIONS(8962), 1, - anon_sym_RBRACK, + [163419] = 2, + ACTIONS(5294), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163417] = 2, - ACTIONS(8964), 1, - anon_sym_EQ, + [163427] = 2, + ACTIONS(8966), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163425] = 2, - ACTIONS(8966), 1, - anon_sym_function, + [163435] = 2, + ACTIONS(8968), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163433] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8968), 1, - sym_regex_pattern, [163443] = 2, - ACTIONS(5482), 1, - anon_sym_COLON, + ACTIONS(8970), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, [163451] = 2, - ACTIONS(5659), 1, + ACTIONS(5661), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, [163459] = 2, - ACTIONS(8970), 1, + ACTIONS(8972), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [163467] = 2, - ACTIONS(8972), 1, - anon_sym_as, + ACTIONS(8974), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [163475] = 2, - ACTIONS(8974), 1, + ACTIONS(8976), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [163483] = 2, - ACTIONS(8976), 1, + ACTIONS(8978), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [163491] = 2, - ACTIONS(8978), 1, + ACTIONS(8980), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [163499] = 2, - ACTIONS(8980), 1, - sym_identifier, + ACTIONS(8982), 1, + anon_sym_require, ACTIONS(5), 2, sym_html_comment, sym_comment, [163507] = 2, - ACTIONS(8982), 1, - anon_sym_DOT, + ACTIONS(8984), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163515] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8984), 1, - sym_regex_pattern, - [163525] = 2, - ACTIONS(8986), 1, - anon_sym_from, + [163515] = 2, + ACTIONS(5480), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163533] = 2, - ACTIONS(8988), 1, - anon_sym_COLON, + [163523] = 2, + ACTIONS(8986), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, + [163531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8988), 1, + sym_regex_pattern, [163541] = 2, ACTIONS(8990), 1, sym_identifier, @@ -272787,7 +272787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, [163549] = 2, ACTIONS(8992), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -272799,73 +272799,73 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, [163565] = 2, ACTIONS(8996), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163573] = 2, ACTIONS(8998), 1, - anon_sym_while, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [163581] = 2, ACTIONS(9000), 1, - sym_identifier, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, [163589] = 2, ACTIONS(9002), 1, - sym_identifier, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163597] = 2, ACTIONS(9004), 1, - anon_sym_RBRACK, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, [163605] = 2, - ACTIONS(5419), 1, - anon_sym_SEMI, + ACTIONS(9006), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163613] = 2, - ACTIONS(9006), 1, - sym_identifier, + ACTIONS(5361), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163621] = 2, - ACTIONS(9008), 1, - anon_sym_RBRACK, + ACTIONS(5482), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, [163629] = 2, - ACTIONS(9010), 1, - anon_sym_EQ_GT, + ACTIONS(9008), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [163637] = 2, - ACTIONS(9012), 1, - anon_sym_EQ_GT, + ACTIONS(9010), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [163645] = 2, - ACTIONS(9014), 1, - anon_sym_from, + ACTIONS(9012), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [163653] = 2, - ACTIONS(5484), 1, - anon_sym_RPAREN, + ACTIONS(9014), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -272876,153 +272876,153 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, sym_comment, [163669] = 2, - ACTIONS(8208), 1, - anon_sym_RBRACK, + ACTIONS(9018), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [163677] = 2, - ACTIONS(9018), 1, - anon_sym_target, + ACTIONS(9020), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9020), 1, - sym_regex_pattern, - [163695] = 2, + [163685] = 2, ACTIONS(9022), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163703] = 2, + [163693] = 2, ACTIONS(9024), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163711] = 2, + [163701] = 2, ACTIONS(9026), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [163719] = 2, + [163709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(9028), 1, - anon_sym_require, + sym_regex_pattern, + [163719] = 2, + ACTIONS(9030), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163727] = 2, - ACTIONS(9030), 1, - sym_identifier, + ACTIONS(9032), 1, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, [163735] = 2, - ACTIONS(8543), 1, - anon_sym_RBRACK, + ACTIONS(9034), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, [163743] = 2, - ACTIONS(9032), 1, - anon_sym_RBRACK, + ACTIONS(9036), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [163751] = 2, - ACTIONS(9034), 1, - anon_sym_EQ_GT, + ACTIONS(9038), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163759] = 2, - ACTIONS(9036), 1, - anon_sym_RBRACK, + ACTIONS(4736), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, [163767] = 2, - ACTIONS(5448), 1, + ACTIONS(5442), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163775] = 2, - ACTIONS(9038), 1, - anon_sym_RBRACK, + ACTIONS(9040), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [163783] = 2, - ACTIONS(9040), 1, + ACTIONS(9042), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163791] = 2, - ACTIONS(9042), 1, + ACTIONS(9044), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163799] = 2, - ACTIONS(9044), 1, - sym_identifier, + ACTIONS(9046), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163807] = 2, - ACTIONS(9046), 1, + ACTIONS(9048), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [163815] = 2, - ACTIONS(9048), 1, + ACTIONS(9050), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163823] = 2, - ACTIONS(9050), 1, - anon_sym_EQ_GT, + ACTIONS(9052), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, [163831] = 2, - ACTIONS(8104), 1, - anon_sym_RBRACK, + ACTIONS(9054), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [163839] = 2, - ACTIONS(9052), 1, + ACTIONS(8104), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163847] = 2, - ACTIONS(9054), 1, - sym_identifier, + ACTIONS(9056), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163855] = 2, - ACTIONS(8142), 1, + ACTIONS(8551), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163863] = 2, - ACTIONS(9056), 1, - anon_sym_from, + ACTIONS(9058), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -273033,68 +273033,68 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, sym_comment, [163879] = 2, - ACTIONS(9058), 1, + ACTIONS(9060), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [163887] = 2, - ACTIONS(9060), 1, - anon_sym_EQ_GT, + ACTIONS(9062), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, [163895] = 2, - ACTIONS(9062), 1, + ACTIONS(9064), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [163903] = 2, - ACTIONS(9064), 1, + ACTIONS(9066), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [163911] = 2, - ACTIONS(9066), 1, + ACTIONS(9068), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [163919] = 2, - ACTIONS(9068), 1, - sym_identifier, + ACTIONS(9070), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163927] = 2, - ACTIONS(9070), 1, - anon_sym_from, + ACTIONS(9072), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163935] = 2, - ACTIONS(9072), 1, + ACTIONS(9074), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [163943] = 2, - ACTIONS(9074), 1, - anon_sym_from, + ACTIONS(9076), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [163951] = 2, - ACTIONS(9076), 1, - anon_sym_RBRACK, + ACTIONS(5419), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, [163959] = 2, ACTIONS(9078), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -273112,7 +273112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, [163983] = 2, ACTIONS(9084), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -273123,73 +273123,73 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, sym_comment, [163999] = 2, - ACTIONS(4979), 1, - anon_sym_RPAREN, + ACTIONS(9088), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [164007] = 2, - ACTIONS(9088), 1, - anon_sym_RBRACK, + ACTIONS(9090), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [164015] = 2, - ACTIONS(9090), 1, - anon_sym_RBRACK, + ACTIONS(9092), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, [164023] = 2, - ACTIONS(9092), 1, - sym_identifier, + ACTIONS(9094), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, [164031] = 2, - ACTIONS(9094), 1, + ACTIONS(9096), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, [164039] = 2, - ACTIONS(9096), 1, + ACTIONS(9098), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [164047] = 2, - ACTIONS(9098), 1, + ACTIONS(9100), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, [164055] = 2, - ACTIONS(9100), 1, + ACTIONS(9102), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [164063] = 2, - ACTIONS(4729), 1, - anon_sym_in, + ACTIONS(9104), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [164071] = 2, - ACTIONS(9102), 1, - anon_sym_EQ_GT, + ACTIONS(6538), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, [164079] = 2, - ACTIONS(9104), 1, + ACTIONS(9106), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [164087] = 2, - ACTIONS(9106), 1, + ACTIONS(9108), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, @@ -273201,84 +273201,84 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, sym_comment, [164103] = 2, - ACTIONS(6520), 1, - anon_sym_is, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164111] = 2, - ACTIONS(9108), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164119] = 2, ACTIONS(9110), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164127] = 2, + [164111] = 2, ACTIONS(9112), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164135] = 2, + [164119] = 2, ACTIONS(9114), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164143] = 2, + [164127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(9116), 1, - anon_sym_EQ, + anon_sym_SLASH2, + [164137] = 2, + ACTIONS(8206), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164151] = 2, + [164145] = 2, ACTIONS(9118), 1, - anon_sym_RBRACK, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164159] = 2, + [164153] = 2, ACTIONS(9120), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164167] = 2, + [164161] = 2, ACTIONS(9122), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164175] = 2, + [164169] = 2, ACTIONS(9124), 1, - anon_sym_EQ, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164177] = 2, + ACTIONS(9126), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164183] = 2, + [164185] = 2, ACTIONS(5542), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164191] = 2, - ACTIONS(5272), 1, + [164193] = 2, + ACTIONS(7482), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164199] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [164201] = 2, + ACTIONS(4980), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9126), 1, - anon_sym_SLASH2, + sym_comment, [164209] = 2, ACTIONS(5544), 1, anon_sym_RPAREN, @@ -273287,7 +273287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, [164217] = 2, ACTIONS(9128), 1, - anon_sym_DOT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -273298,8 +273298,8 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, sym_comment, [164233] = 2, - ACTIONS(8504), 1, - sym_identifier, + ACTIONS(9132), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -273310,8 +273310,8 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, sym_comment, [164249] = 2, - ACTIONS(9132), 1, - sym_identifier, + ACTIONS(5484), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -273323,19 +273323,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, [164265] = 2, ACTIONS(9136), 1, - anon_sym_RBRACK, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, [164273] = 2, ACTIONS(9138), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [164281] = 2, ACTIONS(9140), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -273353,49 +273353,49 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, [164305] = 2, ACTIONS(9146), 1, - anon_sym_COLON, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, [164313] = 2, ACTIONS(9148), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [164321] = 2, ACTIONS(9150), 1, - anon_sym_EQ_GT, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, [164329] = 2, ACTIONS(9152), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [164337] = 2, - ACTIONS(9154), 1, - anon_sym_RBRACK, + ACTIONS(5272), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, [164345] = 2, - ACTIONS(9156), 1, + ACTIONS(9154), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [164353] = 2, - ACTIONS(5486), 1, - anon_sym_RPAREN, + ACTIONS(9156), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, [164361] = 2, ACTIONS(9158), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -273412,8 +273412,8 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, sym_comment, [164385] = 2, - ACTIONS(7879), 1, - anon_sym_EQ_GT, + ACTIONS(7238), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -273443,7 +273443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, [164425] = 2, ACTIONS(9170), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -273453,1021 +273453,1021 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - [164441] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [164441] = 2, + ACTIONS(5486), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, + sym_comment, + [164449] = 2, ACTIONS(9174), 1, - anon_sym_SLASH2, - [164451] = 2, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164457] = 2, ACTIONS(9176), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164459] = 2, + [164465] = 2, + ACTIONS(4837), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164473] = 2, + ACTIONS(4907), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164481] = 2, ACTIONS(9178), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164467] = 2, + [164489] = 2, ACTIONS(9180), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164475] = 2, + [164497] = 2, ACTIONS(9182), 1, - anon_sym_RPAREN, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164483] = 2, + [164505] = 2, ACTIONS(9184), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164513] = 2, + ACTIONS(5367), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164491] = 2, + [164521] = 2, ACTIONS(9186), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164499] = 2, + [164529] = 2, ACTIONS(9188), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164507] = 2, + [164537] = 2, ACTIONS(9190), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164515] = 2, + [164545] = 2, ACTIONS(9192), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164523] = 2, + [164553] = 2, ACTIONS(9194), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164531] = 2, + [164561] = 2, ACTIONS(9196), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164539] = 2, + [164569] = 2, ACTIONS(9198), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164547] = 2, + [164577] = 2, ACTIONS(9200), 1, - anon_sym_LBRACE, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164555] = 2, - ACTIONS(5488), 1, - anon_sym_RPAREN, + [164585] = 2, + ACTIONS(9202), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9202), 1, - sym_regex_pattern, - [164573] = 2, + [164593] = 2, ACTIONS(9204), 1, - anon_sym_RBRACK, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164581] = 2, + [164601] = 2, ACTIONS(9206), 1, - anon_sym_new, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164589] = 2, + [164609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(9208), 1, + sym_regex_pattern, + [164619] = 2, + ACTIONS(8494), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164627] = 2, + ACTIONS(8314), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164597] = 2, + [164635] = 2, ACTIONS(9210), 1, - anon_sym_COLON, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164605] = 2, + [164643] = 2, ACTIONS(9212), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164613] = 2, + [164651] = 2, ACTIONS(9214), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164621] = 2, + [164659] = 2, ACTIONS(9216), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164629] = 2, - ACTIONS(8318), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164637] = 2, + [164667] = 2, ACTIONS(9218), 1, - anon_sym_class, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164645] = 2, + [164675] = 2, ACTIONS(9220), 1, - sym_identifier, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164653] = 2, + [164683] = 2, ACTIONS(9222), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164661] = 2, + [164691] = 2, ACTIONS(9224), 1, - anon_sym_EQ, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164669] = 2, - ACTIONS(5367), 1, - anon_sym_RBRACK, + [164699] = 2, + ACTIONS(9226), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164677] = 2, - ACTIONS(9226), 1, - anon_sym_EQ, + [164707] = 2, + ACTIONS(4926), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164685] = 2, - ACTIONS(9228), 1, - sym_identifier, + [164715] = 2, + ACTIONS(5488), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164693] = 2, - ACTIONS(5304), 1, - anon_sym_SEMI, + [164723] = 2, + ACTIONS(9228), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164701] = 2, + [164731] = 2, ACTIONS(9230), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164709] = 2, + [164739] = 2, ACTIONS(9232), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164717] = 2, + [164747] = 2, ACTIONS(9234), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164725] = 2, - ACTIONS(4881), 1, - anon_sym_RPAREN, + [164755] = 2, + ACTIONS(9236), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164733] = 2, - ACTIONS(9236), 1, - anon_sym_RBRACK, + [164763] = 2, + ACTIONS(9238), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164741] = 2, - ACTIONS(9238), 1, - anon_sym_RBRACK, + [164771] = 2, + ACTIONS(4881), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164749] = 2, + [164779] = 2, ACTIONS(9240), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164757] = 2, + [164787] = 2, ACTIONS(9242), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164765] = 2, + [164795] = 2, ACTIONS(9244), 1, - sym_identifier, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164773] = 2, - ACTIONS(9246), 1, - anon_sym_as, + [164803] = 2, + ACTIONS(5300), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164781] = 2, - ACTIONS(9248), 1, - sym_identifier, + [164811] = 2, + ACTIONS(8132), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164789] = 2, - ACTIONS(8500), 1, - anon_sym_RBRACK, + [164819] = 2, + ACTIONS(9246), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164797] = 2, - ACTIONS(9250), 1, - anon_sym_RPAREN, + [164827] = 2, + ACTIONS(9248), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164805] = 2, - ACTIONS(5490), 1, - anon_sym_SEMI, + [164835] = 2, + ACTIONS(9250), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164813] = 2, + [164843] = 2, ACTIONS(9252), 1, - anon_sym_new, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164821] = 2, + [164851] = 2, ACTIONS(9254), 1, - sym_identifier, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164829] = 2, + [164859] = 2, ACTIONS(9256), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164837] = 2, + [164867] = 2, ACTIONS(9258), 1, - anon_sym_EQ_GT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164845] = 2, - ACTIONS(9260), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, + [164875] = 3, + ACTIONS(3), 1, sym_comment, - [164853] = 2, - ACTIONS(6790), 1, - anon_sym_is, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [164861] = 2, + ACTIONS(9260), 1, + anon_sym_SLASH2, + [164885] = 2, ACTIONS(9262), 1, - anon_sym_class, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164869] = 2, + [164893] = 2, ACTIONS(9264), 1, - anon_sym_RBRACK, + anon_sym_readonly, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164877] = 2, + [164901] = 2, ACTIONS(9266), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164885] = 2, + [164909] = 2, ACTIONS(9268), 1, - anon_sym_EQ_GT, + anon_sym_class, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164893] = 2, + [164917] = 2, ACTIONS(9270), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164901] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, + [164925] = 2, ACTIONS(9272), 1, - anon_sym_SLASH2, - [164911] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [164933] = 2, + ACTIONS(6781), 1, + anon_sym_is, + ACTIONS(5), 2, sym_html_comment, + sym_comment, + [164941] = 2, ACTIONS(9274), 1, - anon_sym_SLASH2, - [164921] = 2, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [164949] = 2, ACTIONS(9276), 1, - anon_sym_as, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164929] = 3, - ACTIONS(3), 1, + [164957] = 2, + ACTIONS(9278), 1, + anon_sym_class, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [164965] = 2, + ACTIONS(5550), 1, + anon_sym_SEMI, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(9278), 1, - sym_regex_pattern, - [164939] = 2, + sym_comment, + [164973] = 2, ACTIONS(9280), 1, - anon_sym_from, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164947] = 2, + [164981] = 2, ACTIONS(9282), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164955] = 2, + [164989] = 2, ACTIONS(9284), 1, - anon_sym_RBRACK, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164963] = 2, + [164997] = 2, ACTIONS(9286), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [164971] = 2, - ACTIONS(5550), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164979] = 2, + [165005] = 2, ACTIONS(9288), 1, - anon_sym_DOT, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164987] = 2, + [165013] = 2, ACTIONS(9290), 1, - sym_number, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [164995] = 2, + [165021] = 2, ACTIONS(9292), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165003] = 2, + [165029] = 2, ACTIONS(9294), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165011] = 2, + [165037] = 2, ACTIONS(9296), 1, - sym_number, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165019] = 2, + [165045] = 2, ACTIONS(9298), 1, - anon_sym_EQ_GT, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165053] = 2, + ACTIONS(7062), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165027] = 2, + [165061] = 2, ACTIONS(9300), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165035] = 2, + [165069] = 2, ACTIONS(9302), 1, - anon_sym_EQ_GT, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165043] = 2, - ACTIONS(9304), 1, + [165077] = 2, + ACTIONS(8500), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165051] = 2, - ACTIONS(9306), 1, - anon_sym_COLON, + [165085] = 2, + ACTIONS(9304), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165059] = 2, - ACTIONS(7076), 1, - anon_sym_is, + [165093] = 2, + ACTIONS(5552), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165067] = 2, - ACTIONS(9308), 1, + [165101] = 2, + ACTIONS(9306), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165075] = 2, - ACTIONS(9310), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165083] = 2, - ACTIONS(9312), 1, + [165109] = 2, + ACTIONS(9308), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165091] = 2, - ACTIONS(7482), 1, - anon_sym_RPAREN, + [165117] = 2, + ACTIONS(9310), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165099] = 2, - ACTIONS(5552), 1, - anon_sym_SEMI, + [165125] = 2, + ACTIONS(9312), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165107] = 2, + [165133] = 2, ACTIONS(9314), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165115] = 2, + [165141] = 2, ACTIONS(9316), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165123] = 2, + [165149] = 2, ACTIONS(9318), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165131] = 2, + [165157] = 2, ACTIONS(9320), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165139] = 2, + [165165] = 2, ACTIONS(9322), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165147] = 2, - ACTIONS(6682), 1, - anon_sym_is, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165155] = 2, + [165173] = 2, ACTIONS(9324), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165163] = 2, - ACTIONS(9326), 1, - anon_sym_target, + [165181] = 2, + ACTIONS(8555), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165171] = 2, + [165189] = 2, ACTIONS(9326), 1, - anon_sym_meta, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165179] = 2, + [165197] = 2, ACTIONS(9328), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165187] = 2, - ACTIONS(8561), 1, - anon_sym_RBRACE, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165195] = 2, + [165205] = 2, ACTIONS(9330), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165203] = 2, + [165213] = 2, ACTIONS(9332), 1, - anon_sym_RPAREN, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165211] = 2, + [165221] = 2, ACTIONS(9334), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165219] = 2, - ACTIONS(9336), 1, - sym_identifier, + [165229] = 2, + ACTIONS(4875), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165227] = 2, - ACTIONS(9338), 1, - anon_sym_RBRACK, + [165237] = 2, + ACTIONS(7783), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165235] = 2, - ACTIONS(9340), 1, - anon_sym_EQ_GT, + [165245] = 2, + ACTIONS(6662), 1, + anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165243] = 2, - ACTIONS(7785), 1, - anon_sym_EQ, + [165253] = 2, + ACTIONS(9336), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165251] = 2, - ACTIONS(9342), 1, + [165261] = 2, + ACTIONS(9338), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165259] = 2, - ACTIONS(9344), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165267] = 2, - ACTIONS(9346), 1, + [165269] = 2, + ACTIONS(9340), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165275] = 2, - ACTIONS(9348), 1, - sym_identifier, + [165277] = 2, + ACTIONS(9342), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165283] = 2, - ACTIONS(7176), 1, + [165285] = 2, + ACTIONS(7182), 1, anon_sym_is, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165291] = 2, - ACTIONS(5274), 1, - anon_sym_RPAREN, - ACTIONS(5), 2, - sym_html_comment, + [165293] = 3, + ACTIONS(3), 1, sym_comment, - [165299] = 2, - ACTIONS(9350), 1, - sym_number, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [165307] = 2, - ACTIONS(9352), 1, - sym_identifier, + ACTIONS(9344), 1, + anon_sym_SLASH2, + [165303] = 2, + ACTIONS(9346), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165315] = 2, - ACTIONS(9354), 1, + [165311] = 2, + ACTIONS(9348), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165323] = 2, - ACTIONS(9356), 1, - anon_sym_readonly, + [165319] = 2, + ACTIONS(9250), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165331] = 2, - ACTIONS(4091), 1, - anon_sym_is, + [165327] = 2, + ACTIONS(9350), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165339] = 2, - ACTIONS(9358), 1, - sym_number, + [165335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9352), 1, + anon_sym_SLASH2, + [165345] = 2, + ACTIONS(9354), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165347] = 2, - ACTIONS(9360), 1, - anon_sym_RBRACK, + [165353] = 2, + ACTIONS(9356), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165355] = 2, - ACTIONS(5456), 1, + [165361] = 2, + ACTIONS(5452), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165363] = 2, - ACTIONS(9362), 1, + [165369] = 2, + ACTIONS(9358), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165371] = 2, - ACTIONS(9364), 1, - sym_identifier, + [165377] = 2, + ACTIONS(9360), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165379] = 2, - ACTIONS(5620), 1, - anon_sym_in, + [165385] = 2, + ACTIONS(9362), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165387] = 2, - ACTIONS(9366), 1, + [165393] = 2, + ACTIONS(9364), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165395] = 2, - ACTIONS(5361), 1, - anon_sym_RBRACK, + [165401] = 2, + ACTIONS(9366), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165403] = 2, + [165409] = 2, ACTIONS(9368), 1, - sym_identifier, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165411] = 2, + [165417] = 2, ACTIONS(9370), 1, - ts_builtin_sym_end, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165419] = 2, + [165425] = 2, ACTIONS(9372), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165427] = 2, + [165433] = 2, ACTIONS(9374), 1, - anon_sym_symbol, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165435] = 2, + [165441] = 2, ACTIONS(9376), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165443] = 2, + [165449] = 2, ACTIONS(9378), 1, - anon_sym_RBRACK, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165451] = 2, + [165457] = 2, + ACTIONS(5620), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165465] = 2, ACTIONS(9380), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165459] = 2, + [165473] = 2, + ACTIONS(4089), 1, + anon_sym_is, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [165481] = 2, ACTIONS(9382), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165467] = 2, + [165489] = 2, ACTIONS(9384), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165475] = 2, + [165497] = 2, ACTIONS(9386), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165483] = 2, + [165505] = 2, ACTIONS(9388), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [165491] = 2, - ACTIONS(9390), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165499] = 2, - ACTIONS(9392), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [165507] = 2, - ACTIONS(9394), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, + [165513] = 3, + ACTIONS(3), 1, sym_comment, - [165515] = 2, - ACTIONS(9396), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, + ACTIONS(9390), 1, + anon_sym_SLASH2, [165523] = 2, - ACTIONS(9398), 1, + ACTIONS(9392), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [165531] = 2, - ACTIONS(9400), 1, - anon_sym_RBRACK, + ACTIONS(9394), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [165539] = 2, - ACTIONS(9402), 1, + ACTIONS(9396), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165547] = 2, - ACTIONS(9404), 1, + ACTIONS(9398), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165555] = 2, - ACTIONS(9406), 1, + ACTIONS(9400), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [165563] = 2, - ACTIONS(9408), 1, + ACTIONS(9402), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165571] = 2, - ACTIONS(9410), 1, + ACTIONS(9404), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165579] = 2, - ACTIONS(9412), 1, + ACTIONS(9406), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165587] = 2, - ACTIONS(9414), 1, + ACTIONS(9408), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165595] = 2, - ACTIONS(9416), 1, + ACTIONS(9410), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165603] = 2, - ACTIONS(9418), 1, + ACTIONS(9412), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165611] = 2, - ACTIONS(9420), 1, + ACTIONS(9414), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [165619] = 2, - ACTIONS(9422), 1, + ACTIONS(9416), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165627] = 2, - ACTIONS(9424), 1, + ACTIONS(9418), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165635] = 2, - ACTIONS(9426), 1, + ACTIONS(9420), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165643] = 2, - ACTIONS(9428), 1, + ACTIONS(9422), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165651] = 2, - ACTIONS(9430), 1, + ACTIONS(9424), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165659] = 2, - ACTIONS(5462), 1, + ACTIONS(5460), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, [165667] = 2, - ACTIONS(9432), 1, - anon_sym_RBRACK, + ACTIONS(6153), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [165675] = 2, - ACTIONS(5464), 1, - anon_sym_RPAREN, + ACTIONS(9426), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165683] = 2, - ACTIONS(9434), 1, - anon_sym_EQ_GT, + ACTIONS(5462), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, [165691] = 2, - ACTIONS(8394), 1, - anon_sym_RBRACE, + ACTIONS(5576), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165699] = 2, - ACTIONS(9436), 1, - anon_sym_RBRACK, + ACTIONS(8384), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, [165707] = 2, - ACTIONS(9438), 1, - anon_sym_symbol, + ACTIONS(9428), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165715] = 2, - ACTIONS(9440), 1, - anon_sym_RBRACK, + ACTIONS(9430), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [165723] = 2, - ACTIONS(9442), 1, + ACTIONS(9432), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165731] = 2, - ACTIONS(9444), 1, + ACTIONS(9434), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165739] = 2, - ACTIONS(9446), 1, + ACTIONS(9436), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165747] = 2, - ACTIONS(9448), 1, + ACTIONS(9438), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165755] = 2, - ACTIONS(9450), 1, - anon_sym_EQ_GT, + ACTIONS(9440), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165763] = 2, - ACTIONS(9452), 1, + ACTIONS(9442), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165771] = 2, - ACTIONS(5470), 1, - anon_sym_RPAREN, + ACTIONS(9444), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165779] = 2, - ACTIONS(8386), 1, - anon_sym_LBRACE, + ACTIONS(5468), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, [165787] = 2, - ACTIONS(9454), 1, - anon_sym_RBRACK, + ACTIONS(7871), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [165795] = 2, - ACTIONS(9456), 1, + ACTIONS(9446), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, @@ -274479,417 +274479,417 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, sym_comment, [165811] = 2, - ACTIONS(9458), 1, - anon_sym_new, + ACTIONS(9448), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165819] = 2, - ACTIONS(9460), 1, - anon_sym_RBRACK, + ACTIONS(8786), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, [165827] = 2, - ACTIONS(9462), 1, + ACTIONS(9450), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [165835] = 2, - ACTIONS(9464), 1, - sym_identifier, + ACTIONS(9452), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165843] = 2, - ACTIONS(9466), 1, + ACTIONS(9454), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, [165851] = 2, - ACTIONS(9468), 1, - sym_identifier, + ACTIONS(9456), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165859] = 2, - ACTIONS(9470), 1, - anon_sym_EQ_GT, + ACTIONS(5824), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, [165867] = 2, - ACTIONS(9472), 1, + ACTIONS(9458), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [165875] = 2, - ACTIONS(9474), 1, + ACTIONS(9460), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165883] = 2, - ACTIONS(9476), 1, + ACTIONS(9462), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [165891] = 2, - ACTIONS(9478), 1, + ACTIONS(9464), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [165899] = 2, - ACTIONS(9480), 1, - anon_sym_RBRACK, + ACTIONS(9466), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, [165907] = 2, - ACTIONS(9482), 1, - anon_sym_RBRACK, + ACTIONS(9468), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [165915] = 2, - ACTIONS(9484), 1, - anon_sym_RBRACK, + ACTIONS(9470), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [165923] = 2, - ACTIONS(9486), 1, + ACTIONS(9472), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165931] = 2, - ACTIONS(5532), 1, + ACTIONS(5530), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, [165939] = 2, - ACTIONS(9488), 1, - anon_sym_EQ, + ACTIONS(9474), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165947] = 2, - ACTIONS(9490), 1, - anon_sym_RBRACK, + ACTIONS(9476), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, [165955] = 2, - ACTIONS(9492), 1, + ACTIONS(9478), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [165963] = 2, - ACTIONS(9494), 1, + ACTIONS(9480), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, [165971] = 2, - ACTIONS(9496), 1, + ACTIONS(9482), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, [165979] = 2, - ACTIONS(9498), 1, + ACTIONS(9484), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, [165987] = 2, - ACTIONS(9500), 1, - sym_identifier, + ACTIONS(9486), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [165995] = 2, - ACTIONS(9502), 1, + ACTIONS(9488), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166003] = 2, - ACTIONS(9504), 1, - anon_sym_RBRACK, + ACTIONS(9490), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, [166011] = 2, - ACTIONS(9506), 1, + ACTIONS(9492), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166019] = 2, - ACTIONS(9508), 1, + ACTIONS(9494), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166027] = 2, - ACTIONS(9510), 1, - sym_identifier, + ACTIONS(9496), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166035] = 2, - ACTIONS(9512), 1, - anon_sym_symbol, + ACTIONS(9498), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [166043] = 2, - ACTIONS(9514), 1, - anon_sym_RBRACK, + ACTIONS(9246), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, [166051] = 2, - ACTIONS(9516), 1, - anon_sym_DOT, + ACTIONS(9500), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166059] = 2, - ACTIONS(5824), 1, - anon_sym_in, + ACTIONS(9502), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166067] = 2, - ACTIONS(9518), 1, + ACTIONS(9504), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166075] = 2, - ACTIONS(9520), 1, + ACTIONS(9506), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166083] = 2, - ACTIONS(9522), 1, + ACTIONS(9508), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, [166091] = 2, - ACTIONS(9524), 1, - sym_identifier, + ACTIONS(9510), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, [166099] = 2, - ACTIONS(9526), 1, + ACTIONS(9512), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, [166107] = 2, - ACTIONS(9528), 1, + ACTIONS(9514), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166115] = 2, - ACTIONS(9530), 1, - anon_sym_COLON, + ACTIONS(9516), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, [166123] = 2, - ACTIONS(9532), 1, - anon_sym_EQ_GT, + ACTIONS(9518), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166131] = 2, - ACTIONS(7504), 1, + ACTIONS(7502), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, [166139] = 2, - ACTIONS(9534), 1, + ACTIONS(9520), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166147] = 2, - ACTIONS(9536), 1, + ACTIONS(9522), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [166155] = 2, - ACTIONS(9538), 1, - anon_sym_EQ_GT, + ACTIONS(9524), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166163] = 2, - ACTIONS(8794), 1, - anon_sym_from, + ACTIONS(9526), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [166171] = 2, - ACTIONS(9540), 1, + ACTIONS(9528), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [166179] = 2, - ACTIONS(9542), 1, + ACTIONS(9530), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, [166187] = 2, - ACTIONS(9544), 1, + ACTIONS(9532), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, [166195] = 2, - ACTIONS(9546), 1, + ACTIONS(9534), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166203] = 2, - ACTIONS(9548), 1, - anon_sym_EQ, + ACTIONS(9536), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [166211] = 2, - ACTIONS(9550), 1, - anon_sym_EQ_GT, + ACTIONS(9538), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166219] = 2, - ACTIONS(9552), 1, - anon_sym_symbol, + ACTIONS(9540), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [166227] = 2, - ACTIONS(4837), 1, - anon_sym_in, + ACTIONS(9542), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9554), 1, - anon_sym_SLASH2, - [166245] = 2, - ACTIONS(9556), 1, - anon_sym_EQ, + [166235] = 2, + ACTIONS(9544), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166253] = 2, - ACTIONS(9558), 1, + [166243] = 2, + ACTIONS(9546), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [166261] = 2, - ACTIONS(9560), 1, - anon_sym_namespace, + [166251] = 2, + ACTIONS(9548), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, + [166259] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9550), 1, + sym_regex_pattern, [166269] = 2, - ACTIONS(9562), 1, + ACTIONS(9552), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [166277] = 2, - ACTIONS(9564), 1, + ACTIONS(9554), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, [166285] = 2, - ACTIONS(9566), 1, + ACTIONS(9556), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [166293] = 2, - ACTIONS(9568), 1, + ACTIONS(9558), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [166301] = 2, - ACTIONS(9570), 1, - sym_identifier, + ACTIONS(9560), 1, + anon_sym_namespace, ACTIONS(5), 2, sym_html_comment, sym_comment, [166309] = 2, - ACTIONS(9572), 1, - anon_sym_EQ_GT, + ACTIONS(9562), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166317] = 2, - ACTIONS(9574), 1, + ACTIONS(9564), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [166325] = 2, - ACTIONS(9576), 1, - anon_sym_symbol, + ACTIONS(9566), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [166333] = 2, - ACTIONS(9578), 1, - anon_sym_EQ, + ACTIONS(9568), 1, + sym_number, ACTIONS(5), 2, sym_html_comment, sym_comment, [166341] = 2, - ACTIONS(9018), 1, - anon_sym_meta, + ACTIONS(9570), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, [166349] = 2, - ACTIONS(6127), 1, + ACTIONS(9572), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [166357] = 2, - ACTIONS(9580), 1, - anon_sym_EQ_GT, + ACTIONS(9574), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -274900,74 +274900,74 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, sym_comment, [166373] = 2, - ACTIONS(9582), 1, + ACTIONS(9576), 1, anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, [166381] = 2, - ACTIONS(4907), 1, - anon_sym_in, + ACTIONS(9578), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [166389] = 2, - ACTIONS(4875), 1, - anon_sym_is, + ACTIONS(4931), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, [166397] = 2, - ACTIONS(9584), 1, + ACTIONS(9580), 1, anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, [166405] = 2, - ACTIONS(9586), 1, + ACTIONS(9582), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [166413] = 2, - ACTIONS(9588), 1, + ACTIONS(9584), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [166421] = 2, - ACTIONS(9590), 1, - anon_sym_RPAREN, + ACTIONS(9586), 1, + anon_sym_symbol, ACTIONS(5), 2, sym_html_comment, sym_comment, [166429] = 2, - ACTIONS(4931), 1, - anon_sym_RPAREN, + ACTIONS(9588), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [166437] = 2, - ACTIONS(9592), 1, + ACTIONS(9590), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [166445] = 2, - ACTIONS(5578), 1, - anon_sym_RBRACK, + ACTIONS(9592), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [166453] = 2, - ACTIONS(5592), 1, + ACTIONS(5590), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, [166461] = 2, ACTIONS(9594), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -274979,13 +274979,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, [166477] = 2, ACTIONS(9598), 1, - sym_identifier, + anon_sym_new, ACTIONS(5), 2, sym_html_comment, sym_comment, [166485] = 2, ACTIONS(9600), 1, - anon_sym_EQ_GT, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -275003,7 +275003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, [166509] = 2, ACTIONS(9606), 1, - anon_sym_DOT, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -275015,43 +275015,43 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, [166525] = 2, ACTIONS(9610), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166533] = 2, ACTIONS(9612), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [166541] = 2, - ACTIONS(7727), 1, - sym_identifier, + ACTIONS(9614), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [166549] = 2, - ACTIONS(9614), 1, - sym_identifier, + ACTIONS(9616), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, [166557] = 2, - ACTIONS(9616), 1, - anon_sym_EQ_GT, + ACTIONS(9618), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [166565] = 2, - ACTIONS(9618), 1, - anon_sym_RBRACK, + ACTIONS(9620), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [166573] = 2, - ACTIONS(9620), 1, - anon_sym_RBRACK, + ACTIONS(7723), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -275063,25 +275063,25 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, [166589] = 2, ACTIONS(9624), 1, - anon_sym_EQ, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, [166597] = 2, - ACTIONS(9626), 1, - anon_sym_LBRACK, + ACTIONS(8116), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, [166605] = 2, - ACTIONS(4926), 1, - anon_sym_RPAREN, + ACTIONS(9626), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, [166613] = 2, ACTIONS(9628), 1, - anon_sym_class, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, @@ -275089,274 +275089,274 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1193)] = 0, - [SMALL_STATE(1194)] = 93, - [SMALL_STATE(1195)] = 164, - [SMALL_STATE(1196)] = 259, - [SMALL_STATE(1197)] = 352, - [SMALL_STATE(1198)] = 443, - [SMALL_STATE(1199)] = 514, - [SMALL_STATE(1200)] = 585, - [SMALL_STATE(1201)] = 674, - [SMALL_STATE(1202)] = 763, - [SMALL_STATE(1203)] = 834, + [SMALL_STATE(1194)] = 91, + [SMALL_STATE(1195)] = 184, + [SMALL_STATE(1196)] = 275, + [SMALL_STATE(1197)] = 346, + [SMALL_STATE(1198)] = 417, + [SMALL_STATE(1199)] = 506, + [SMALL_STATE(1200)] = 601, + [SMALL_STATE(1201)] = 672, + [SMALL_STATE(1202)] = 761, + [SMALL_STATE(1203)] = 854, [SMALL_STATE(1204)] = 925, [SMALL_STATE(1205)] = 996, - [SMALL_STATE(1206)] = 1069, - [SMALL_STATE(1207)] = 1142, - [SMALL_STATE(1208)] = 1231, - [SMALL_STATE(1209)] = 1324, - [SMALL_STATE(1210)] = 1417, + [SMALL_STATE(1206)] = 1067, + [SMALL_STATE(1207)] = 1156, + [SMALL_STATE(1208)] = 1249, + [SMALL_STATE(1209)] = 1342, + [SMALL_STATE(1210)] = 1415, [SMALL_STATE(1211)] = 1488, - [SMALL_STATE(1212)] = 1577, + [SMALL_STATE(1212)] = 1559, [SMALL_STATE(1213)] = 1648, - [SMALL_STATE(1214)] = 1740, + [SMALL_STATE(1214)] = 1738, [SMALL_STATE(1215)] = 1830, - [SMALL_STATE(1216)] = 1920, - [SMALL_STATE(1217)] = 1990, - [SMALL_STATE(1218)] = 2080, - [SMALL_STATE(1219)] = 2166, - [SMALL_STATE(1220)] = 2254, - [SMALL_STATE(1221)] = 2342, - [SMALL_STATE(1222)] = 2412, - [SMALL_STATE(1223)] = 2500, - [SMALL_STATE(1224)] = 2586, - [SMALL_STATE(1225)] = 2674, - [SMALL_STATE(1226)] = 2762, - [SMALL_STATE(1227)] = 2852, - [SMALL_STATE(1228)] = 2942, - [SMALL_STATE(1229)] = 3016, - [SMALL_STATE(1230)] = 3106, - [SMALL_STATE(1231)] = 3198, + [SMALL_STATE(1216)] = 1918, + [SMALL_STATE(1217)] = 2008, + [SMALL_STATE(1218)] = 2096, + [SMALL_STATE(1219)] = 2186, + [SMALL_STATE(1220)] = 2278, + [SMALL_STATE(1221)] = 2366, + [SMALL_STATE(1222)] = 2456, + [SMALL_STATE(1223)] = 2542, + [SMALL_STATE(1224)] = 2612, + [SMALL_STATE(1225)] = 2702, + [SMALL_STATE(1226)] = 2790, + [SMALL_STATE(1227)] = 2876, + [SMALL_STATE(1228)] = 2964, + [SMALL_STATE(1229)] = 3038, + [SMALL_STATE(1230)] = 3108, + [SMALL_STATE(1231)] = 3200, [SMALL_STATE(1232)] = 3290, [SMALL_STATE(1233)] = 3380, [SMALL_STATE(1234)] = 3470, [SMALL_STATE(1235)] = 3557, [SMALL_STATE(1236)] = 3652, [SMALL_STATE(1237)] = 3739, - [SMALL_STATE(1238)] = 3830, - [SMALL_STATE(1239)] = 3917, + [SMALL_STATE(1238)] = 3826, + [SMALL_STATE(1239)] = 3913, [SMALL_STATE(1240)] = 4004, - [SMALL_STATE(1241)] = 4091, - [SMALL_STATE(1242)] = 4178, - [SMALL_STATE(1243)] = 4269, - [SMALL_STATE(1244)] = 4358, - [SMALL_STATE(1245)] = 4447, - [SMALL_STATE(1246)] = 4538, - [SMALL_STATE(1247)] = 4625, + [SMALL_STATE(1241)] = 4095, + [SMALL_STATE(1242)] = 4182, + [SMALL_STATE(1243)] = 4271, + [SMALL_STATE(1244)] = 4350, + [SMALL_STATE(1245)] = 4439, + [SMALL_STATE(1246)] = 4526, + [SMALL_STATE(1247)] = 4617, [SMALL_STATE(1248)] = 4704, - [SMALL_STATE(1249)] = 4782, - [SMALL_STATE(1250)] = 4872, - [SMALL_STATE(1251)] = 4958, - [SMALL_STATE(1252)] = 5044, - [SMALL_STATE(1253)] = 5130, - [SMALL_STATE(1254)] = 5198, - [SMALL_STATE(1255)] = 5284, - [SMALL_STATE(1256)] = 5362, - [SMALL_STATE(1257)] = 5448, - [SMALL_STATE(1258)] = 5524, - [SMALL_STATE(1259)] = 5610, - [SMALL_STATE(1260)] = 5688, - [SMALL_STATE(1261)] = 5778, - [SMALL_STATE(1262)] = 5864, - [SMALL_STATE(1263)] = 5938, - [SMALL_STATE(1264)] = 6016, - [SMALL_STATE(1265)] = 6096, - [SMALL_STATE(1266)] = 6186, - [SMALL_STATE(1267)] = 6254, - [SMALL_STATE(1268)] = 6340, - [SMALL_STATE(1269)] = 6432, - [SMALL_STATE(1270)] = 6522, - [SMALL_STATE(1271)] = 6608, - [SMALL_STATE(1272)] = 6694, + [SMALL_STATE(1249)] = 4784, + [SMALL_STATE(1250)] = 4864, + [SMALL_STATE(1251)] = 4950, + [SMALL_STATE(1252)] = 5036, + [SMALL_STATE(1253)] = 5114, + [SMALL_STATE(1254)] = 5204, + [SMALL_STATE(1255)] = 5296, + [SMALL_STATE(1256)] = 5382, + [SMALL_STATE(1257)] = 5450, + [SMALL_STATE(1258)] = 5540, + [SMALL_STATE(1259)] = 5618, + [SMALL_STATE(1260)] = 5704, + [SMALL_STATE(1261)] = 5780, + [SMALL_STATE(1262)] = 5870, + [SMALL_STATE(1263)] = 5956, + [SMALL_STATE(1264)] = 6042, + [SMALL_STATE(1265)] = 6120, + [SMALL_STATE(1266)] = 6206, + [SMALL_STATE(1267)] = 6292, + [SMALL_STATE(1268)] = 6370, + [SMALL_STATE(1269)] = 6460, + [SMALL_STATE(1270)] = 6546, + [SMALL_STATE(1271)] = 6632, + [SMALL_STATE(1272)] = 6700, [SMALL_STATE(1273)] = 6786, - [SMALL_STATE(1274)] = 6872, - [SMALL_STATE(1275)] = 6958, - [SMALL_STATE(1276)] = 7044, - [SMALL_STATE(1277)] = 7130, - [SMALL_STATE(1278)] = 7220, + [SMALL_STATE(1274)] = 6876, + [SMALL_STATE(1275)] = 6968, + [SMALL_STATE(1276)] = 7042, + [SMALL_STATE(1277)] = 7128, + [SMALL_STATE(1278)] = 7214, [SMALL_STATE(1279)] = 7300, - [SMALL_STATE(1280)] = 7389, - [SMALL_STATE(1281)] = 7476, - [SMALL_STATE(1282)] = 7551, - [SMALL_STATE(1283)] = 7628, - [SMALL_STATE(1284)] = 7697, - [SMALL_STATE(1285)] = 7764, - [SMALL_STATE(1286)] = 7849, - [SMALL_STATE(1287)] = 7916, - [SMALL_STATE(1288)] = 7985, - [SMALL_STATE(1289)] = 8074, - [SMALL_STATE(1290)] = 8147, + [SMALL_STATE(1280)] = 7373, + [SMALL_STATE(1281)] = 7462, + [SMALL_STATE(1282)] = 7529, + [SMALL_STATE(1283)] = 7618, + [SMALL_STATE(1284)] = 7685, + [SMALL_STATE(1285)] = 7760, + [SMALL_STATE(1286)] = 7827, + [SMALL_STATE(1287)] = 7902, + [SMALL_STATE(1288)] = 7979, + [SMALL_STATE(1289)] = 8064, + [SMALL_STATE(1290)] = 8133, [SMALL_STATE(1291)] = 8216, - [SMALL_STATE(1292)] = 8299, - [SMALL_STATE(1293)] = 8384, - [SMALL_STATE(1294)] = 8473, - [SMALL_STATE(1295)] = 8552, - [SMALL_STATE(1296)] = 8625, - [SMALL_STATE(1297)] = 8694, - [SMALL_STATE(1298)] = 8761, - [SMALL_STATE(1299)] = 8846, - [SMALL_STATE(1300)] = 8913, - [SMALL_STATE(1301)] = 8996, + [SMALL_STATE(1292)] = 8305, + [SMALL_STATE(1293)] = 8390, + [SMALL_STATE(1294)] = 8479, + [SMALL_STATE(1295)] = 8568, + [SMALL_STATE(1296)] = 8657, + [SMALL_STATE(1297)] = 8730, + [SMALL_STATE(1298)] = 8803, + [SMALL_STATE(1299)] = 8872, + [SMALL_STATE(1300)] = 8941, + [SMALL_STATE(1301)] = 9018, [SMALL_STATE(1302)] = 9085, - [SMALL_STATE(1303)] = 9160, - [SMALL_STATE(1304)] = 9239, - [SMALL_STATE(1305)] = 9328, + [SMALL_STATE(1303)] = 9158, + [SMALL_STATE(1304)] = 9237, + [SMALL_STATE(1305)] = 9316, [SMALL_STATE(1306)] = 9401, - [SMALL_STATE(1307)] = 9474, - [SMALL_STATE(1308)] = 9563, + [SMALL_STATE(1307)] = 9488, + [SMALL_STATE(1308)] = 9571, [SMALL_STATE(1309)] = 9640, - [SMALL_STATE(1310)] = 9718, - [SMALL_STATE(1311)] = 9786, - [SMALL_STATE(1312)] = 9852, - [SMALL_STATE(1313)] = 9930, - [SMALL_STATE(1314)] = 10012, - [SMALL_STATE(1315)] = 10088, - [SMALL_STATE(1316)] = 10168, - [SMALL_STATE(1317)] = 10246, - [SMALL_STATE(1318)] = 10312, - [SMALL_STATE(1319)] = 10386, - [SMALL_STATE(1320)] = 10452, - [SMALL_STATE(1321)] = 10528, - [SMALL_STATE(1322)] = 10602, - [SMALL_STATE(1323)] = 10676, - [SMALL_STATE(1324)] = 10748, - [SMALL_STATE(1325)] = 10818, - [SMALL_STATE(1326)] = 10888, - [SMALL_STATE(1327)] = 10968, - [SMALL_STATE(1328)] = 11042, - [SMALL_STATE(1329)] = 11118, - [SMALL_STATE(1330)] = 11184, - [SMALL_STATE(1331)] = 11256, - [SMALL_STATE(1332)] = 11328, - [SMALL_STATE(1333)] = 11394, - [SMALL_STATE(1334)] = 11460, - [SMALL_STATE(1335)] = 11532, - [SMALL_STATE(1336)] = 11598, - [SMALL_STATE(1337)] = 11666, - [SMALL_STATE(1338)] = 11750, - [SMALL_STATE(1339)] = 11838, - [SMALL_STATE(1340)] = 11904, - [SMALL_STATE(1341)] = 11988, - [SMALL_STATE(1342)] = 12060, - [SMALL_STATE(1343)] = 12126, - [SMALL_STATE(1344)] = 12198, - [SMALL_STATE(1345)] = 12286, - [SMALL_STATE(1346)] = 12358, - [SMALL_STATE(1347)] = 12442, - [SMALL_STATE(1348)] = 12514, + [SMALL_STATE(1310)] = 9724, + [SMALL_STATE(1311)] = 9796, + [SMALL_STATE(1312)] = 9884, + [SMALL_STATE(1313)] = 9958, + [SMALL_STATE(1314)] = 10032, + [SMALL_STATE(1315)] = 10106, + [SMALL_STATE(1316)] = 10186, + [SMALL_STATE(1317)] = 10258, + [SMALL_STATE(1318)] = 10330, + [SMALL_STATE(1319)] = 10396, + [SMALL_STATE(1320)] = 10468, + [SMALL_STATE(1321)] = 10540, + [SMALL_STATE(1322)] = 10608, + [SMALL_STATE(1323)] = 10684, + [SMALL_STATE(1324)] = 10752, + [SMALL_STATE(1325)] = 10834, + [SMALL_STATE(1326)] = 10922, + [SMALL_STATE(1327)] = 10988, + [SMALL_STATE(1328)] = 11066, + [SMALL_STATE(1329)] = 11136, + [SMALL_STATE(1330)] = 11220, + [SMALL_STATE(1331)] = 11296, + [SMALL_STATE(1332)] = 11374, + [SMALL_STATE(1333)] = 11446, + [SMALL_STATE(1334)] = 11512, + [SMALL_STATE(1335)] = 11578, + [SMALL_STATE(1336)] = 11648, + [SMALL_STATE(1337)] = 11714, + [SMALL_STATE(1338)] = 11798, + [SMALL_STATE(1339)] = 11864, + [SMALL_STATE(1340)] = 11930, + [SMALL_STATE(1341)] = 12006, + [SMALL_STATE(1342)] = 12090, + [SMALL_STATE(1343)] = 12156, + [SMALL_STATE(1344)] = 12228, + [SMALL_STATE(1345)] = 12300, + [SMALL_STATE(1346)] = 12378, + [SMALL_STATE(1347)] = 12458, + [SMALL_STATE(1348)] = 12524, [SMALL_STATE(1349)] = 12598, - [SMALL_STATE(1350)] = 12671, - [SMALL_STATE(1351)] = 12738, - [SMALL_STATE(1352)] = 12811, - [SMALL_STATE(1353)] = 12882, - [SMALL_STATE(1354)] = 12951, - [SMALL_STATE(1355)] = 13020, - [SMALL_STATE(1356)] = 13099, - [SMALL_STATE(1357)] = 13172, - [SMALL_STATE(1358)] = 13245, - [SMALL_STATE(1359)] = 13316, - [SMALL_STATE(1360)] = 13393, - [SMALL_STATE(1361)] = 13468, - [SMALL_STATE(1362)] = 13539, - [SMALL_STATE(1363)] = 13616, - [SMALL_STATE(1364)] = 13689, - [SMALL_STATE(1365)] = 13758, - [SMALL_STATE(1366)] = 13825, - [SMALL_STATE(1367)] = 13896, - [SMALL_STATE(1368)] = 13967, - [SMALL_STATE(1369)] = 14044, - [SMALL_STATE(1370)] = 14119, - [SMALL_STATE(1371)] = 14192, - [SMALL_STATE(1372)] = 14269, + [SMALL_STATE(1350)] = 12675, + [SMALL_STATE(1351)] = 12746, + [SMALL_STATE(1352)] = 12825, + [SMALL_STATE(1353)] = 12898, + [SMALL_STATE(1354)] = 12967, + [SMALL_STATE(1355)] = 13040, + [SMALL_STATE(1356)] = 13113, + [SMALL_STATE(1357)] = 13186, + [SMALL_STATE(1358)] = 13259, + [SMALL_STATE(1359)] = 13330, + [SMALL_STATE(1360)] = 13407, + [SMALL_STATE(1361)] = 13482, + [SMALL_STATE(1362)] = 13565, + [SMALL_STATE(1363)] = 13636, + [SMALL_STATE(1364)] = 13703, + [SMALL_STATE(1365)] = 13772, + [SMALL_STATE(1366)] = 13849, + [SMALL_STATE(1367)] = 13916, + [SMALL_STATE(1368)] = 13991, + [SMALL_STATE(1369)] = 14062, + [SMALL_STATE(1370)] = 14133, + [SMALL_STATE(1371)] = 14202, + [SMALL_STATE(1372)] = 14279, [SMALL_STATE(1373)] = 14352, - [SMALL_STATE(1374)] = 14423, - [SMALL_STATE(1375)] = 14494, - [SMALL_STATE(1376)] = 14567, - [SMALL_STATE(1377)] = 14644, - [SMALL_STATE(1378)] = 14715, + [SMALL_STATE(1374)] = 14429, + [SMALL_STATE(1375)] = 14498, + [SMALL_STATE(1376)] = 14569, + [SMALL_STATE(1377)] = 14640, + [SMALL_STATE(1378)] = 14713, [SMALL_STATE(1379)] = 14784, - [SMALL_STATE(1380)] = 14904, - [SMALL_STATE(1381)] = 14974, - [SMALL_STATE(1382)] = 15042, - [SMALL_STATE(1383)] = 15118, - [SMALL_STATE(1384)] = 15190, - [SMALL_STATE(1385)] = 15264, - [SMALL_STATE(1386)] = 15330, - [SMALL_STATE(1387)] = 15402, - [SMALL_STATE(1388)] = 15522, - [SMALL_STATE(1389)] = 15642, - [SMALL_STATE(1390)] = 15762, - [SMALL_STATE(1391)] = 15828, - [SMALL_STATE(1392)] = 15896, - [SMALL_STATE(1393)] = 15966, - [SMALL_STATE(1394)] = 16040, - [SMALL_STATE(1395)] = 16112, - [SMALL_STATE(1396)] = 16186, - [SMALL_STATE(1397)] = 16306, - [SMALL_STATE(1398)] = 16380, - [SMALL_STATE(1399)] = 16450, - [SMALL_STATE(1400)] = 16520, + [SMALL_STATE(1380)] = 14854, + [SMALL_STATE(1381)] = 14928, + [SMALL_STATE(1382)] = 15048, + [SMALL_STATE(1383)] = 15120, + [SMALL_STATE(1384)] = 15240, + [SMALL_STATE(1385)] = 15310, + [SMALL_STATE(1386)] = 15384, + [SMALL_STATE(1387)] = 15460, + [SMALL_STATE(1388)] = 15530, + [SMALL_STATE(1389)] = 15602, + [SMALL_STATE(1390)] = 15670, + [SMALL_STATE(1391)] = 15744, + [SMALL_STATE(1392)] = 15864, + [SMALL_STATE(1393)] = 15938, + [SMALL_STATE(1394)] = 16058, + [SMALL_STATE(1395)] = 16124, + [SMALL_STATE(1396)] = 16194, + [SMALL_STATE(1397)] = 16264, + [SMALL_STATE(1398)] = 16336, + [SMALL_STATE(1399)] = 16404, + [SMALL_STATE(1400)] = 16524, [SMALL_STATE(1401)] = 16590, [SMALL_STATE(1402)] = 16710, - [SMALL_STATE(1403)] = 16779, - [SMALL_STATE(1404)] = 16848, - [SMALL_STATE(1405)] = 16917, - [SMALL_STATE(1406)] = 16986, - [SMALL_STATE(1407)] = 17059, - [SMALL_STATE(1408)] = 17128, - [SMALL_STATE(1409)] = 17197, - [SMALL_STATE(1410)] = 17266, - [SMALL_STATE(1411)] = 17335, + [SMALL_STATE(1403)] = 16781, + [SMALL_STATE(1404)] = 16850, + [SMALL_STATE(1405)] = 16919, + [SMALL_STATE(1406)] = 16988, + [SMALL_STATE(1407)] = 17057, + [SMALL_STATE(1408)] = 17126, + [SMALL_STATE(1409)] = 17195, + [SMALL_STATE(1410)] = 17264, + [SMALL_STATE(1411)] = 17337, [SMALL_STATE(1412)] = 17406, - [SMALL_STATE(1413)] = 17477, - [SMALL_STATE(1414)] = 17546, - [SMALL_STATE(1415)] = 17615, + [SMALL_STATE(1413)] = 17475, + [SMALL_STATE(1414)] = 17544, + [SMALL_STATE(1415)] = 17613, [SMALL_STATE(1416)] = 17684, - [SMALL_STATE(1417)] = 17753, - [SMALL_STATE(1418)] = 17820, + [SMALL_STATE(1417)] = 17751, + [SMALL_STATE(1418)] = 17824, [SMALL_STATE(1419)] = 17893, [SMALL_STATE(1420)] = 18009, [SMALL_STATE(1421)] = 18077, [SMALL_STATE(1422)] = 18145, - [SMALL_STATE(1423)] = 18261, + [SMALL_STATE(1423)] = 18213, [SMALL_STATE(1424)] = 18329, - [SMALL_STATE(1425)] = 18445, - [SMALL_STATE(1426)] = 18561, - [SMALL_STATE(1427)] = 18629, - [SMALL_STATE(1428)] = 18697, - [SMALL_STATE(1429)] = 18813, - [SMALL_STATE(1430)] = 18929, - [SMALL_STATE(1431)] = 18997, - [SMALL_STATE(1432)] = 19065, + [SMALL_STATE(1425)] = 18397, + [SMALL_STATE(1426)] = 18465, + [SMALL_STATE(1427)] = 18533, + [SMALL_STATE(1428)] = 18601, + [SMALL_STATE(1429)] = 18669, + [SMALL_STATE(1430)] = 18785, + [SMALL_STATE(1431)] = 18901, + [SMALL_STATE(1432)] = 19017, [SMALL_STATE(1433)] = 19133, - [SMALL_STATE(1434)] = 19249, + [SMALL_STATE(1434)] = 19201, [SMALL_STATE(1435)] = 19317, - [SMALL_STATE(1436)] = 19433, - [SMALL_STATE(1437)] = 19549, - [SMALL_STATE(1438)] = 19617, + [SMALL_STATE(1436)] = 19385, + [SMALL_STATE(1437)] = 19453, + [SMALL_STATE(1438)] = 19569, [SMALL_STATE(1439)] = 19685, [SMALL_STATE(1440)] = 19753, - [SMALL_STATE(1441)] = 19869, - [SMALL_STATE(1442)] = 19985, - [SMALL_STATE(1443)] = 20053, + [SMALL_STATE(1441)] = 19821, + [SMALL_STATE(1442)] = 19937, + [SMALL_STATE(1443)] = 20005, [SMALL_STATE(1444)] = 20121, - [SMALL_STATE(1445)] = 20237, - [SMALL_STATE(1446)] = 20353, - [SMALL_STATE(1447)] = 20421, - [SMALL_STATE(1448)] = 20489, - [SMALL_STATE(1449)] = 20557, - [SMALL_STATE(1450)] = 20627, - [SMALL_STATE(1451)] = 20695, + [SMALL_STATE(1445)] = 20189, + [SMALL_STATE(1446)] = 20257, + [SMALL_STATE(1447)] = 20325, + [SMALL_STATE(1448)] = 20441, + [SMALL_STATE(1449)] = 20509, + [SMALL_STATE(1450)] = 20579, + [SMALL_STATE(1451)] = 20647, [SMALL_STATE(1452)] = 20763, [SMALL_STATE(1453)] = 20831, [SMALL_STATE(1454)] = 20899, [SMALL_STATE(1455)] = 20967, - [SMALL_STATE(1456)] = 21083, - [SMALL_STATE(1457)] = 21199, - [SMALL_STATE(1458)] = 21265, - [SMALL_STATE(1459)] = 21381, - [SMALL_STATE(1460)] = 21447, - [SMALL_STATE(1461)] = 21515, + [SMALL_STATE(1456)] = 21033, + [SMALL_STATE(1457)] = 21099, + [SMALL_STATE(1458)] = 21167, + [SMALL_STATE(1459)] = 21233, + [SMALL_STATE(1460)] = 21349, + [SMALL_STATE(1461)] = 21465, [SMALL_STATE(1462)] = 21581, [SMALL_STATE(1463)] = 21697, [SMALL_STATE(1464)] = 21813, @@ -275377,57 +275377,57 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1479)] = 23023, [SMALL_STATE(1480)] = 23135, [SMALL_STATE(1481)] = 23247, - [SMALL_STATE(1482)] = 23358, + [SMALL_STATE(1482)] = 23366, [SMALL_STATE(1483)] = 23477, [SMALL_STATE(1484)] = 23596, - [SMALL_STATE(1485)] = 23715, - [SMALL_STATE(1486)] = 23826, - [SMALL_STATE(1487)] = 23945, - [SMALL_STATE(1488)] = 24056, + [SMALL_STATE(1485)] = 23707, + [SMALL_STATE(1486)] = 23818, + [SMALL_STATE(1487)] = 23929, + [SMALL_STATE(1488)] = 24048, [SMALL_STATE(1489)] = 24167, [SMALL_STATE(1490)] = 24278, [SMALL_STATE(1491)] = 24389, [SMALL_STATE(1492)] = 24500, [SMALL_STATE(1493)] = 24611, - [SMALL_STATE(1494)] = 24730, - [SMALL_STATE(1495)] = 24841, + [SMALL_STATE(1494)] = 24722, + [SMALL_STATE(1495)] = 24833, [SMALL_STATE(1496)] = 24952, [SMALL_STATE(1497)] = 25063, [SMALL_STATE(1498)] = 25165, - [SMALL_STATE(1499)] = 25267, - [SMALL_STATE(1500)] = 25369, - [SMALL_STATE(1501)] = 25471, - [SMALL_STATE(1502)] = 25573, + [SMALL_STATE(1499)] = 25243, + [SMALL_STATE(1500)] = 25345, + [SMALL_STATE(1501)] = 25447, + [SMALL_STATE(1502)] = 25549, [SMALL_STATE(1503)] = 25651, [SMALL_STATE(1504)] = 25753, - [SMALL_STATE(1505)] = 25810, - [SMALL_STATE(1506)] = 25877, - [SMALL_STATE(1507)] = 25944, - [SMALL_STATE(1508)] = 26053, - [SMALL_STATE(1509)] = 26164, + [SMALL_STATE(1505)] = 25820, + [SMALL_STATE(1506)] = 25887, + [SMALL_STATE(1507)] = 25998, + [SMALL_STATE(1508)] = 26107, + [SMALL_STATE(1509)] = 26174, [SMALL_STATE(1510)] = 26231, - [SMALL_STATE(1511)] = 26296, + [SMALL_STATE(1511)] = 26288, [SMALL_STATE(1512)] = 26353, [SMALL_STATE(1513)] = 26421, - [SMALL_STATE(1514)] = 26479, - [SMALL_STATE(1515)] = 26537, - [SMALL_STATE(1516)] = 26597, - [SMALL_STATE(1517)] = 26653, - [SMALL_STATE(1518)] = 26715, - [SMALL_STATE(1519)] = 26771, - [SMALL_STATE(1520)] = 26829, - [SMALL_STATE(1521)] = 26885, - [SMALL_STATE(1522)] = 26945, - [SMALL_STATE(1523)] = 27001, - [SMALL_STATE(1524)] = 27095, - [SMALL_STATE(1525)] = 27151, - [SMALL_STATE(1526)] = 27207, - [SMALL_STATE(1527)] = 27269, + [SMALL_STATE(1514)] = 26477, + [SMALL_STATE(1515)] = 26533, + [SMALL_STATE(1516)] = 26593, + [SMALL_STATE(1517)] = 26649, + [SMALL_STATE(1518)] = 26707, + [SMALL_STATE(1519)] = 26765, + [SMALL_STATE(1520)] = 26821, + [SMALL_STATE(1521)] = 26883, + [SMALL_STATE(1522)] = 26939, + [SMALL_STATE(1523)] = 27033, + [SMALL_STATE(1524)] = 27091, + [SMALL_STATE(1525)] = 27147, + [SMALL_STATE(1526)] = 27203, + [SMALL_STATE(1527)] = 27263, [SMALL_STATE(1528)] = 27325, [SMALL_STATE(1529)] = 27380, - [SMALL_STATE(1530)] = 27435, - [SMALL_STATE(1531)] = 27490, - [SMALL_STATE(1532)] = 27545, + [SMALL_STATE(1530)] = 27439, + [SMALL_STATE(1531)] = 27494, + [SMALL_STATE(1532)] = 27549, [SMALL_STATE(1533)] = 27608, [SMALL_STATE(1534)] = 27663, [SMALL_STATE(1535)] = 27718, @@ -275439,112 +275439,112 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1541)] = 28050, [SMALL_STATE(1542)] = 28105, [SMALL_STATE(1543)] = 28160, - [SMALL_STATE(1544)] = 28215, - [SMALL_STATE(1545)] = 28270, - [SMALL_STATE(1546)] = 28329, - [SMALL_STATE(1547)] = 28384, - [SMALL_STATE(1548)] = 28439, - [SMALL_STATE(1549)] = 28494, - [SMALL_STATE(1550)] = 28549, - [SMALL_STATE(1551)] = 28604, - [SMALL_STATE(1552)] = 28661, - [SMALL_STATE(1553)] = 28722, - [SMALL_STATE(1554)] = 28783, - [SMALL_STATE(1555)] = 28838, - [SMALL_STATE(1556)] = 28893, - [SMALL_STATE(1557)] = 28954, - [SMALL_STATE(1558)] = 29009, - [SMALL_STATE(1559)] = 29070, - [SMALL_STATE(1560)] = 29125, - [SMALL_STATE(1561)] = 29180, - [SMALL_STATE(1562)] = 29235, - [SMALL_STATE(1563)] = 29292, - [SMALL_STATE(1564)] = 29349, - [SMALL_STATE(1565)] = 29404, - [SMALL_STATE(1566)] = 29459, - [SMALL_STATE(1567)] = 29514, - [SMALL_STATE(1568)] = 29569, - [SMALL_STATE(1569)] = 29624, - [SMALL_STATE(1570)] = 29679, - [SMALL_STATE(1571)] = 29734, - [SMALL_STATE(1572)] = 29789, - [SMALL_STATE(1573)] = 29844, - [SMALL_STATE(1574)] = 29899, - [SMALL_STATE(1575)] = 29954, - [SMALL_STATE(1576)] = 30009, - [SMALL_STATE(1577)] = 30064, - [SMALL_STATE(1578)] = 30119, - [SMALL_STATE(1579)] = 30174, - [SMALL_STATE(1580)] = 30231, - [SMALL_STATE(1581)] = 30286, - [SMALL_STATE(1582)] = 30341, - [SMALL_STATE(1583)] = 30396, - [SMALL_STATE(1584)] = 30451, - [SMALL_STATE(1585)] = 30506, - [SMALL_STATE(1586)] = 30561, - [SMALL_STATE(1587)] = 30616, - [SMALL_STATE(1588)] = 30671, - [SMALL_STATE(1589)] = 30728, - [SMALL_STATE(1590)] = 30783, - [SMALL_STATE(1591)] = 30838, - [SMALL_STATE(1592)] = 30893, - [SMALL_STATE(1593)] = 30952, - [SMALL_STATE(1594)] = 31007, - [SMALL_STATE(1595)] = 31062, - [SMALL_STATE(1596)] = 31119, - [SMALL_STATE(1597)] = 31174, - [SMALL_STATE(1598)] = 31231, - [SMALL_STATE(1599)] = 31286, - [SMALL_STATE(1600)] = 31347, - [SMALL_STATE(1601)] = 31402, - [SMALL_STATE(1602)] = 31463, - [SMALL_STATE(1603)] = 31518, + [SMALL_STATE(1544)] = 28221, + [SMALL_STATE(1545)] = 28276, + [SMALL_STATE(1546)] = 28331, + [SMALL_STATE(1547)] = 28392, + [SMALL_STATE(1548)] = 28447, + [SMALL_STATE(1549)] = 28508, + [SMALL_STATE(1550)] = 28563, + [SMALL_STATE(1551)] = 28620, + [SMALL_STATE(1552)] = 28679, + [SMALL_STATE(1553)] = 28734, + [SMALL_STATE(1554)] = 28789, + [SMALL_STATE(1555)] = 28850, + [SMALL_STATE(1556)] = 28905, + [SMALL_STATE(1557)] = 28960, + [SMALL_STATE(1558)] = 29021, + [SMALL_STATE(1559)] = 29078, + [SMALL_STATE(1560)] = 29133, + [SMALL_STATE(1561)] = 29188, + [SMALL_STATE(1562)] = 29243, + [SMALL_STATE(1563)] = 29298, + [SMALL_STATE(1564)] = 29353, + [SMALL_STATE(1565)] = 29408, + [SMALL_STATE(1566)] = 29463, + [SMALL_STATE(1567)] = 29518, + [SMALL_STATE(1568)] = 29573, + [SMALL_STATE(1569)] = 29628, + [SMALL_STATE(1570)] = 29683, + [SMALL_STATE(1571)] = 29738, + [SMALL_STATE(1572)] = 29793, + [SMALL_STATE(1573)] = 29848, + [SMALL_STATE(1574)] = 29905, + [SMALL_STATE(1575)] = 29960, + [SMALL_STATE(1576)] = 30015, + [SMALL_STATE(1577)] = 30070, + [SMALL_STATE(1578)] = 30125, + [SMALL_STATE(1579)] = 30180, + [SMALL_STATE(1580)] = 30237, + [SMALL_STATE(1581)] = 30296, + [SMALL_STATE(1582)] = 30353, + [SMALL_STATE(1583)] = 30408, + [SMALL_STATE(1584)] = 30463, + [SMALL_STATE(1585)] = 30518, + [SMALL_STATE(1586)] = 30573, + [SMALL_STATE(1587)] = 30628, + [SMALL_STATE(1588)] = 30683, + [SMALL_STATE(1589)] = 30740, + [SMALL_STATE(1590)] = 30795, + [SMALL_STATE(1591)] = 30850, + [SMALL_STATE(1592)] = 30905, + [SMALL_STATE(1593)] = 30960, + [SMALL_STATE(1594)] = 31021, + [SMALL_STATE(1595)] = 31076, + [SMALL_STATE(1596)] = 31131, + [SMALL_STATE(1597)] = 31186, + [SMALL_STATE(1598)] = 31243, + [SMALL_STATE(1599)] = 31298, + [SMALL_STATE(1600)] = 31353, + [SMALL_STATE(1601)] = 31414, + [SMALL_STATE(1602)] = 31469, + [SMALL_STATE(1603)] = 31524, [SMALL_STATE(1604)] = 31579, - [SMALL_STATE(1605)] = 31640, - [SMALL_STATE(1606)] = 31701, - [SMALL_STATE(1607)] = 31760, - [SMALL_STATE(1608)] = 31815, - [SMALL_STATE(1609)] = 31870, + [SMALL_STATE(1605)] = 31634, + [SMALL_STATE(1606)] = 31689, + [SMALL_STATE(1607)] = 31744, + [SMALL_STATE(1608)] = 31805, + [SMALL_STATE(1609)] = 31866, [SMALL_STATE(1610)] = 31927, - [SMALL_STATE(1611)] = 31982, - [SMALL_STATE(1612)] = 32037, - [SMALL_STATE(1613)] = 32092, - [SMALL_STATE(1614)] = 32149, - [SMALL_STATE(1615)] = 32204, - [SMALL_STATE(1616)] = 32259, - [SMALL_STATE(1617)] = 32314, - [SMALL_STATE(1618)] = 32375, - [SMALL_STATE(1619)] = 32432, - [SMALL_STATE(1620)] = 32487, - [SMALL_STATE(1621)] = 32542, - [SMALL_STATE(1622)] = 32601, - [SMALL_STATE(1623)] = 32660, - [SMALL_STATE(1624)] = 32715, - [SMALL_STATE(1625)] = 32776, - [SMALL_STATE(1626)] = 32831, - [SMALL_STATE(1627)] = 32890, - [SMALL_STATE(1628)] = 32945, - [SMALL_STATE(1629)] = 33000, - [SMALL_STATE(1630)] = 33055, - [SMALL_STATE(1631)] = 33110, - [SMALL_STATE(1632)] = 33167, - [SMALL_STATE(1633)] = 33224, - [SMALL_STATE(1634)] = 33279, - [SMALL_STATE(1635)] = 33334, - [SMALL_STATE(1636)] = 33389, - [SMALL_STATE(1637)] = 33444, - [SMALL_STATE(1638)] = 33505, + [SMALL_STATE(1611)] = 31988, + [SMALL_STATE(1612)] = 32045, + [SMALL_STATE(1613)] = 32104, + [SMALL_STATE(1614)] = 32161, + [SMALL_STATE(1615)] = 32218, + [SMALL_STATE(1616)] = 32273, + [SMALL_STATE(1617)] = 32328, + [SMALL_STATE(1618)] = 32387, + [SMALL_STATE(1619)] = 32442, + [SMALL_STATE(1620)] = 32501, + [SMALL_STATE(1621)] = 32556, + [SMALL_STATE(1622)] = 32611, + [SMALL_STATE(1623)] = 32668, + [SMALL_STATE(1624)] = 32723, + [SMALL_STATE(1625)] = 32786, + [SMALL_STATE(1626)] = 32841, + [SMALL_STATE(1627)] = 32896, + [SMALL_STATE(1628)] = 32951, + [SMALL_STATE(1629)] = 33006, + [SMALL_STATE(1630)] = 33061, + [SMALL_STATE(1631)] = 33116, + [SMALL_STATE(1632)] = 33171, + [SMALL_STATE(1633)] = 33226, + [SMALL_STATE(1634)] = 33281, + [SMALL_STATE(1635)] = 33336, + [SMALL_STATE(1636)] = 33391, + [SMALL_STATE(1637)] = 33446, + [SMALL_STATE(1638)] = 33501, [SMALL_STATE(1639)] = 33560, - [SMALL_STATE(1640)] = 33621, - [SMALL_STATE(1641)] = 33676, - [SMALL_STATE(1642)] = 33737, + [SMALL_STATE(1640)] = 33617, + [SMALL_STATE(1641)] = 33674, + [SMALL_STATE(1642)] = 33735, [SMALL_STATE(1643)] = 33796, - [SMALL_STATE(1644)] = 33859, - [SMALL_STATE(1645)] = 33914, - [SMALL_STATE(1646)] = 33977, - [SMALL_STATE(1647)] = 34036, - [SMALL_STATE(1648)] = 34091, - [SMALL_STATE(1649)] = 34148, + [SMALL_STATE(1644)] = 33851, + [SMALL_STATE(1645)] = 33906, + [SMALL_STATE(1646)] = 33969, + [SMALL_STATE(1647)] = 34032, + [SMALL_STATE(1648)] = 34087, + [SMALL_STATE(1649)] = 34142, [SMALL_STATE(1650)] = 34203, [SMALL_STATE(1651)] = 34258, [SMALL_STATE(1652)] = 34318, @@ -275605,9 +275605,9 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1707)] = 37328, [SMALL_STATE(1708)] = 37384, [SMALL_STATE(1709)] = 37440, - [SMALL_STATE(1710)] = 37500, - [SMALL_STATE(1711)] = 37554, - [SMALL_STATE(1712)] = 37608, + [SMALL_STATE(1710)] = 37514, + [SMALL_STATE(1711)] = 37574, + [SMALL_STATE(1712)] = 37628, [SMALL_STATE(1713)] = 37682, [SMALL_STATE(1714)] = 37736, [SMALL_STATE(1715)] = 37790, @@ -275625,50 +275625,50 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1727)] = 38619, [SMALL_STATE(1728)] = 38676, [SMALL_STATE(1729)] = 38729, - [SMALL_STATE(1730)] = 38786, - [SMALL_STATE(1731)] = 38841, - [SMALL_STATE(1732)] = 38898, - [SMALL_STATE(1733)] = 38961, - [SMALL_STATE(1734)] = 39038, - [SMALL_STATE(1735)] = 39099, - [SMALL_STATE(1736)] = 39152, - [SMALL_STATE(1737)] = 39231, - [SMALL_STATE(1738)] = 39294, - [SMALL_STATE(1739)] = 39371, - [SMALL_STATE(1740)] = 39434, - [SMALL_STATE(1741)] = 39513, - [SMALL_STATE(1742)] = 39576, - [SMALL_STATE(1743)] = 39685, - [SMALL_STATE(1744)] = 39794, - [SMALL_STATE(1745)] = 39903, - [SMALL_STATE(1746)] = 40012, - [SMALL_STATE(1747)] = 40121, - [SMALL_STATE(1748)] = 40204, - [SMALL_STATE(1749)] = 40277, - [SMALL_STATE(1750)] = 40374, - [SMALL_STATE(1751)] = 40473, - [SMALL_STATE(1752)] = 40552, - [SMALL_STATE(1753)] = 40605, - [SMALL_STATE(1754)] = 40698, - [SMALL_STATE(1755)] = 40793, - [SMALL_STATE(1756)] = 40870, - [SMALL_STATE(1757)] = 40949, - [SMALL_STATE(1758)] = 41036, - [SMALL_STATE(1759)] = 41137, - [SMALL_STATE(1760)] = 41246, - [SMALL_STATE(1761)] = 41355, - [SMALL_STATE(1762)] = 41464, - [SMALL_STATE(1763)] = 41573, - [SMALL_STATE(1764)] = 41682, - [SMALL_STATE(1765)] = 41791, - [SMALL_STATE(1766)] = 41900, - [SMALL_STATE(1767)] = 41979, - [SMALL_STATE(1768)] = 42088, - [SMALL_STATE(1769)] = 42141, - [SMALL_STATE(1770)] = 42218, - [SMALL_STATE(1771)] = 42271, - [SMALL_STATE(1772)] = 42340, - [SMALL_STATE(1773)] = 42417, + [SMALL_STATE(1730)] = 38808, + [SMALL_STATE(1731)] = 38863, + [SMALL_STATE(1732)] = 38920, + [SMALL_STATE(1733)] = 38983, + [SMALL_STATE(1734)] = 39060, + [SMALL_STATE(1735)] = 39121, + [SMALL_STATE(1736)] = 39174, + [SMALL_STATE(1737)] = 39253, + [SMALL_STATE(1738)] = 39316, + [SMALL_STATE(1739)] = 39393, + [SMALL_STATE(1740)] = 39456, + [SMALL_STATE(1741)] = 39535, + [SMALL_STATE(1742)] = 39598, + [SMALL_STATE(1743)] = 39707, + [SMALL_STATE(1744)] = 39816, + [SMALL_STATE(1745)] = 39925, + [SMALL_STATE(1746)] = 40034, + [SMALL_STATE(1747)] = 40143, + [SMALL_STATE(1748)] = 40226, + [SMALL_STATE(1749)] = 40299, + [SMALL_STATE(1750)] = 40396, + [SMALL_STATE(1751)] = 40495, + [SMALL_STATE(1752)] = 40574, + [SMALL_STATE(1753)] = 40627, + [SMALL_STATE(1754)] = 40720, + [SMALL_STATE(1755)] = 40815, + [SMALL_STATE(1756)] = 40892, + [SMALL_STATE(1757)] = 40971, + [SMALL_STATE(1758)] = 41058, + [SMALL_STATE(1759)] = 41159, + [SMALL_STATE(1760)] = 41268, + [SMALL_STATE(1761)] = 41377, + [SMALL_STATE(1762)] = 41486, + [SMALL_STATE(1763)] = 41595, + [SMALL_STATE(1764)] = 41704, + [SMALL_STATE(1765)] = 41813, + [SMALL_STATE(1766)] = 41922, + [SMALL_STATE(1767)] = 42001, + [SMALL_STATE(1768)] = 42110, + [SMALL_STATE(1769)] = 42163, + [SMALL_STATE(1770)] = 42240, + [SMALL_STATE(1771)] = 42293, + [SMALL_STATE(1772)] = 42362, + [SMALL_STATE(1773)] = 42439, [SMALL_STATE(1774)] = 42496, [SMALL_STATE(1775)] = 42575, [SMALL_STATE(1776)] = 42652, @@ -275685,30 +275685,30 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1787)] = 43570, [SMALL_STATE(1788)] = 43630, [SMALL_STATE(1789)] = 43682, - [SMALL_STATE(1790)] = 43790, - [SMALL_STATE(1791)] = 43848, - [SMALL_STATE(1792)] = 43920, - [SMALL_STATE(1793)] = 44028, - [SMALL_STATE(1794)] = 44084, - [SMALL_STATE(1795)] = 44192, - [SMALL_STATE(1796)] = 44300, - [SMALL_STATE(1797)] = 44382, - [SMALL_STATE(1798)] = 44442, - [SMALL_STATE(1799)] = 44498, - [SMALL_STATE(1800)] = 44556, - [SMALL_STATE(1801)] = 44612, - [SMALL_STATE(1802)] = 44664, - [SMALL_STATE(1803)] = 44736, - [SMALL_STATE(1804)] = 44796, - [SMALL_STATE(1805)] = 44892, - [SMALL_STATE(1806)] = 44990, - [SMALL_STATE(1807)] = 45068, - [SMALL_STATE(1808)] = 45158, - [SMALL_STATE(1809)] = 45250, - [SMALL_STATE(1810)] = 45344, - [SMALL_STATE(1811)] = 45420, - [SMALL_STATE(1812)] = 45498, - [SMALL_STATE(1813)] = 45584, + [SMALL_STATE(1790)] = 43740, + [SMALL_STATE(1791)] = 43798, + [SMALL_STATE(1792)] = 43870, + [SMALL_STATE(1793)] = 43978, + [SMALL_STATE(1794)] = 44034, + [SMALL_STATE(1795)] = 44142, + [SMALL_STATE(1796)] = 44250, + [SMALL_STATE(1797)] = 44332, + [SMALL_STATE(1798)] = 44392, + [SMALL_STATE(1799)] = 44448, + [SMALL_STATE(1800)] = 44506, + [SMALL_STATE(1801)] = 44562, + [SMALL_STATE(1802)] = 44614, + [SMALL_STATE(1803)] = 44674, + [SMALL_STATE(1804)] = 44746, + [SMALL_STATE(1805)] = 44842, + [SMALL_STATE(1806)] = 44940, + [SMALL_STATE(1807)] = 45018, + [SMALL_STATE(1808)] = 45108, + [SMALL_STATE(1809)] = 45200, + [SMALL_STATE(1810)] = 45294, + [SMALL_STATE(1811)] = 45370, + [SMALL_STATE(1812)] = 45448, + [SMALL_STATE(1813)] = 45534, [SMALL_STATE(1814)] = 45642, [SMALL_STATE(1815)] = 45696, [SMALL_STATE(1816)] = 45750, @@ -275761,27 +275761,27 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1863)] = 49994, [SMALL_STATE(1864)] = 50102, [SMALL_STATE(1865)] = 50164, - [SMALL_STATE(1866)] = 50232, - [SMALL_STATE(1867)] = 50348, - [SMALL_STATE(1868)] = 50406, - [SMALL_STATE(1869)] = 50466, - [SMALL_STATE(1870)] = 50574, - [SMALL_STATE(1871)] = 50682, - [SMALL_STATE(1872)] = 50756, - [SMALL_STATE(1873)] = 50834, - [SMALL_STATE(1874)] = 50886, - [SMALL_STATE(1875)] = 50994, - [SMALL_STATE(1876)] = 51064, - [SMALL_STATE(1877)] = 51140, - [SMALL_STATE(1878)] = 51248, + [SMALL_STATE(1866)] = 50226, + [SMALL_STATE(1867)] = 50342, + [SMALL_STATE(1868)] = 50400, + [SMALL_STATE(1869)] = 50460, + [SMALL_STATE(1870)] = 50568, + [SMALL_STATE(1871)] = 50676, + [SMALL_STATE(1872)] = 50750, + [SMALL_STATE(1873)] = 50828, + [SMALL_STATE(1874)] = 50880, + [SMALL_STATE(1875)] = 50988, + [SMALL_STATE(1876)] = 51058, + [SMALL_STATE(1877)] = 51134, + [SMALL_STATE(1878)] = 51242, [SMALL_STATE(1879)] = 51310, [SMALL_STATE(1880)] = 51393, [SMALL_STATE(1881)] = 51444, [SMALL_STATE(1882)] = 51495, [SMALL_STATE(1883)] = 51552, - [SMALL_STATE(1884)] = 51603, - [SMALL_STATE(1885)] = 51658, - [SMALL_STATE(1886)] = 51721, + [SMALL_STATE(1884)] = 51615, + [SMALL_STATE(1885)] = 51678, + [SMALL_STATE(1886)] = 51729, [SMALL_STATE(1887)] = 51784, [SMALL_STATE(1888)] = 51891, [SMALL_STATE(1889)] = 51998, @@ -275792,7 +275792,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1894)] = 52399, [SMALL_STATE(1895)] = 52506, [SMALL_STATE(1896)] = 52577, - [SMALL_STATE(1897)] = 52686, + [SMALL_STATE(1897)] = 52672, [SMALL_STATE(1898)] = 52781, [SMALL_STATE(1899)] = 52878, [SMALL_STATE(1900)] = 52955, @@ -275802,16 +275802,16 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1904)] = 53303, [SMALL_STATE(1905)] = 53380, [SMALL_STATE(1906)] = 53433, - [SMALL_STATE(1907)] = 53518, - [SMALL_STATE(1908)] = 53571, - [SMALL_STATE(1909)] = 53670, - [SMALL_STATE(1910)] = 53721, - [SMALL_STATE(1911)] = 53774, - [SMALL_STATE(1912)] = 53827, - [SMALL_STATE(1913)] = 53884, - [SMALL_STATE(1914)] = 53991, - [SMALL_STATE(1915)] = 54098, - [SMALL_STATE(1916)] = 54149, + [SMALL_STATE(1907)] = 53506, + [SMALL_STATE(1908)] = 53559, + [SMALL_STATE(1909)] = 53644, + [SMALL_STATE(1910)] = 53743, + [SMALL_STATE(1911)] = 53794, + [SMALL_STATE(1912)] = 53847, + [SMALL_STATE(1913)] = 53904, + [SMALL_STATE(1914)] = 53957, + [SMALL_STATE(1915)] = 54064, + [SMALL_STATE(1916)] = 54171, [SMALL_STATE(1917)] = 54222, [SMALL_STATE(1918)] = 54305, [SMALL_STATE(1919)] = 54356, @@ -275834,29 +275834,29 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1936)] = 55663, [SMALL_STATE(1937)] = 55722, [SMALL_STATE(1938)] = 55777, - [SMALL_STATE(1939)] = 55828, - [SMALL_STATE(1940)] = 55879, - [SMALL_STATE(1941)] = 55990, - [SMALL_STATE(1942)] = 56041, - [SMALL_STATE(1943)] = 56098, - [SMALL_STATE(1944)] = 56155, - [SMALL_STATE(1945)] = 56266, - [SMALL_STATE(1946)] = 56377, - [SMALL_STATE(1947)] = 56488, - [SMALL_STATE(1948)] = 56599, - [SMALL_STATE(1949)] = 56682, - [SMALL_STATE(1950)] = 56745, - [SMALL_STATE(1951)] = 56808, - [SMALL_STATE(1952)] = 56861, - [SMALL_STATE(1953)] = 56914, - [SMALL_STATE(1954)] = 56997, - [SMALL_STATE(1955)] = 57062, - [SMALL_STATE(1956)] = 57127, - [SMALL_STATE(1957)] = 57184, - [SMALL_STATE(1958)] = 57241, - [SMALL_STATE(1959)] = 57298, - [SMALL_STATE(1960)] = 57405, - [SMALL_STATE(1961)] = 57512, + [SMALL_STATE(1939)] = 55888, + [SMALL_STATE(1940)] = 55941, + [SMALL_STATE(1941)] = 55992, + [SMALL_STATE(1942)] = 56043, + [SMALL_STATE(1943)] = 56100, + [SMALL_STATE(1944)] = 56157, + [SMALL_STATE(1945)] = 56268, + [SMALL_STATE(1946)] = 56379, + [SMALL_STATE(1947)] = 56490, + [SMALL_STATE(1948)] = 56601, + [SMALL_STATE(1949)] = 56684, + [SMALL_STATE(1950)] = 56747, + [SMALL_STATE(1951)] = 56810, + [SMALL_STATE(1952)] = 56863, + [SMALL_STATE(1953)] = 56916, + [SMALL_STATE(1954)] = 56999, + [SMALL_STATE(1955)] = 57064, + [SMALL_STATE(1956)] = 57129, + [SMALL_STATE(1957)] = 57186, + [SMALL_STATE(1958)] = 57243, + [SMALL_STATE(1959)] = 57350, + [SMALL_STATE(1960)] = 57407, + [SMALL_STATE(1961)] = 57514, [SMALL_STATE(1962)] = 57565, [SMALL_STATE(1963)] = 57618, [SMALL_STATE(1964)] = 57673, @@ -276011,633 +276011,633 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2113)] = 67150, [SMALL_STATE(2114)] = 67260, [SMALL_STATE(2115)] = 67310, - [SMALL_STATE(2116)] = 67360, - [SMALL_STATE(2117)] = 67414, - [SMALL_STATE(2118)] = 67464, - [SMALL_STATE(2119)] = 67518, - [SMALL_STATE(2120)] = 67584, - [SMALL_STATE(2121)] = 67634, - [SMALL_STATE(2122)] = 67684, - [SMALL_STATE(2123)] = 67748, - [SMALL_STATE(2124)] = 67814, - [SMALL_STATE(2125)] = 67870, - [SMALL_STATE(2126)] = 67920, - [SMALL_STATE(2127)] = 67976, - [SMALL_STATE(2128)] = 68026, - [SMALL_STATE(2129)] = 68080, - [SMALL_STATE(2130)] = 68134, - [SMALL_STATE(2131)] = 68184, - [SMALL_STATE(2132)] = 68234, - [SMALL_STATE(2133)] = 68288, - [SMALL_STATE(2134)] = 68342, - [SMALL_STATE(2135)] = 68392, - [SMALL_STATE(2136)] = 68450, - [SMALL_STATE(2137)] = 68560, - [SMALL_STATE(2138)] = 68610, - [SMALL_STATE(2139)] = 68684, - [SMALL_STATE(2140)] = 68794, - [SMALL_STATE(2141)] = 68870, - [SMALL_STATE(2142)] = 68920, - [SMALL_STATE(2143)] = 68976, - [SMALL_STATE(2144)] = 69086, - [SMALL_STATE(2145)] = 69196, - [SMALL_STATE(2146)] = 69252, - [SMALL_STATE(2147)] = 69362, - [SMALL_STATE(2148)] = 69472, - [SMALL_STATE(2149)] = 69546, - [SMALL_STATE(2150)] = 69656, - [SMALL_STATE(2151)] = 69732, - [SMALL_STATE(2152)] = 69794, - [SMALL_STATE(2153)] = 69856, - [SMALL_STATE(2154)] = 69908, - [SMALL_STATE(2155)] = 69960, - [SMALL_STATE(2156)] = 70046, - [SMALL_STATE(2157)] = 70108, - [SMALL_STATE(2158)] = 70170, - [SMALL_STATE(2159)] = 70230, - [SMALL_STATE(2160)] = 70290, - [SMALL_STATE(2161)] = 70340, - [SMALL_STATE(2162)] = 70398, - [SMALL_STATE(2163)] = 70456, - [SMALL_STATE(2164)] = 70518, - [SMALL_STATE(2165)] = 70580, - [SMALL_STATE(2166)] = 70642, - [SMALL_STATE(2167)] = 70704, - [SMALL_STATE(2168)] = 70754, - [SMALL_STATE(2169)] = 70816, - [SMALL_STATE(2170)] = 70878, - [SMALL_STATE(2171)] = 70984, - [SMALL_STATE(2172)] = 71034, - [SMALL_STATE(2173)] = 71084, - [SMALL_STATE(2174)] = 71134, - [SMALL_STATE(2175)] = 71198, - [SMALL_STATE(2176)] = 71308, - [SMALL_STATE(2177)] = 71360, - [SMALL_STATE(2178)] = 71470, - [SMALL_STATE(2179)] = 71524, - [SMALL_STATE(2180)] = 71578, - [SMALL_STATE(2181)] = 71632, - [SMALL_STATE(2182)] = 71692, - [SMALL_STATE(2183)] = 71746, - [SMALL_STATE(2184)] = 71852, - [SMALL_STATE(2185)] = 71958, - [SMALL_STATE(2186)] = 72064, - [SMALL_STATE(2187)] = 72114, - [SMALL_STATE(2188)] = 72220, - [SMALL_STATE(2189)] = 72270, - [SMALL_STATE(2190)] = 72376, - [SMALL_STATE(2191)] = 72482, - [SMALL_STATE(2192)] = 72562, - [SMALL_STATE(2193)] = 72672, - [SMALL_STATE(2194)] = 72742, - [SMALL_STATE(2195)] = 72852, - [SMALL_STATE(2196)] = 72946, - [SMALL_STATE(2197)] = 73042, - [SMALL_STATE(2198)] = 73118, - [SMALL_STATE(2199)] = 73206, - [SMALL_STATE(2200)] = 73296, - [SMALL_STATE(2201)] = 73388, - [SMALL_STATE(2202)] = 73462, - [SMALL_STATE(2203)] = 73538, - [SMALL_STATE(2204)] = 73622, - [SMALL_STATE(2205)] = 73720, - [SMALL_STATE(2206)] = 73826, - [SMALL_STATE(2207)] = 73932, - [SMALL_STATE(2208)] = 74038, - [SMALL_STATE(2209)] = 74144, - [SMALL_STATE(2210)] = 74250, - [SMALL_STATE(2211)] = 74356, - [SMALL_STATE(2212)] = 74462, - [SMALL_STATE(2213)] = 74526, - [SMALL_STATE(2214)] = 74592, - [SMALL_STATE(2215)] = 74702, - [SMALL_STATE(2216)] = 74808, - [SMALL_STATE(2217)] = 74862, - [SMALL_STATE(2218)] = 74916, - [SMALL_STATE(2219)] = 74982, - [SMALL_STATE(2220)] = 75046, - [SMALL_STATE(2221)] = 75110, - [SMALL_STATE(2222)] = 75168, - [SMALL_STATE(2223)] = 75218, - [SMALL_STATE(2224)] = 75272, - [SMALL_STATE(2225)] = 75336, - [SMALL_STATE(2226)] = 75386, - [SMALL_STATE(2227)] = 75450, - [SMALL_STATE(2228)] = 75514, - [SMALL_STATE(2229)] = 75580, - [SMALL_STATE(2230)] = 75646, - [SMALL_STATE(2231)] = 75712, - [SMALL_STATE(2232)] = 75776, - [SMALL_STATE(2233)] = 75830, - [SMALL_STATE(2234)] = 75940, - [SMALL_STATE(2235)] = 75990, - [SMALL_STATE(2236)] = 76040, - [SMALL_STATE(2237)] = 76094, - [SMALL_STATE(2238)] = 76144, - [SMALL_STATE(2239)] = 76194, - [SMALL_STATE(2240)] = 76244, - [SMALL_STATE(2241)] = 76294, - [SMALL_STATE(2242)] = 76404, - [SMALL_STATE(2243)] = 76454, - [SMALL_STATE(2244)] = 76508, - [SMALL_STATE(2245)] = 76562, - [SMALL_STATE(2246)] = 76612, - [SMALL_STATE(2247)] = 76676, - [SMALL_STATE(2248)] = 76742, - [SMALL_STATE(2249)] = 76852, - [SMALL_STATE(2250)] = 76910, - [SMALL_STATE(2251)] = 76968, - [SMALL_STATE(2252)] = 77078, - [SMALL_STATE(2253)] = 77132, - [SMALL_STATE(2254)] = 77190, - [SMALL_STATE(2255)] = 77240, - [SMALL_STATE(2256)] = 77298, - [SMALL_STATE(2257)] = 77408, - [SMALL_STATE(2258)] = 77468, - [SMALL_STATE(2259)] = 77578, - [SMALL_STATE(2260)] = 77646, - [SMALL_STATE(2261)] = 77720, - [SMALL_STATE(2262)] = 77826, - [SMALL_STATE(2263)] = 77892, - [SMALL_STATE(2264)] = 77946, - [SMALL_STATE(2265)] = 78010, - [SMALL_STATE(2266)] = 78120, - [SMALL_STATE(2267)] = 78170, - [SMALL_STATE(2268)] = 78244, - [SMALL_STATE(2269)] = 78320, - [SMALL_STATE(2270)] = 78372, - [SMALL_STATE(2271)] = 78432, - [SMALL_STATE(2272)] = 78488, - [SMALL_STATE(2273)] = 78562, - [SMALL_STATE(2274)] = 78612, - [SMALL_STATE(2275)] = 78676, - [SMALL_STATE(2276)] = 78752, - [SMALL_STATE(2277)] = 78804, - [SMALL_STATE(2278)] = 78856, - [SMALL_STATE(2279)] = 78910, - [SMALL_STATE(2280)] = 78960, - [SMALL_STATE(2281)] = 79068, - [SMALL_STATE(2282)] = 79178, - [SMALL_STATE(2283)] = 79242, - [SMALL_STATE(2284)] = 79352, - [SMALL_STATE(2285)] = 79462, - [SMALL_STATE(2286)] = 79526, - [SMALL_STATE(2287)] = 79636, - [SMALL_STATE(2288)] = 79700, - [SMALL_STATE(2289)] = 79752, - [SMALL_STATE(2290)] = 79804, - [SMALL_STATE(2291)] = 79858, - [SMALL_STATE(2292)] = 79908, - [SMALL_STATE(2293)] = 79958, - [SMALL_STATE(2294)] = 80008, - [SMALL_STATE(2295)] = 80058, - [SMALL_STATE(2296)] = 80112, - [SMALL_STATE(2297)] = 80162, - [SMALL_STATE(2298)] = 80272, - [SMALL_STATE(2299)] = 80382, - [SMALL_STATE(2300)] = 80492, - [SMALL_STATE(2301)] = 80602, - [SMALL_STATE(2302)] = 80712, - [SMALL_STATE(2303)] = 80766, - [SMALL_STATE(2304)] = 80820, - [SMALL_STATE(2305)] = 80874, - [SMALL_STATE(2306)] = 80928, - [SMALL_STATE(2307)] = 80980, - [SMALL_STATE(2308)] = 81044, - [SMALL_STATE(2309)] = 81110, - [SMALL_STATE(2310)] = 81168, - [SMALL_STATE(2311)] = 81234, - [SMALL_STATE(2312)] = 81286, - [SMALL_STATE(2313)] = 81340, - [SMALL_STATE(2314)] = 81392, - [SMALL_STATE(2315)] = 81458, - [SMALL_STATE(2316)] = 81508, - [SMALL_STATE(2317)] = 81572, - [SMALL_STATE(2318)] = 81638, - [SMALL_STATE(2319)] = 81704, - [SMALL_STATE(2320)] = 81814, - [SMALL_STATE(2321)] = 81864, - [SMALL_STATE(2322)] = 81928, - [SMALL_STATE(2323)] = 81994, - [SMALL_STATE(2324)] = 82100, - [SMALL_STATE(2325)] = 82168, - [SMALL_STATE(2326)] = 82218, - [SMALL_STATE(2327)] = 82268, - [SMALL_STATE(2328)] = 82318, - [SMALL_STATE(2329)] = 82372, - [SMALL_STATE(2330)] = 82422, - [SMALL_STATE(2331)] = 82472, - [SMALL_STATE(2332)] = 82522, - [SMALL_STATE(2333)] = 82572, - [SMALL_STATE(2334)] = 82622, - [SMALL_STATE(2335)] = 82696, - [SMALL_STATE(2336)] = 82772, - [SMALL_STATE(2337)] = 82882, - [SMALL_STATE(2338)] = 82992, - [SMALL_STATE(2339)] = 83102, - [SMALL_STATE(2340)] = 83156, - [SMALL_STATE(2341)] = 83208, - [SMALL_STATE(2342)] = 83318, - [SMALL_STATE(2343)] = 83428, - [SMALL_STATE(2344)] = 83492, - [SMALL_STATE(2345)] = 83546, - [SMALL_STATE(2346)] = 83620, - [SMALL_STATE(2347)] = 83696, - [SMALL_STATE(2348)] = 83806, - [SMALL_STATE(2349)] = 83858, - [SMALL_STATE(2350)] = 83916, - [SMALL_STATE(2351)] = 83966, - [SMALL_STATE(2352)] = 84022, - [SMALL_STATE(2353)] = 84128, - [SMALL_STATE(2354)] = 84190, - [SMALL_STATE(2355)] = 84296, - [SMALL_STATE(2356)] = 84406, - [SMALL_STATE(2357)] = 84456, - [SMALL_STATE(2358)] = 84520, - [SMALL_STATE(2359)] = 84586, - [SMALL_STATE(2360)] = 84638, - [SMALL_STATE(2361)] = 84704, - [SMALL_STATE(2362)] = 84814, + [SMALL_STATE(2116)] = 67362, + [SMALL_STATE(2117)] = 67412, + [SMALL_STATE(2118)] = 67466, + [SMALL_STATE(2119)] = 67516, + [SMALL_STATE(2120)] = 67570, + [SMALL_STATE(2121)] = 67636, + [SMALL_STATE(2122)] = 67686, + [SMALL_STATE(2123)] = 67736, + [SMALL_STATE(2124)] = 67800, + [SMALL_STATE(2125)] = 67866, + [SMALL_STATE(2126)] = 67922, + [SMALL_STATE(2127)] = 67978, + [SMALL_STATE(2128)] = 68028, + [SMALL_STATE(2129)] = 68078, + [SMALL_STATE(2130)] = 68132, + [SMALL_STATE(2131)] = 68186, + [SMALL_STATE(2132)] = 68236, + [SMALL_STATE(2133)] = 68290, + [SMALL_STATE(2134)] = 68340, + [SMALL_STATE(2135)] = 68394, + [SMALL_STATE(2136)] = 68452, + [SMALL_STATE(2137)] = 68502, + [SMALL_STATE(2138)] = 68576, + [SMALL_STATE(2139)] = 68686, + [SMALL_STATE(2140)] = 68762, + [SMALL_STATE(2141)] = 68818, + [SMALL_STATE(2142)] = 68868, + [SMALL_STATE(2143)] = 68978, + [SMALL_STATE(2144)] = 69088, + [SMALL_STATE(2145)] = 69144, + [SMALL_STATE(2146)] = 69254, + [SMALL_STATE(2147)] = 69364, + [SMALL_STATE(2148)] = 69438, + [SMALL_STATE(2149)] = 69488, + [SMALL_STATE(2150)] = 69564, + [SMALL_STATE(2151)] = 69626, + [SMALL_STATE(2152)] = 69688, + [SMALL_STATE(2153)] = 69798, + [SMALL_STATE(2154)] = 69848, + [SMALL_STATE(2155)] = 69900, + [SMALL_STATE(2156)] = 69952, + [SMALL_STATE(2157)] = 70038, + [SMALL_STATE(2158)] = 70100, + [SMALL_STATE(2159)] = 70162, + [SMALL_STATE(2160)] = 70272, + [SMALL_STATE(2161)] = 70332, + [SMALL_STATE(2162)] = 70392, + [SMALL_STATE(2163)] = 70450, + [SMALL_STATE(2164)] = 70508, + [SMALL_STATE(2165)] = 70570, + [SMALL_STATE(2166)] = 70632, + [SMALL_STATE(2167)] = 70694, + [SMALL_STATE(2168)] = 70756, + [SMALL_STATE(2169)] = 70818, + [SMALL_STATE(2170)] = 70880, + [SMALL_STATE(2171)] = 70930, + [SMALL_STATE(2172)] = 71036, + [SMALL_STATE(2173)] = 71088, + [SMALL_STATE(2174)] = 71138, + [SMALL_STATE(2175)] = 71188, + [SMALL_STATE(2176)] = 71298, + [SMALL_STATE(2177)] = 71362, + [SMALL_STATE(2178)] = 71412, + [SMALL_STATE(2179)] = 71522, + [SMALL_STATE(2180)] = 71576, + [SMALL_STATE(2181)] = 71630, + [SMALL_STATE(2182)] = 71684, + [SMALL_STATE(2183)] = 71744, + [SMALL_STATE(2184)] = 71798, + [SMALL_STATE(2185)] = 71904, + [SMALL_STATE(2186)] = 72010, + [SMALL_STATE(2187)] = 72116, + [SMALL_STATE(2188)] = 72166, + [SMALL_STATE(2189)] = 72272, + [SMALL_STATE(2190)] = 72322, + [SMALL_STATE(2191)] = 72428, + [SMALL_STATE(2192)] = 72534, + [SMALL_STATE(2193)] = 72614, + [SMALL_STATE(2194)] = 72724, + [SMALL_STATE(2195)] = 72794, + [SMALL_STATE(2196)] = 72904, + [SMALL_STATE(2197)] = 72998, + [SMALL_STATE(2198)] = 73094, + [SMALL_STATE(2199)] = 73170, + [SMALL_STATE(2200)] = 73258, + [SMALL_STATE(2201)] = 73348, + [SMALL_STATE(2202)] = 73440, + [SMALL_STATE(2203)] = 73514, + [SMALL_STATE(2204)] = 73590, + [SMALL_STATE(2205)] = 73674, + [SMALL_STATE(2206)] = 73772, + [SMALL_STATE(2207)] = 73878, + [SMALL_STATE(2208)] = 73984, + [SMALL_STATE(2209)] = 74090, + [SMALL_STATE(2210)] = 74196, + [SMALL_STATE(2211)] = 74302, + [SMALL_STATE(2212)] = 74408, + [SMALL_STATE(2213)] = 74514, + [SMALL_STATE(2214)] = 74578, + [SMALL_STATE(2215)] = 74644, + [SMALL_STATE(2216)] = 74754, + [SMALL_STATE(2217)] = 74860, + [SMALL_STATE(2218)] = 74914, + [SMALL_STATE(2219)] = 74968, + [SMALL_STATE(2220)] = 75032, + [SMALL_STATE(2221)] = 75096, + [SMALL_STATE(2222)] = 75162, + [SMALL_STATE(2223)] = 75226, + [SMALL_STATE(2224)] = 75280, + [SMALL_STATE(2225)] = 75338, + [SMALL_STATE(2226)] = 75388, + [SMALL_STATE(2227)] = 75452, + [SMALL_STATE(2228)] = 75518, + [SMALL_STATE(2229)] = 75582, + [SMALL_STATE(2230)] = 75648, + [SMALL_STATE(2231)] = 75714, + [SMALL_STATE(2232)] = 75778, + [SMALL_STATE(2233)] = 75836, + [SMALL_STATE(2234)] = 75890, + [SMALL_STATE(2235)] = 75940, + [SMALL_STATE(2236)] = 75990, + [SMALL_STATE(2237)] = 76100, + [SMALL_STATE(2238)] = 76150, + [SMALL_STATE(2239)] = 76200, + [SMALL_STATE(2240)] = 76250, + [SMALL_STATE(2241)] = 76300, + [SMALL_STATE(2242)] = 76410, + [SMALL_STATE(2243)] = 76460, + [SMALL_STATE(2244)] = 76514, + [SMALL_STATE(2245)] = 76564, + [SMALL_STATE(2246)] = 76618, + [SMALL_STATE(2247)] = 76682, + [SMALL_STATE(2248)] = 76748, + [SMALL_STATE(2249)] = 76802, + [SMALL_STATE(2250)] = 76860, + [SMALL_STATE(2251)] = 76910, + [SMALL_STATE(2252)] = 76968, + [SMALL_STATE(2253)] = 77078, + [SMALL_STATE(2254)] = 77132, + [SMALL_STATE(2255)] = 77190, + [SMALL_STATE(2256)] = 77240, + [SMALL_STATE(2257)] = 77350, + [SMALL_STATE(2258)] = 77410, + [SMALL_STATE(2259)] = 77520, + [SMALL_STATE(2260)] = 77588, + [SMALL_STATE(2261)] = 77662, + [SMALL_STATE(2262)] = 77768, + [SMALL_STATE(2263)] = 77834, + [SMALL_STATE(2264)] = 77884, + [SMALL_STATE(2265)] = 77938, + [SMALL_STATE(2266)] = 78048, + [SMALL_STATE(2267)] = 78098, + [SMALL_STATE(2268)] = 78162, + [SMALL_STATE(2269)] = 78236, + [SMALL_STATE(2270)] = 78312, + [SMALL_STATE(2271)] = 78364, + [SMALL_STATE(2272)] = 78424, + [SMALL_STATE(2273)] = 78480, + [SMALL_STATE(2274)] = 78530, + [SMALL_STATE(2275)] = 78594, + [SMALL_STATE(2276)] = 78668, + [SMALL_STATE(2277)] = 78744, + [SMALL_STATE(2278)] = 78796, + [SMALL_STATE(2279)] = 78848, + [SMALL_STATE(2280)] = 78898, + [SMALL_STATE(2281)] = 79006, + [SMALL_STATE(2282)] = 79116, + [SMALL_STATE(2283)] = 79180, + [SMALL_STATE(2284)] = 79234, + [SMALL_STATE(2285)] = 79344, + [SMALL_STATE(2286)] = 79454, + [SMALL_STATE(2287)] = 79518, + [SMALL_STATE(2288)] = 79628, + [SMALL_STATE(2289)] = 79692, + [SMALL_STATE(2290)] = 79744, + [SMALL_STATE(2291)] = 79796, + [SMALL_STATE(2292)] = 79846, + [SMALL_STATE(2293)] = 79896, + [SMALL_STATE(2294)] = 79946, + [SMALL_STATE(2295)] = 79996, + [SMALL_STATE(2296)] = 80050, + [SMALL_STATE(2297)] = 80100, + [SMALL_STATE(2298)] = 80154, + [SMALL_STATE(2299)] = 80264, + [SMALL_STATE(2300)] = 80374, + [SMALL_STATE(2301)] = 80484, + [SMALL_STATE(2302)] = 80594, + [SMALL_STATE(2303)] = 80704, + [SMALL_STATE(2304)] = 80758, + [SMALL_STATE(2305)] = 80812, + [SMALL_STATE(2306)] = 80866, + [SMALL_STATE(2307)] = 80920, + [SMALL_STATE(2308)] = 80972, + [SMALL_STATE(2309)] = 81036, + [SMALL_STATE(2310)] = 81102, + [SMALL_STATE(2311)] = 81160, + [SMALL_STATE(2312)] = 81226, + [SMALL_STATE(2313)] = 81278, + [SMALL_STATE(2314)] = 81332, + [SMALL_STATE(2315)] = 81384, + [SMALL_STATE(2316)] = 81450, + [SMALL_STATE(2317)] = 81500, + [SMALL_STATE(2318)] = 81564, + [SMALL_STATE(2319)] = 81630, + [SMALL_STATE(2320)] = 81696, + [SMALL_STATE(2321)] = 81806, + [SMALL_STATE(2322)] = 81856, + [SMALL_STATE(2323)] = 81920, + [SMALL_STATE(2324)] = 81986, + [SMALL_STATE(2325)] = 82092, + [SMALL_STATE(2326)] = 82160, + [SMALL_STATE(2327)] = 82210, + [SMALL_STATE(2328)] = 82260, + [SMALL_STATE(2329)] = 82310, + [SMALL_STATE(2330)] = 82364, + [SMALL_STATE(2331)] = 82414, + [SMALL_STATE(2332)] = 82464, + [SMALL_STATE(2333)] = 82514, + [SMALL_STATE(2334)] = 82564, + [SMALL_STATE(2335)] = 82614, + [SMALL_STATE(2336)] = 82688, + [SMALL_STATE(2337)] = 82794, + [SMALL_STATE(2338)] = 82870, + [SMALL_STATE(2339)] = 82980, + [SMALL_STATE(2340)] = 83090, + [SMALL_STATE(2341)] = 83200, + [SMALL_STATE(2342)] = 83254, + [SMALL_STATE(2343)] = 83364, + [SMALL_STATE(2344)] = 83474, + [SMALL_STATE(2345)] = 83538, + [SMALL_STATE(2346)] = 83612, + [SMALL_STATE(2347)] = 83666, + [SMALL_STATE(2348)] = 83742, + [SMALL_STATE(2349)] = 83852, + [SMALL_STATE(2350)] = 83904, + [SMALL_STATE(2351)] = 83962, + [SMALL_STATE(2352)] = 84012, + [SMALL_STATE(2353)] = 84068, + [SMALL_STATE(2354)] = 84130, + [SMALL_STATE(2355)] = 84236, + [SMALL_STATE(2356)] = 84346, + [SMALL_STATE(2357)] = 84396, + [SMALL_STATE(2358)] = 84460, + [SMALL_STATE(2359)] = 84526, + [SMALL_STATE(2360)] = 84578, + [SMALL_STATE(2361)] = 84644, + [SMALL_STATE(2362)] = 84754, [SMALL_STATE(2363)] = 84864, - [SMALL_STATE(2364)] = 84969, - [SMALL_STATE(2365)] = 85028, - [SMALL_STATE(2366)] = 85133, - [SMALL_STATE(2367)] = 85238, - [SMALL_STATE(2368)] = 85343, - [SMALL_STATE(2369)] = 85448, - [SMALL_STATE(2370)] = 85553, - [SMALL_STATE(2371)] = 85632, - [SMALL_STATE(2372)] = 85701, - [SMALL_STATE(2373)] = 85794, - [SMALL_STATE(2374)] = 85889, - [SMALL_STATE(2375)] = 85964, - [SMALL_STATE(2376)] = 86051, - [SMALL_STATE(2377)] = 86140, - [SMALL_STATE(2378)] = 86231, - [SMALL_STATE(2379)] = 86304, - [SMALL_STATE(2380)] = 86379, - [SMALL_STATE(2381)] = 86462, - [SMALL_STATE(2382)] = 86559, - [SMALL_STATE(2383)] = 86664, - [SMALL_STATE(2384)] = 86769, - [SMALL_STATE(2385)] = 86874, - [SMALL_STATE(2386)] = 86979, - [SMALL_STATE(2387)] = 87084, - [SMALL_STATE(2388)] = 87189, - [SMALL_STATE(2389)] = 87294, - [SMALL_STATE(2390)] = 87347, - [SMALL_STATE(2391)] = 87398, - [SMALL_STATE(2392)] = 87457, - [SMALL_STATE(2393)] = 87562, - [SMALL_STATE(2394)] = 87667, - [SMALL_STATE(2395)] = 87772, - [SMALL_STATE(2396)] = 87877, - [SMALL_STATE(2397)] = 87982, - [SMALL_STATE(2398)] = 88061, - [SMALL_STATE(2399)] = 88130, - [SMALL_STATE(2400)] = 88223, - [SMALL_STATE(2401)] = 88318, - [SMALL_STATE(2402)] = 88393, - [SMALL_STATE(2403)] = 88480, - [SMALL_STATE(2404)] = 88569, - [SMALL_STATE(2405)] = 88660, - [SMALL_STATE(2406)] = 88733, - [SMALL_STATE(2407)] = 88808, - [SMALL_STATE(2408)] = 88891, - [SMALL_STATE(2409)] = 88988, - [SMALL_STATE(2410)] = 89093, - [SMALL_STATE(2411)] = 89198, - [SMALL_STATE(2412)] = 89303, - [SMALL_STATE(2413)] = 89408, - [SMALL_STATE(2414)] = 89513, - [SMALL_STATE(2415)] = 89618, - [SMALL_STATE(2416)] = 89723, - [SMALL_STATE(2417)] = 89828, - [SMALL_STATE(2418)] = 89933, - [SMALL_STATE(2419)] = 89992, - [SMALL_STATE(2420)] = 90061, - [SMALL_STATE(2421)] = 90120, - [SMALL_STATE(2422)] = 90209, - [SMALL_STATE(2423)] = 90314, - [SMALL_STATE(2424)] = 90419, - [SMALL_STATE(2425)] = 90474, - [SMALL_STATE(2426)] = 90529, - [SMALL_STATE(2427)] = 90588, + [SMALL_STATE(2364)] = 84915, + [SMALL_STATE(2365)] = 84968, + [SMALL_STATE(2366)] = 85027, + [SMALL_STATE(2367)] = 85086, + [SMALL_STATE(2368)] = 85145, + [SMALL_STATE(2369)] = 85250, + [SMALL_STATE(2370)] = 85355, + [SMALL_STATE(2371)] = 85460, + [SMALL_STATE(2372)] = 85565, + [SMALL_STATE(2373)] = 85670, + [SMALL_STATE(2374)] = 85749, + [SMALL_STATE(2375)] = 85818, + [SMALL_STATE(2376)] = 85911, + [SMALL_STATE(2377)] = 86006, + [SMALL_STATE(2378)] = 86081, + [SMALL_STATE(2379)] = 86168, + [SMALL_STATE(2380)] = 86257, + [SMALL_STATE(2381)] = 86348, + [SMALL_STATE(2382)] = 86421, + [SMALL_STATE(2383)] = 86496, + [SMALL_STATE(2384)] = 86579, + [SMALL_STATE(2385)] = 86676, + [SMALL_STATE(2386)] = 86781, + [SMALL_STATE(2387)] = 86886, + [SMALL_STATE(2388)] = 86991, + [SMALL_STATE(2389)] = 87096, + [SMALL_STATE(2390)] = 87201, + [SMALL_STATE(2391)] = 87306, + [SMALL_STATE(2392)] = 87411, + [SMALL_STATE(2393)] = 87516, + [SMALL_STATE(2394)] = 87621, + [SMALL_STATE(2395)] = 87680, + [SMALL_STATE(2396)] = 87785, + [SMALL_STATE(2397)] = 87890, + [SMALL_STATE(2398)] = 87995, + [SMALL_STATE(2399)] = 88100, + [SMALL_STATE(2400)] = 88205, + [SMALL_STATE(2401)] = 88284, + [SMALL_STATE(2402)] = 88353, + [SMALL_STATE(2403)] = 88446, + [SMALL_STATE(2404)] = 88541, + [SMALL_STATE(2405)] = 88616, + [SMALL_STATE(2406)] = 88703, + [SMALL_STATE(2407)] = 88792, + [SMALL_STATE(2408)] = 88883, + [SMALL_STATE(2409)] = 88956, + [SMALL_STATE(2410)] = 89031, + [SMALL_STATE(2411)] = 89114, + [SMALL_STATE(2412)] = 89211, + [SMALL_STATE(2413)] = 89316, + [SMALL_STATE(2414)] = 89421, + [SMALL_STATE(2415)] = 89526, + [SMALL_STATE(2416)] = 89631, + [SMALL_STATE(2417)] = 89736, + [SMALL_STATE(2418)] = 89841, + [SMALL_STATE(2419)] = 89946, + [SMALL_STATE(2420)] = 90051, + [SMALL_STATE(2421)] = 90102, + [SMALL_STATE(2422)] = 90171, + [SMALL_STATE(2423)] = 90230, + [SMALL_STATE(2424)] = 90285, + [SMALL_STATE(2425)] = 90374, + [SMALL_STATE(2426)] = 90479, + [SMALL_STATE(2427)] = 90584, [SMALL_STATE(2428)] = 90639, - [SMALL_STATE(2429)] = 90744, - [SMALL_STATE(2430)] = 90803, - [SMALL_STATE(2431)] = 90872, - [SMALL_STATE(2432)] = 90927, - [SMALL_STATE(2433)] = 90978, - [SMALL_STATE(2434)] = 91083, - [SMALL_STATE(2435)] = 91190, - [SMALL_STATE(2436)] = 91245, - [SMALL_STATE(2437)] = 91314, - [SMALL_STATE(2438)] = 91373, - [SMALL_STATE(2439)] = 91424, - [SMALL_STATE(2440)] = 91529, - [SMALL_STATE(2441)] = 91634, - [SMALL_STATE(2442)] = 91739, - [SMALL_STATE(2443)] = 91846, - [SMALL_STATE(2444)] = 91905, - [SMALL_STATE(2445)] = 91956, - [SMALL_STATE(2446)] = 92033, - [SMALL_STATE(2447)] = 92092, - [SMALL_STATE(2448)] = 92151, - [SMALL_STATE(2449)] = 92210, - [SMALL_STATE(2450)] = 92265, - [SMALL_STATE(2451)] = 92332, - [SMALL_STATE(2452)] = 92389, - [SMALL_STATE(2453)] = 92494, - [SMALL_STATE(2454)] = 92559, - [SMALL_STATE(2455)] = 92614, - [SMALL_STATE(2456)] = 92673, - [SMALL_STATE(2457)] = 92748, - [SMALL_STATE(2458)] = 92853, - [SMALL_STATE(2459)] = 92920, - [SMALL_STATE(2460)] = 92993, - [SMALL_STATE(2461)] = 93098, - [SMALL_STATE(2462)] = 93163, - [SMALL_STATE(2463)] = 93222, - [SMALL_STATE(2464)] = 93277, - [SMALL_STATE(2465)] = 93334, - [SMALL_STATE(2466)] = 93387, - [SMALL_STATE(2467)] = 93444, - [SMALL_STATE(2468)] = 93503, - [SMALL_STATE(2469)] = 93554, - [SMALL_STATE(2470)] = 93635, - [SMALL_STATE(2471)] = 93686, - [SMALL_STATE(2472)] = 93755, - [SMALL_STATE(2473)] = 93860, - [SMALL_STATE(2474)] = 93919, - [SMALL_STATE(2475)] = 93978, - [SMALL_STATE(2476)] = 94033, - [SMALL_STATE(2477)] = 94092, - [SMALL_STATE(2478)] = 94161, - [SMALL_STATE(2479)] = 94220, - [SMALL_STATE(2480)] = 94279, - [SMALL_STATE(2481)] = 94332, - [SMALL_STATE(2482)] = 94391, - [SMALL_STATE(2483)] = 94448, - [SMALL_STATE(2484)] = 94517, - [SMALL_STATE(2485)] = 94576, - [SMALL_STATE(2486)] = 94635, - [SMALL_STATE(2487)] = 94740, - [SMALL_STATE(2488)] = 94797, - [SMALL_STATE(2489)] = 94856, - [SMALL_STATE(2490)] = 94961, - [SMALL_STATE(2491)] = 95020, - [SMALL_STATE(2492)] = 95125, - [SMALL_STATE(2493)] = 95230, - [SMALL_STATE(2494)] = 95335, - [SMALL_STATE(2495)] = 95440, - [SMALL_STATE(2496)] = 95545, - [SMALL_STATE(2497)] = 95624, - [SMALL_STATE(2498)] = 95693, - [SMALL_STATE(2499)] = 95786, - [SMALL_STATE(2500)] = 95881, - [SMALL_STATE(2501)] = 95956, - [SMALL_STATE(2502)] = 96043, - [SMALL_STATE(2503)] = 96132, - [SMALL_STATE(2504)] = 96223, - [SMALL_STATE(2505)] = 96296, - [SMALL_STATE(2506)] = 96371, - [SMALL_STATE(2507)] = 96454, - [SMALL_STATE(2508)] = 96551, - [SMALL_STATE(2509)] = 96656, - [SMALL_STATE(2510)] = 96761, - [SMALL_STATE(2511)] = 96866, - [SMALL_STATE(2512)] = 96971, - [SMALL_STATE(2513)] = 97076, - [SMALL_STATE(2514)] = 97181, - [SMALL_STATE(2515)] = 97286, - [SMALL_STATE(2516)] = 97391, - [SMALL_STATE(2517)] = 97442, - [SMALL_STATE(2518)] = 97493, - [SMALL_STATE(2519)] = 97560, - [SMALL_STATE(2520)] = 97633, - [SMALL_STATE(2521)] = 97738, - [SMALL_STATE(2522)] = 97803, - [SMALL_STATE(2523)] = 97862, - [SMALL_STATE(2524)] = 97921, - [SMALL_STATE(2525)] = 97978, - [SMALL_STATE(2526)] = 98035, - [SMALL_STATE(2527)] = 98086, - [SMALL_STATE(2528)] = 98143, + [SMALL_STATE(2429)] = 90694, + [SMALL_STATE(2430)] = 90753, + [SMALL_STATE(2431)] = 90822, + [SMALL_STATE(2432)] = 90881, + [SMALL_STATE(2433)] = 90932, + [SMALL_STATE(2434)] = 91037, + [SMALL_STATE(2435)] = 91144, + [SMALL_STATE(2436)] = 91199, + [SMALL_STATE(2437)] = 91304, + [SMALL_STATE(2438)] = 91359, + [SMALL_STATE(2439)] = 91414, + [SMALL_STATE(2440)] = 91519, + [SMALL_STATE(2441)] = 91624, + [SMALL_STATE(2442)] = 91675, + [SMALL_STATE(2443)] = 91780, + [SMALL_STATE(2444)] = 91885, + [SMALL_STATE(2445)] = 91992, + [SMALL_STATE(2446)] = 92051, + [SMALL_STATE(2447)] = 92110, + [SMALL_STATE(2448)] = 92187, + [SMALL_STATE(2449)] = 92238, + [SMALL_STATE(2450)] = 92297, + [SMALL_STATE(2451)] = 92356, + [SMALL_STATE(2452)] = 92413, + [SMALL_STATE(2453)] = 92480, + [SMALL_STATE(2454)] = 92553, + [SMALL_STATE(2455)] = 92658, + [SMALL_STATE(2456)] = 92723, + [SMALL_STATE(2457)] = 92782, + [SMALL_STATE(2458)] = 92841, + [SMALL_STATE(2459)] = 92916, + [SMALL_STATE(2460)] = 93021, + [SMALL_STATE(2461)] = 93080, + [SMALL_STATE(2462)] = 93139, + [SMALL_STATE(2463)] = 93206, + [SMALL_STATE(2464)] = 93279, + [SMALL_STATE(2465)] = 93384, + [SMALL_STATE(2466)] = 93449, + [SMALL_STATE(2467)] = 93500, + [SMALL_STATE(2468)] = 93557, + [SMALL_STATE(2469)] = 93626, + [SMALL_STATE(2470)] = 93683, + [SMALL_STATE(2471)] = 93736, + [SMALL_STATE(2472)] = 93805, + [SMALL_STATE(2473)] = 93864, + [SMALL_STATE(2474)] = 93945, + [SMALL_STATE(2475)] = 94004, + [SMALL_STATE(2476)] = 94109, + [SMALL_STATE(2477)] = 94168, + [SMALL_STATE(2478)] = 94223, + [SMALL_STATE(2479)] = 94282, + [SMALL_STATE(2480)] = 94341, + [SMALL_STATE(2481)] = 94400, + [SMALL_STATE(2482)] = 94469, + [SMALL_STATE(2483)] = 94528, + [SMALL_STATE(2484)] = 94587, + [SMALL_STATE(2485)] = 94640, + [SMALL_STATE(2486)] = 94697, + [SMALL_STATE(2487)] = 94766, + [SMALL_STATE(2488)] = 94817, + [SMALL_STATE(2489)] = 94874, + [SMALL_STATE(2490)] = 94933, + [SMALL_STATE(2491)] = 94990, + [SMALL_STATE(2492)] = 95049, + [SMALL_STATE(2493)] = 95154, + [SMALL_STATE(2494)] = 95259, + [SMALL_STATE(2495)] = 95364, + [SMALL_STATE(2496)] = 95469, + [SMALL_STATE(2497)] = 95574, + [SMALL_STATE(2498)] = 95653, + [SMALL_STATE(2499)] = 95722, + [SMALL_STATE(2500)] = 95815, + [SMALL_STATE(2501)] = 95910, + [SMALL_STATE(2502)] = 95985, + [SMALL_STATE(2503)] = 96072, + [SMALL_STATE(2504)] = 96161, + [SMALL_STATE(2505)] = 96252, + [SMALL_STATE(2506)] = 96325, + [SMALL_STATE(2507)] = 96400, + [SMALL_STATE(2508)] = 96483, + [SMALL_STATE(2509)] = 96580, + [SMALL_STATE(2510)] = 96685, + [SMALL_STATE(2511)] = 96790, + [SMALL_STATE(2512)] = 96895, + [SMALL_STATE(2513)] = 97000, + [SMALL_STATE(2514)] = 97105, + [SMALL_STATE(2515)] = 97210, + [SMALL_STATE(2516)] = 97315, + [SMALL_STATE(2517)] = 97420, + [SMALL_STATE(2518)] = 97471, + [SMALL_STATE(2519)] = 97522, + [SMALL_STATE(2520)] = 97589, + [SMALL_STATE(2521)] = 97662, + [SMALL_STATE(2522)] = 97767, + [SMALL_STATE(2523)] = 97832, + [SMALL_STATE(2524)] = 97891, + [SMALL_STATE(2525)] = 97996, + [SMALL_STATE(2526)] = 98053, + [SMALL_STATE(2527)] = 98110, + [SMALL_STATE(2528)] = 98161, [SMALL_STATE(2529)] = 98216, [SMALL_STATE(2530)] = 98298, - [SMALL_STATE(2531)] = 98362, - [SMALL_STATE(2532)] = 98422, - [SMALL_STATE(2533)] = 98482, - [SMALL_STATE(2534)] = 98536, - [SMALL_STATE(2535)] = 98586, - [SMALL_STATE(2536)] = 98640, - [SMALL_STATE(2537)] = 98708, - [SMALL_STATE(2538)] = 98778, - [SMALL_STATE(2539)] = 98882, - [SMALL_STATE(2540)] = 98932, - [SMALL_STATE(2541)] = 98982, - [SMALL_STATE(2542)] = 99032, - [SMALL_STATE(2543)] = 99082, - [SMALL_STATE(2544)] = 99148, - [SMALL_STATE(2545)] = 99220, - [SMALL_STATE(2546)] = 99324, - [SMALL_STATE(2547)] = 99388, - [SMALL_STATE(2548)] = 99442, - [SMALL_STATE(2549)] = 99506, - [SMALL_STATE(2550)] = 99566, - [SMALL_STATE(2551)] = 99624, - [SMALL_STATE(2552)] = 99688, - [SMALL_STATE(2553)] = 99748, - [SMALL_STATE(2554)] = 99852, - [SMALL_STATE(2555)] = 99956, - [SMALL_STATE(2556)] = 100060, - [SMALL_STATE(2557)] = 100164, - [SMALL_STATE(2558)] = 100268, - [SMALL_STATE(2559)] = 100372, - [SMALL_STATE(2560)] = 100438, - [SMALL_STATE(2561)] = 100516, - [SMALL_STATE(2562)] = 100584, - [SMALL_STATE(2563)] = 100652, - [SMALL_STATE(2564)] = 100744, - [SMALL_STATE(2565)] = 100798, - [SMALL_STATE(2566)] = 100902, - [SMALL_STATE(2567)] = 100996, - [SMALL_STATE(2568)] = 101070, - [SMALL_STATE(2569)] = 101156, - [SMALL_STATE(2570)] = 101244, - [SMALL_STATE(2571)] = 101334, - [SMALL_STATE(2572)] = 101406, - [SMALL_STATE(2573)] = 101510, - [SMALL_STATE(2574)] = 101570, - [SMALL_STATE(2575)] = 101624, - [SMALL_STATE(2576)] = 101728, - [SMALL_STATE(2577)] = 101782, - [SMALL_STATE(2578)] = 101856, - [SMALL_STATE(2579)] = 101952, - [SMALL_STATE(2580)] = 102056, - [SMALL_STATE(2581)] = 102160, - [SMALL_STATE(2582)] = 102264, - [SMALL_STATE(2583)] = 102314, - [SMALL_STATE(2584)] = 102364, - [SMALL_STATE(2585)] = 102414, - [SMALL_STATE(2586)] = 102464, - [SMALL_STATE(2587)] = 102568, - [SMALL_STATE(2588)] = 102622, - [SMALL_STATE(2589)] = 102726, - [SMALL_STATE(2590)] = 102830, - [SMALL_STATE(2591)] = 102894, - [SMALL_STATE(2592)] = 102948, - [SMALL_STATE(2593)] = 102996, - [SMALL_STATE(2594)] = 103102, - [SMALL_STATE(2595)] = 103206, - [SMALL_STATE(2596)] = 103310, - [SMALL_STATE(2597)] = 103414, - [SMALL_STATE(2598)] = 103468, - [SMALL_STATE(2599)] = 103572, - [SMALL_STATE(2600)] = 103622, - [SMALL_STATE(2601)] = 103726, - [SMALL_STATE(2602)] = 103798, - [SMALL_STATE(2603)] = 103846, - [SMALL_STATE(2604)] = 103902, - [SMALL_STATE(2605)] = 103950, - [SMALL_STATE(2606)] = 104054, - [SMALL_STATE(2607)] = 104108, + [SMALL_STATE(2531)] = 98358, + [SMALL_STATE(2532)] = 98408, + [SMALL_STATE(2533)] = 98472, + [SMALL_STATE(2534)] = 98532, + [SMALL_STATE(2535)] = 98636, + [SMALL_STATE(2536)] = 98740, + [SMALL_STATE(2537)] = 98790, + [SMALL_STATE(2538)] = 98894, + [SMALL_STATE(2539)] = 98962, + [SMALL_STATE(2540)] = 99066, + [SMALL_STATE(2541)] = 99136, + [SMALL_STATE(2542)] = 99240, + [SMALL_STATE(2543)] = 99344, + [SMALL_STATE(2544)] = 99394, + [SMALL_STATE(2545)] = 99444, + [SMALL_STATE(2546)] = 99494, + [SMALL_STATE(2547)] = 99548, + [SMALL_STATE(2548)] = 99614, + [SMALL_STATE(2549)] = 99686, + [SMALL_STATE(2550)] = 99790, + [SMALL_STATE(2551)] = 99854, + [SMALL_STATE(2552)] = 99932, + [SMALL_STATE(2553)] = 100000, + [SMALL_STATE(2554)] = 100064, + [SMALL_STATE(2555)] = 100124, + [SMALL_STATE(2556)] = 100216, + [SMALL_STATE(2557)] = 100280, + [SMALL_STATE(2558)] = 100340, + [SMALL_STATE(2559)] = 100444, + [SMALL_STATE(2560)] = 100538, + [SMALL_STATE(2561)] = 100612, + [SMALL_STATE(2562)] = 100698, + [SMALL_STATE(2563)] = 100786, + [SMALL_STATE(2564)] = 100876, + [SMALL_STATE(2565)] = 100948, + [SMALL_STATE(2566)] = 101014, + [SMALL_STATE(2567)] = 101068, + [SMALL_STATE(2568)] = 101142, + [SMALL_STATE(2569)] = 101210, + [SMALL_STATE(2570)] = 101306, + [SMALL_STATE(2571)] = 101410, + [SMALL_STATE(2572)] = 101514, + [SMALL_STATE(2573)] = 101618, + [SMALL_STATE(2574)] = 101672, + [SMALL_STATE(2575)] = 101726, + [SMALL_STATE(2576)] = 101830, + [SMALL_STATE(2577)] = 101934, + [SMALL_STATE(2578)] = 102038, + [SMALL_STATE(2579)] = 102142, + [SMALL_STATE(2580)] = 102246, + [SMALL_STATE(2581)] = 102350, + [SMALL_STATE(2582)] = 102398, + [SMALL_STATE(2583)] = 102502, + [SMALL_STATE(2584)] = 102606, + [SMALL_STATE(2585)] = 102710, + [SMALL_STATE(2586)] = 102764, + [SMALL_STATE(2587)] = 102814, + [SMALL_STATE(2588)] = 102886, + [SMALL_STATE(2589)] = 102936, + [SMALL_STATE(2590)] = 102986, + [SMALL_STATE(2591)] = 103036, + [SMALL_STATE(2592)] = 103086, + [SMALL_STATE(2593)] = 103190, + [SMALL_STATE(2594)] = 103250, + [SMALL_STATE(2595)] = 103304, + [SMALL_STATE(2596)] = 103410, + [SMALL_STATE(2597)] = 103474, + [SMALL_STATE(2598)] = 103528, + [SMALL_STATE(2599)] = 103632, + [SMALL_STATE(2600)] = 103680, + [SMALL_STATE(2601)] = 103734, + [SMALL_STATE(2602)] = 103782, + [SMALL_STATE(2603)] = 103838, + [SMALL_STATE(2604)] = 103942, + [SMALL_STATE(2605)] = 104046, + [SMALL_STATE(2606)] = 104100, + [SMALL_STATE(2607)] = 104158, [SMALL_STATE(2608)] = 104212, [SMALL_STATE(2609)] = 104316, [SMALL_STATE(2610)] = 104366, - [SMALL_STATE(2611)] = 104470, - [SMALL_STATE(2612)] = 104534, + [SMALL_STATE(2611)] = 104420, + [SMALL_STATE(2612)] = 104484, [SMALL_STATE(2613)] = 104588, - [SMALL_STATE(2614)] = 104645, - [SMALL_STATE(2615)] = 104702, - [SMALL_STATE(2616)] = 104803, - [SMALL_STATE(2617)] = 104866, - [SMALL_STATE(2618)] = 104923, - [SMALL_STATE(2619)] = 104982, - [SMALL_STATE(2620)] = 105041, - [SMALL_STATE(2621)] = 105100, - [SMALL_STATE(2622)] = 105159, - [SMALL_STATE(2623)] = 105218, - [SMALL_STATE(2624)] = 105275, - [SMALL_STATE(2625)] = 105332, - [SMALL_STATE(2626)] = 105385, - [SMALL_STATE(2627)] = 105446, - [SMALL_STATE(2628)] = 105503, - [SMALL_STATE(2629)] = 105562, - [SMALL_STATE(2630)] = 105619, - [SMALL_STATE(2631)] = 105678, - [SMALL_STATE(2632)] = 105727, - [SMALL_STATE(2633)] = 105784, - [SMALL_STATE(2634)] = 105841, - [SMALL_STATE(2635)] = 105900, - [SMALL_STATE(2636)] = 105959, - [SMALL_STATE(2637)] = 106016, - [SMALL_STATE(2638)] = 106073, - [SMALL_STATE(2639)] = 106174, - [SMALL_STATE(2640)] = 106231, - [SMALL_STATE(2641)] = 106296, - [SMALL_STATE(2642)] = 106355, - [SMALL_STATE(2643)] = 106418, - [SMALL_STATE(2644)] = 106475, - [SMALL_STATE(2645)] = 106532, - [SMALL_STATE(2646)] = 106589, - [SMALL_STATE(2647)] = 106638, - [SMALL_STATE(2648)] = 106695, - [SMALL_STATE(2649)] = 106744, - [SMALL_STATE(2650)] = 106793, - [SMALL_STATE(2651)] = 106852, + [SMALL_STATE(2614)] = 104641, + [SMALL_STATE(2615)] = 104704, + [SMALL_STATE(2616)] = 104763, + [SMALL_STATE(2617)] = 104822, + [SMALL_STATE(2618)] = 104879, + [SMALL_STATE(2619)] = 104936, + [SMALL_STATE(2620)] = 104993, + [SMALL_STATE(2621)] = 105052, + [SMALL_STATE(2622)] = 105109, + [SMALL_STATE(2623)] = 105168, + [SMALL_STATE(2624)] = 105227, + [SMALL_STATE(2625)] = 105286, + [SMALL_STATE(2626)] = 105345, + [SMALL_STATE(2627)] = 105406, + [SMALL_STATE(2628)] = 105471, + [SMALL_STATE(2629)] = 105528, + [SMALL_STATE(2630)] = 105591, + [SMALL_STATE(2631)] = 105640, + [SMALL_STATE(2632)] = 105697, + [SMALL_STATE(2633)] = 105756, + [SMALL_STATE(2634)] = 105815, + [SMALL_STATE(2635)] = 105872, + [SMALL_STATE(2636)] = 105929, + [SMALL_STATE(2637)] = 105988, + [SMALL_STATE(2638)] = 106047, + [SMALL_STATE(2639)] = 106148, + [SMALL_STATE(2640)] = 106205, + [SMALL_STATE(2641)] = 106262, + [SMALL_STATE(2642)] = 106319, + [SMALL_STATE(2643)] = 106376, + [SMALL_STATE(2644)] = 106477, + [SMALL_STATE(2645)] = 106534, + [SMALL_STATE(2646)] = 106591, + [SMALL_STATE(2647)] = 106640, + [SMALL_STATE(2648)] = 106697, + [SMALL_STATE(2649)] = 106746, + [SMALL_STATE(2650)] = 106795, + [SMALL_STATE(2651)] = 106854, [SMALL_STATE(2652)] = 106911, [SMALL_STATE(2653)] = 106957, - [SMALL_STATE(2654)] = 107003, - [SMALL_STATE(2655)] = 107051, - [SMALL_STATE(2656)] = 107099, - [SMALL_STATE(2657)] = 107145, - [SMALL_STATE(2658)] = 107193, - [SMALL_STATE(2659)] = 107239, - [SMALL_STATE(2660)] = 107289, - [SMALL_STATE(2661)] = 107337, + [SMALL_STATE(2654)] = 107005, + [SMALL_STATE(2655)] = 107053, + [SMALL_STATE(2656)] = 107103, + [SMALL_STATE(2657)] = 107149, + [SMALL_STATE(2658)] = 107195, + [SMALL_STATE(2659)] = 107241, + [SMALL_STATE(2660)] = 107287, + [SMALL_STATE(2661)] = 107335, [SMALL_STATE(2662)] = 107383, [SMALL_STATE(2663)] = 107431, [SMALL_STATE(2664)] = 107477, - [SMALL_STATE(2665)] = 107523, + [SMALL_STATE(2665)] = 107525, [SMALL_STATE(2666)] = 107571, [SMALL_STATE(2667)] = 107619, - [SMALL_STATE(2668)] = 107667, - [SMALL_STATE(2669)] = 107713, - [SMALL_STATE(2670)] = 107759, - [SMALL_STATE(2671)] = 107805, - [SMALL_STATE(2672)] = 107851, - [SMALL_STATE(2673)] = 107897, - [SMALL_STATE(2674)] = 107943, - [SMALL_STATE(2675)] = 107989, - [SMALL_STATE(2676)] = 108035, - [SMALL_STATE(2677)] = 108081, - [SMALL_STATE(2678)] = 108127, - [SMALL_STATE(2679)] = 108173, - [SMALL_STATE(2680)] = 108221, - [SMALL_STATE(2681)] = 108267, - [SMALL_STATE(2682)] = 108313, - [SMALL_STATE(2683)] = 108359, - [SMALL_STATE(2684)] = 108405, - [SMALL_STATE(2685)] = 108451, - [SMALL_STATE(2686)] = 108497, - [SMALL_STATE(2687)] = 108547, - [SMALL_STATE(2688)] = 108593, - [SMALL_STATE(2689)] = 108639, - [SMALL_STATE(2690)] = 108685, - [SMALL_STATE(2691)] = 108743, - [SMALL_STATE(2692)] = 108789, - [SMALL_STATE(2693)] = 108835, - [SMALL_STATE(2694)] = 108881, - [SMALL_STATE(2695)] = 108927, - [SMALL_STATE(2696)] = 108975, - [SMALL_STATE(2697)] = 109021, - [SMALL_STATE(2698)] = 109067, - [SMALL_STATE(2699)] = 109113, - [SMALL_STATE(2700)] = 109159, - [SMALL_STATE(2701)] = 109207, - [SMALL_STATE(2702)] = 109253, - [SMALL_STATE(2703)] = 109299, - [SMALL_STATE(2704)] = 109345, - [SMALL_STATE(2705)] = 109391, - [SMALL_STATE(2706)] = 109437, - [SMALL_STATE(2707)] = 109485, - [SMALL_STATE(2708)] = 109531, + [SMALL_STATE(2668)] = 107665, + [SMALL_STATE(2669)] = 107723, + [SMALL_STATE(2670)] = 107769, + [SMALL_STATE(2671)] = 107815, + [SMALL_STATE(2672)] = 107861, + [SMALL_STATE(2673)] = 107907, + [SMALL_STATE(2674)] = 107953, + [SMALL_STATE(2675)] = 108003, + [SMALL_STATE(2676)] = 108049, + [SMALL_STATE(2677)] = 108095, + [SMALL_STATE(2678)] = 108141, + [SMALL_STATE(2679)] = 108187, + [SMALL_STATE(2680)] = 108233, + [SMALL_STATE(2681)] = 108279, + [SMALL_STATE(2682)] = 108327, + [SMALL_STATE(2683)] = 108373, + [SMALL_STATE(2684)] = 108419, + [SMALL_STATE(2685)] = 108465, + [SMALL_STATE(2686)] = 108511, + [SMALL_STATE(2687)] = 108567, + [SMALL_STATE(2688)] = 108613, + [SMALL_STATE(2689)] = 108659, + [SMALL_STATE(2690)] = 108705, + [SMALL_STATE(2691)] = 108751, + [SMALL_STATE(2692)] = 108797, + [SMALL_STATE(2693)] = 108843, + [SMALL_STATE(2694)] = 108889, + [SMALL_STATE(2695)] = 108935, + [SMALL_STATE(2696)] = 108983, + [SMALL_STATE(2697)] = 109029, + [SMALL_STATE(2698)] = 109075, + [SMALL_STATE(2699)] = 109121, + [SMALL_STATE(2700)] = 109167, + [SMALL_STATE(2701)] = 109213, + [SMALL_STATE(2702)] = 109259, + [SMALL_STATE(2703)] = 109305, + [SMALL_STATE(2704)] = 109351, + [SMALL_STATE(2705)] = 109397, + [SMALL_STATE(2706)] = 109445, + [SMALL_STATE(2707)] = 109493, + [SMALL_STATE(2708)] = 109541, [SMALL_STATE(2709)] = 109587, - [SMALL_STATE(2710)] = 109637, + [SMALL_STATE(2710)] = 109633, [SMALL_STATE(2711)] = 109683, [SMALL_STATE(2712)] = 109729, - [SMALL_STATE(2713)] = 109775, + [SMALL_STATE(2713)] = 109777, [SMALL_STATE(2714)] = 109823, - [SMALL_STATE(2715)] = 109871, - [SMALL_STATE(2716)] = 109917, - [SMALL_STATE(2717)] = 109963, + [SMALL_STATE(2715)] = 109869, + [SMALL_STATE(2716)] = 109915, + [SMALL_STATE(2717)] = 109961, [SMALL_STATE(2718)] = 110009, [SMALL_STATE(2719)] = 110054, - [SMALL_STATE(2720)] = 110105, - [SMALL_STATE(2721)] = 110154, - [SMALL_STATE(2722)] = 110207, - [SMALL_STATE(2723)] = 110252, - [SMALL_STATE(2724)] = 110319, - [SMALL_STATE(2725)] = 110370, - [SMALL_STATE(2726)] = 110415, + [SMALL_STATE(2720)] = 110121, + [SMALL_STATE(2721)] = 110170, + [SMALL_STATE(2722)] = 110215, + [SMALL_STATE(2723)] = 110268, + [SMALL_STATE(2724)] = 110313, + [SMALL_STATE(2725)] = 110358, + [SMALL_STATE(2726)] = 110409, [SMALL_STATE(2727)] = 110460, - [SMALL_STATE(2728)] = 110505, - [SMALL_STATE(2729)] = 110550, - [SMALL_STATE(2730)] = 110595, + [SMALL_STATE(2728)] = 110513, + [SMALL_STATE(2729)] = 110558, + [SMALL_STATE(2730)] = 110603, [SMALL_STATE(2731)] = 110648, - [SMALL_STATE(2732)] = 110706, - [SMALL_STATE(2733)] = 110778, - [SMALL_STATE(2734)] = 110838, - [SMALL_STATE(2735)] = 110894, - [SMALL_STATE(2736)] = 110952, - [SMALL_STATE(2737)] = 111012, - [SMALL_STATE(2738)] = 111070, - [SMALL_STATE(2739)] = 111118, - [SMALL_STATE(2740)] = 111176, - [SMALL_STATE(2741)] = 111224, - [SMALL_STATE(2742)] = 111284, + [SMALL_STATE(2732)] = 110708, + [SMALL_STATE(2733)] = 110780, + [SMALL_STATE(2734)] = 110852, + [SMALL_STATE(2735)] = 110910, + [SMALL_STATE(2736)] = 110970, + [SMALL_STATE(2737)] = 111030, + [SMALL_STATE(2738)] = 111078, + [SMALL_STATE(2739)] = 111136, + [SMALL_STATE(2740)] = 111194, + [SMALL_STATE(2741)] = 111250, + [SMALL_STATE(2742)] = 111308, [SMALL_STATE(2743)] = 111356, [SMALL_STATE(2744)] = 111409, [SMALL_STATE(2745)] = 111462, @@ -276657,7 +276657,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2759)] = 112210, [SMALL_STATE(2760)] = 112263, [SMALL_STATE(2761)] = 112316, - [SMALL_STATE(2762)] = 112379, + [SMALL_STATE(2762)] = 112369, [SMALL_STATE(2763)] = 112432, [SMALL_STATE(2764)] = 112485, [SMALL_STATE(2765)] = 112538, @@ -276669,50 +276669,50 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2771)] = 112856, [SMALL_STATE(2772)] = 112909, [SMALL_STATE(2773)] = 112962, - [SMALL_STATE(2774)] = 113026, - [SMALL_STATE(2775)] = 113080, - [SMALL_STATE(2776)] = 113134, - [SMALL_STATE(2777)] = 113188, - [SMALL_STATE(2778)] = 113242, + [SMALL_STATE(2774)] = 113016, + [SMALL_STATE(2775)] = 113070, + [SMALL_STATE(2776)] = 113150, + [SMALL_STATE(2777)] = 113214, + [SMALL_STATE(2778)] = 113268, [SMALL_STATE(2779)] = 113322, [SMALL_STATE(2780)] = 113376, - [SMALL_STATE(2781)] = 113430, - [SMALL_STATE(2782)] = 113494, - [SMALL_STATE(2783)] = 113554, - [SMALL_STATE(2784)] = 113614, - [SMALL_STATE(2785)] = 113694, + [SMALL_STATE(2781)] = 113436, + [SMALL_STATE(2782)] = 113490, + [SMALL_STATE(2783)] = 113544, + [SMALL_STATE(2784)] = 113624, + [SMALL_STATE(2785)] = 113684, [SMALL_STATE(2786)] = 113748, - [SMALL_STATE(2787)] = 113828, + [SMALL_STATE(2787)] = 113812, [SMALL_STATE(2788)] = 113892, [SMALL_STATE(2789)] = 113946, [SMALL_STATE(2790)] = 114000, - [SMALL_STATE(2791)] = 114054, + [SMALL_STATE(2791)] = 114080, [SMALL_STATE(2792)] = 114134, [SMALL_STATE(2793)] = 114214, - [SMALL_STATE(2794)] = 114271, - [SMALL_STATE(2795)] = 114328, - [SMALL_STATE(2796)] = 114385, - [SMALL_STATE(2797)] = 114426, - [SMALL_STATE(2798)] = 114483, - [SMALL_STATE(2799)] = 114536, - [SMALL_STATE(2800)] = 114593, - [SMALL_STATE(2801)] = 114650, - [SMALL_STATE(2802)] = 114707, - [SMALL_STATE(2803)] = 114748, - [SMALL_STATE(2804)] = 114791, - [SMALL_STATE(2805)] = 114848, - [SMALL_STATE(2806)] = 114905, - [SMALL_STATE(2807)] = 114962, - [SMALL_STATE(2808)] = 115019, - [SMALL_STATE(2809)] = 115060, - [SMALL_STATE(2810)] = 115117, - [SMALL_STATE(2811)] = 115174, - [SMALL_STATE(2812)] = 115215, - [SMALL_STATE(2813)] = 115256, - [SMALL_STATE(2814)] = 115313, - [SMALL_STATE(2815)] = 115364, - [SMALL_STATE(2816)] = 115421, - [SMALL_STATE(2817)] = 115478, + [SMALL_STATE(2794)] = 114255, + [SMALL_STATE(2795)] = 114312, + [SMALL_STATE(2796)] = 114353, + [SMALL_STATE(2797)] = 114394, + [SMALL_STATE(2798)] = 114445, + [SMALL_STATE(2799)] = 114502, + [SMALL_STATE(2800)] = 114559, + [SMALL_STATE(2801)] = 114612, + [SMALL_STATE(2802)] = 114669, + [SMALL_STATE(2803)] = 114726, + [SMALL_STATE(2804)] = 114783, + [SMALL_STATE(2805)] = 114824, + [SMALL_STATE(2806)] = 114881, + [SMALL_STATE(2807)] = 114938, + [SMALL_STATE(2808)] = 114995, + [SMALL_STATE(2809)] = 115048, + [SMALL_STATE(2810)] = 115105, + [SMALL_STATE(2811)] = 115162, + [SMALL_STATE(2812)] = 115219, + [SMALL_STATE(2813)] = 115276, + [SMALL_STATE(2814)] = 115319, + [SMALL_STATE(2815)] = 115376, + [SMALL_STATE(2816)] = 115417, + [SMALL_STATE(2817)] = 115474, [SMALL_STATE(2818)] = 115531, [SMALL_STATE(2819)] = 115579, [SMALL_STATE(2820)] = 115627, @@ -276723,11 +276723,11 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2825)] = 115867, [SMALL_STATE(2826)] = 115915, [SMALL_STATE(2827)] = 115963, - [SMALL_STATE(2828)] = 116011, - [SMALL_STATE(2829)] = 116059, - [SMALL_STATE(2830)] = 116107, - [SMALL_STATE(2831)] = 116155, - [SMALL_STATE(2832)] = 116203, + [SMALL_STATE(2828)] = 116013, + [SMALL_STATE(2829)] = 116061, + [SMALL_STATE(2830)] = 116109, + [SMALL_STATE(2831)] = 116157, + [SMALL_STATE(2832)] = 116205, [SMALL_STATE(2833)] = 116253, [SMALL_STATE(2834)] = 116301, [SMALL_STATE(2835)] = 116349, @@ -276747,12 +276747,12 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2849)] = 117029, [SMALL_STATE(2850)] = 117077, [SMALL_STATE(2851)] = 117125, - [SMALL_STATE(2852)] = 117173, + [SMALL_STATE(2852)] = 117175, [SMALL_STATE(2853)] = 117223, [SMALL_STATE(2854)] = 117271, [SMALL_STATE(2855)] = 117319, [SMALL_STATE(2856)] = 117367, - [SMALL_STATE(2857)] = 117415, + [SMALL_STATE(2857)] = 117417, [SMALL_STATE(2858)] = 117465, [SMALL_STATE(2859)] = 117513, [SMALL_STATE(2860)] = 117561, @@ -276761,19 +276761,19 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2863)] = 117705, [SMALL_STATE(2864)] = 117753, [SMALL_STATE(2865)] = 117801, - [SMALL_STATE(2866)] = 117851, - [SMALL_STATE(2867)] = 117901, + [SMALL_STATE(2866)] = 117849, + [SMALL_STATE(2867)] = 117899, [SMALL_STATE(2868)] = 117949, - [SMALL_STATE(2869)] = 117999, - [SMALL_STATE(2870)] = 118049, - [SMALL_STATE(2871)] = 118097, - [SMALL_STATE(2872)] = 118145, + [SMALL_STATE(2869)] = 117997, + [SMALL_STATE(2870)] = 118047, + [SMALL_STATE(2871)] = 118095, + [SMALL_STATE(2872)] = 118143, [SMALL_STATE(2873)] = 118193, [SMALL_STATE(2874)] = 118243, [SMALL_STATE(2875)] = 118291, - [SMALL_STATE(2876)] = 118341, + [SMALL_STATE(2876)] = 118339, [SMALL_STATE(2877)] = 118389, - [SMALL_STATE(2878)] = 118439, + [SMALL_STATE(2878)] = 118437, [SMALL_STATE(2879)] = 118487, [SMALL_STATE(2880)] = 118522, [SMALL_STATE(2881)] = 118563, @@ -276816,600 +276816,600 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2918)] = 119624, [SMALL_STATE(2919)] = 119651, [SMALL_STATE(2920)] = 119677, - [SMALL_STATE(2921)] = 119711, - [SMALL_STATE(2922)] = 119737, - [SMALL_STATE(2923)] = 119763, - [SMALL_STATE(2924)] = 119789, - [SMALL_STATE(2925)] = 119819, - [SMALL_STATE(2926)] = 119845, - [SMALL_STATE(2927)] = 119883, - [SMALL_STATE(2928)] = 119913, - [SMALL_STATE(2929)] = 119963, - [SMALL_STATE(2930)] = 119989, - [SMALL_STATE(2931)] = 120017, - [SMALL_STATE(2932)] = 120055, - [SMALL_STATE(2933)] = 120083, - [SMALL_STATE(2934)] = 120109, - [SMALL_STATE(2935)] = 120141, + [SMALL_STATE(2921)] = 119705, + [SMALL_STATE(2922)] = 119731, + [SMALL_STATE(2923)] = 119757, + [SMALL_STATE(2924)] = 119783, + [SMALL_STATE(2925)] = 119811, + [SMALL_STATE(2926)] = 119841, + [SMALL_STATE(2927)] = 119873, + [SMALL_STATE(2928)] = 119899, + [SMALL_STATE(2929)] = 119933, + [SMALL_STATE(2930)] = 119959, + [SMALL_STATE(2931)] = 119985, + [SMALL_STATE(2932)] = 120035, + [SMALL_STATE(2933)] = 120065, + [SMALL_STATE(2934)] = 120091, + [SMALL_STATE(2935)] = 120129, [SMALL_STATE(2936)] = 120167, [SMALL_STATE(2937)] = 120193, [SMALL_STATE(2938)] = 120231, - [SMALL_STATE(2939)] = 120256, - [SMALL_STATE(2940)] = 120281, - [SMALL_STATE(2941)] = 120306, - [SMALL_STATE(2942)] = 120335, - [SMALL_STATE(2943)] = 120366, - [SMALL_STATE(2944)] = 120391, + [SMALL_STATE(2939)] = 120262, + [SMALL_STATE(2940)] = 120289, + [SMALL_STATE(2941)] = 120314, + [SMALL_STATE(2942)] = 120339, + [SMALL_STATE(2943)] = 120364, + [SMALL_STATE(2944)] = 120389, [SMALL_STATE(2945)] = 120418, - [SMALL_STATE(2946)] = 120452, - [SMALL_STATE(2947)] = 120476, - [SMALL_STATE(2948)] = 120500, - [SMALL_STATE(2949)] = 120524, - [SMALL_STATE(2950)] = 120556, - [SMALL_STATE(2951)] = 120590, - [SMALL_STATE(2952)] = 120624, - [SMALL_STATE(2953)] = 120658, - [SMALL_STATE(2954)] = 120682, - [SMALL_STATE(2955)] = 120706, - [SMALL_STATE(2956)] = 120740, - [SMALL_STATE(2957)] = 120774, - [SMALL_STATE(2958)] = 120808, - [SMALL_STATE(2959)] = 120830, - [SMALL_STATE(2960)] = 120862, - [SMALL_STATE(2961)] = 120896, - [SMALL_STATE(2962)] = 120930, - [SMALL_STATE(2963)] = 120958, - [SMALL_STATE(2964)] = 120982, - [SMALL_STATE(2965)] = 121006, - [SMALL_STATE(2966)] = 121030, - [SMALL_STATE(2967)] = 121054, - [SMALL_STATE(2968)] = 121078, - [SMALL_STATE(2969)] = 121102, - [SMALL_STATE(2970)] = 121124, - [SMALL_STATE(2971)] = 121148, - [SMALL_STATE(2972)] = 121172, - [SMALL_STATE(2973)] = 121196, - [SMALL_STATE(2974)] = 121220, - [SMALL_STATE(2975)] = 121244, - [SMALL_STATE(2976)] = 121268, - [SMALL_STATE(2977)] = 121292, - [SMALL_STATE(2978)] = 121324, - [SMALL_STATE(2979)] = 121358, - [SMALL_STATE(2980)] = 121392, - [SMALL_STATE(2981)] = 121426, - [SMALL_STATE(2982)] = 121450, - [SMALL_STATE(2983)] = 121474, - [SMALL_STATE(2984)] = 121498, - [SMALL_STATE(2985)] = 121520, - [SMALL_STATE(2986)] = 121544, - [SMALL_STATE(2987)] = 121568, - [SMALL_STATE(2988)] = 121600, - [SMALL_STATE(2989)] = 121634, - [SMALL_STATE(2990)] = 121668, - [SMALL_STATE(2991)] = 121702, - [SMALL_STATE(2992)] = 121726, - [SMALL_STATE(2993)] = 121758, - [SMALL_STATE(2994)] = 121784, - [SMALL_STATE(2995)] = 121818, - [SMALL_STATE(2996)] = 121842, - [SMALL_STATE(2997)] = 121876, - [SMALL_STATE(2998)] = 121900, - [SMALL_STATE(2999)] = 121924, - [SMALL_STATE(3000)] = 121958, - [SMALL_STATE(3001)] = 121982, - [SMALL_STATE(3002)] = 122004, - [SMALL_STATE(3003)] = 122028, - [SMALL_STATE(3004)] = 122052, - [SMALL_STATE(3005)] = 122076, - [SMALL_STATE(3006)] = 122100, - [SMALL_STATE(3007)] = 122122, - [SMALL_STATE(3008)] = 122146, - [SMALL_STATE(3009)] = 122170, - [SMALL_STATE(3010)] = 122194, - [SMALL_STATE(3011)] = 122216, - [SMALL_STATE(3012)] = 122240, - [SMALL_STATE(3013)] = 122262, - [SMALL_STATE(3014)] = 122286, - [SMALL_STATE(3015)] = 122312, - [SMALL_STATE(3016)] = 122336, - [SMALL_STATE(3017)] = 122360, - [SMALL_STATE(3018)] = 122384, - [SMALL_STATE(3019)] = 122408, - [SMALL_STATE(3020)] = 122432, - [SMALL_STATE(3021)] = 122456, - [SMALL_STATE(3022)] = 122480, - [SMALL_STATE(3023)] = 122504, - [SMALL_STATE(3024)] = 122528, - [SMALL_STATE(3025)] = 122552, - [SMALL_STATE(3026)] = 122576, - [SMALL_STATE(3027)] = 122600, - [SMALL_STATE(3028)] = 122632, - [SMALL_STATE(3029)] = 122656, - [SMALL_STATE(3030)] = 122680, - [SMALL_STATE(3031)] = 122704, + [SMALL_STATE(2946)] = 120444, + [SMALL_STATE(2947)] = 120468, + [SMALL_STATE(2948)] = 120492, + [SMALL_STATE(2949)] = 120520, + [SMALL_STATE(2950)] = 120544, + [SMALL_STATE(2951)] = 120568, + [SMALL_STATE(2952)] = 120592, + [SMALL_STATE(2953)] = 120616, + [SMALL_STATE(2954)] = 120640, + [SMALL_STATE(2955)] = 120664, + [SMALL_STATE(2956)] = 120688, + [SMALL_STATE(2957)] = 120712, + [SMALL_STATE(2958)] = 120736, + [SMALL_STATE(2959)] = 120760, + [SMALL_STATE(2960)] = 120784, + [SMALL_STATE(2961)] = 120808, + [SMALL_STATE(2962)] = 120832, + [SMALL_STATE(2963)] = 120856, + [SMALL_STATE(2964)] = 120880, + [SMALL_STATE(2965)] = 120904, + [SMALL_STATE(2966)] = 120928, + [SMALL_STATE(2967)] = 120952, + [SMALL_STATE(2968)] = 120976, + [SMALL_STATE(2969)] = 121000, + [SMALL_STATE(2970)] = 121024, + [SMALL_STATE(2971)] = 121048, + [SMALL_STATE(2972)] = 121074, + [SMALL_STATE(2973)] = 121098, + [SMALL_STATE(2974)] = 121122, + [SMALL_STATE(2975)] = 121154, + [SMALL_STATE(2976)] = 121188, + [SMALL_STATE(2977)] = 121222, + [SMALL_STATE(2978)] = 121256, + [SMALL_STATE(2979)] = 121288, + [SMALL_STATE(2980)] = 121322, + [SMALL_STATE(2981)] = 121356, + [SMALL_STATE(2982)] = 121390, + [SMALL_STATE(2983)] = 121412, + [SMALL_STATE(2984)] = 121444, + [SMALL_STATE(2985)] = 121478, + [SMALL_STATE(2986)] = 121512, + [SMALL_STATE(2987)] = 121546, + [SMALL_STATE(2988)] = 121570, + [SMALL_STATE(2989)] = 121594, + [SMALL_STATE(2990)] = 121618, + [SMALL_STATE(2991)] = 121642, + [SMALL_STATE(2992)] = 121666, + [SMALL_STATE(2993)] = 121690, + [SMALL_STATE(2994)] = 121712, + [SMALL_STATE(2995)] = 121736, + [SMALL_STATE(2996)] = 121760, + [SMALL_STATE(2997)] = 121784, + [SMALL_STATE(2998)] = 121808, + [SMALL_STATE(2999)] = 121832, + [SMALL_STATE(3000)] = 121864, + [SMALL_STATE(3001)] = 121898, + [SMALL_STATE(3002)] = 121932, + [SMALL_STATE(3003)] = 121966, + [SMALL_STATE(3004)] = 121990, + [SMALL_STATE(3005)] = 122012, + [SMALL_STATE(3006)] = 122044, + [SMALL_STATE(3007)] = 122078, + [SMALL_STATE(3008)] = 122112, + [SMALL_STATE(3009)] = 122146, + [SMALL_STATE(3010)] = 122178, + [SMALL_STATE(3011)] = 122202, + [SMALL_STATE(3012)] = 122226, + [SMALL_STATE(3013)] = 122260, + [SMALL_STATE(3014)] = 122284, + [SMALL_STATE(3015)] = 122308, + [SMALL_STATE(3016)] = 122332, + [SMALL_STATE(3017)] = 122356, + [SMALL_STATE(3018)] = 122390, + [SMALL_STATE(3019)] = 122414, + [SMALL_STATE(3020)] = 122438, + [SMALL_STATE(3021)] = 122462, + [SMALL_STATE(3022)] = 122486, + [SMALL_STATE(3023)] = 122520, + [SMALL_STATE(3024)] = 122542, + [SMALL_STATE(3025)] = 122566, + [SMALL_STATE(3026)] = 122590, + [SMALL_STATE(3027)] = 122614, + [SMALL_STATE(3028)] = 122638, + [SMALL_STATE(3029)] = 122660, + [SMALL_STATE(3030)] = 122684, + [SMALL_STATE(3031)] = 122706, [SMALL_STATE(3032)] = 122728, [SMALL_STATE(3033)] = 122752, - [SMALL_STATE(3034)] = 122774, - [SMALL_STATE(3035)] = 122798, - [SMALL_STATE(3036)] = 122822, - [SMALL_STATE(3037)] = 122844, - [SMALL_STATE(3038)] = 122866, - [SMALL_STATE(3039)] = 122890, - [SMALL_STATE(3040)] = 122914, - [SMALL_STATE(3041)] = 122938, - [SMALL_STATE(3042)] = 122962, - [SMALL_STATE(3043)] = 122986, + [SMALL_STATE(3034)] = 122776, + [SMALL_STATE(3035)] = 122800, + [SMALL_STATE(3036)] = 122824, + [SMALL_STATE(3037)] = 122848, + [SMALL_STATE(3038)] = 122872, + [SMALL_STATE(3039)] = 122896, + [SMALL_STATE(3040)] = 122920, + [SMALL_STATE(3041)] = 122944, + [SMALL_STATE(3042)] = 122966, + [SMALL_STATE(3043)] = 122988, [SMALL_STATE(3044)] = 123010, [SMALL_STATE(3045)] = 123034, [SMALL_STATE(3046)] = 123058, [SMALL_STATE(3047)] = 123082, - [SMALL_STATE(3048)] = 123125, - [SMALL_STATE(3049)] = 123154, - [SMALL_STATE(3050)] = 123183, - [SMALL_STATE(3051)] = 123226, - [SMALL_STATE(3052)] = 123269, - [SMALL_STATE(3053)] = 123298, - [SMALL_STATE(3054)] = 123337, - [SMALL_STATE(3055)] = 123380, - [SMALL_STATE(3056)] = 123423, - [SMALL_STATE(3057)] = 123466, - [SMALL_STATE(3058)] = 123505, - [SMALL_STATE(3059)] = 123548, - [SMALL_STATE(3060)] = 123591, - [SMALL_STATE(3061)] = 123616, - [SMALL_STATE(3062)] = 123645, - [SMALL_STATE(3063)] = 123670, - [SMALL_STATE(3064)] = 123713, - [SMALL_STATE(3065)] = 123742, - [SMALL_STATE(3066)] = 123771, - [SMALL_STATE(3067)] = 123814, - [SMALL_STATE(3068)] = 123857, - [SMALL_STATE(3069)] = 123900, - [SMALL_STATE(3070)] = 123939, - [SMALL_STATE(3071)] = 123982, - [SMALL_STATE(3072)] = 124025, - [SMALL_STATE(3073)] = 124068, - [SMALL_STATE(3074)] = 124097, - [SMALL_STATE(3075)] = 124140, - [SMALL_STATE(3076)] = 124179, - [SMALL_STATE(3077)] = 124222, - [SMALL_STATE(3078)] = 124265, - [SMALL_STATE(3079)] = 124310, - [SMALL_STATE(3080)] = 124353, - [SMALL_STATE(3081)] = 124396, - [SMALL_STATE(3082)] = 124435, - [SMALL_STATE(3083)] = 124464, + [SMALL_STATE(3048)] = 123127, + [SMALL_STATE(3049)] = 123170, + [SMALL_STATE(3050)] = 123213, + [SMALL_STATE(3051)] = 123256, + [SMALL_STATE(3052)] = 123295, + [SMALL_STATE(3053)] = 123338, + [SMALL_STATE(3054)] = 123381, + [SMALL_STATE(3055)] = 123410, + [SMALL_STATE(3056)] = 123453, + [SMALL_STATE(3057)] = 123482, + [SMALL_STATE(3058)] = 123521, + [SMALL_STATE(3059)] = 123564, + [SMALL_STATE(3060)] = 123607, + [SMALL_STATE(3061)] = 123650, + [SMALL_STATE(3062)] = 123675, + [SMALL_STATE(3063)] = 123714, + [SMALL_STATE(3064)] = 123757, + [SMALL_STATE(3065)] = 123786, + [SMALL_STATE(3066)] = 123829, + [SMALL_STATE(3067)] = 123854, + [SMALL_STATE(3068)] = 123883, + [SMALL_STATE(3069)] = 123922, + [SMALL_STATE(3070)] = 123947, + [SMALL_STATE(3071)] = 123990, + [SMALL_STATE(3072)] = 124033, + [SMALL_STATE(3073)] = 124076, + [SMALL_STATE(3074)] = 124119, + [SMALL_STATE(3075)] = 124148, + [SMALL_STATE(3076)] = 124191, + [SMALL_STATE(3077)] = 124220, + [SMALL_STATE(3078)] = 124259, + [SMALL_STATE(3079)] = 124302, + [SMALL_STATE(3080)] = 124345, + [SMALL_STATE(3081)] = 124374, + [SMALL_STATE(3082)] = 124403, + [SMALL_STATE(3083)] = 124446, [SMALL_STATE(3084)] = 124489, [SMALL_STATE(3085)] = 124532, [SMALL_STATE(3086)] = 124575, [SMALL_STATE(3087)] = 124618, [SMALL_STATE(3088)] = 124647, - [SMALL_STATE(3089)] = 124669, - [SMALL_STATE(3090)] = 124689, - [SMALL_STATE(3091)] = 124709, - [SMALL_STATE(3092)] = 124729, - [SMALL_STATE(3093)] = 124749, - [SMALL_STATE(3094)] = 124769, - [SMALL_STATE(3095)] = 124789, - [SMALL_STATE(3096)] = 124809, - [SMALL_STATE(3097)] = 124829, - [SMALL_STATE(3098)] = 124849, - [SMALL_STATE(3099)] = 124885, + [SMALL_STATE(3089)] = 124675, + [SMALL_STATE(3090)] = 124699, + [SMALL_STATE(3091)] = 124723, + [SMALL_STATE(3092)] = 124745, + [SMALL_STATE(3093)] = 124765, + [SMALL_STATE(3094)] = 124785, + [SMALL_STATE(3095)] = 124805, + [SMALL_STATE(3096)] = 124827, + [SMALL_STATE(3097)] = 124847, + [SMALL_STATE(3098)] = 124883, + [SMALL_STATE(3099)] = 124903, [SMALL_STATE(3100)] = 124923, - [SMALL_STATE(3101)] = 124951, - [SMALL_STATE(3102)] = 124971, - [SMALL_STATE(3103)] = 124999, - [SMALL_STATE(3104)] = 125021, - [SMALL_STATE(3105)] = 125045, - [SMALL_STATE(3106)] = 125065, - [SMALL_STATE(3107)] = 125087, - [SMALL_STATE(3108)] = 125123, - [SMALL_STATE(3109)] = 125159, - [SMALL_STATE(3110)] = 125179, - [SMALL_STATE(3111)] = 125215, - [SMALL_STATE(3112)] = 125235, - [SMALL_STATE(3113)] = 125263, - [SMALL_STATE(3114)] = 125283, - [SMALL_STATE(3115)] = 125303, - [SMALL_STATE(3116)] = 125325, - [SMALL_STATE(3117)] = 125345, - [SMALL_STATE(3118)] = 125381, - [SMALL_STATE(3119)] = 125401, - [SMALL_STATE(3120)] = 125423, - [SMALL_STATE(3121)] = 125445, - [SMALL_STATE(3122)] = 125473, - [SMALL_STATE(3123)] = 125493, - [SMALL_STATE(3124)] = 125519, - [SMALL_STATE(3125)] = 125555, - [SMALL_STATE(3126)] = 125577, - [SMALL_STATE(3127)] = 125597, - [SMALL_STATE(3128)] = 125617, - [SMALL_STATE(3129)] = 125639, - [SMALL_STATE(3130)] = 125663, - [SMALL_STATE(3131)] = 125683, - [SMALL_STATE(3132)] = 125709, - [SMALL_STATE(3133)] = 125729, - [SMALL_STATE(3134)] = 125765, - [SMALL_STATE(3135)] = 125787, - [SMALL_STATE(3136)] = 125823, - [SMALL_STATE(3137)] = 125847, - [SMALL_STATE(3138)] = 125867, - [SMALL_STATE(3139)] = 125895, - [SMALL_STATE(3140)] = 125923, - [SMALL_STATE(3141)] = 125943, - [SMALL_STATE(3142)] = 125965, - [SMALL_STATE(3143)] = 125985, - [SMALL_STATE(3144)] = 126007, - [SMALL_STATE(3145)] = 126027, - [SMALL_STATE(3146)] = 126051, - [SMALL_STATE(3147)] = 126073, - [SMALL_STATE(3148)] = 126093, - [SMALL_STATE(3149)] = 126113, - [SMALL_STATE(3150)] = 126141, - [SMALL_STATE(3151)] = 126161, - [SMALL_STATE(3152)] = 126181, - [SMALL_STATE(3153)] = 126201, - [SMALL_STATE(3154)] = 126225, - [SMALL_STATE(3155)] = 126251, - [SMALL_STATE(3156)] = 126271, - [SMALL_STATE(3157)] = 126307, - [SMALL_STATE(3158)] = 126327, - [SMALL_STATE(3159)] = 126363, + [SMALL_STATE(3101)] = 124943, + [SMALL_STATE(3102)] = 124965, + [SMALL_STATE(3103)] = 124987, + [SMALL_STATE(3104)] = 125007, + [SMALL_STATE(3105)] = 125027, + [SMALL_STATE(3106)] = 125047, + [SMALL_STATE(3107)] = 125067, + [SMALL_STATE(3108)] = 125089, + [SMALL_STATE(3109)] = 125125, + [SMALL_STATE(3110)] = 125153, + [SMALL_STATE(3111)] = 125175, + [SMALL_STATE(3112)] = 125195, + [SMALL_STATE(3113)] = 125215, + [SMALL_STATE(3114)] = 125235, + [SMALL_STATE(3115)] = 125271, + [SMALL_STATE(3116)] = 125309, + [SMALL_STATE(3117)] = 125337, + [SMALL_STATE(3118)] = 125359, + [SMALL_STATE(3119)] = 125395, + [SMALL_STATE(3120)] = 125415, + [SMALL_STATE(3121)] = 125435, + [SMALL_STATE(3122)] = 125455, + [SMALL_STATE(3123)] = 125475, + [SMALL_STATE(3124)] = 125495, + [SMALL_STATE(3125)] = 125523, + [SMALL_STATE(3126)] = 125551, + [SMALL_STATE(3127)] = 125571, + [SMALL_STATE(3128)] = 125591, + [SMALL_STATE(3129)] = 125617, + [SMALL_STATE(3130)] = 125637, + [SMALL_STATE(3131)] = 125657, + [SMALL_STATE(3132)] = 125677, + [SMALL_STATE(3133)] = 125697, + [SMALL_STATE(3134)] = 125717, + [SMALL_STATE(3135)] = 125737, + [SMALL_STATE(3136)] = 125757, + [SMALL_STATE(3137)] = 125777, + [SMALL_STATE(3138)] = 125797, + [SMALL_STATE(3139)] = 125817, + [SMALL_STATE(3140)] = 125837, + [SMALL_STATE(3141)] = 125857, + [SMALL_STATE(3142)] = 125893, + [SMALL_STATE(3143)] = 125929, + [SMALL_STATE(3144)] = 125951, + [SMALL_STATE(3145)] = 125987, + [SMALL_STATE(3146)] = 126023, + [SMALL_STATE(3147)] = 126045, + [SMALL_STATE(3148)] = 126067, + [SMALL_STATE(3149)] = 126091, + [SMALL_STATE(3150)] = 126119, + [SMALL_STATE(3151)] = 126147, + [SMALL_STATE(3152)] = 126169, + [SMALL_STATE(3153)] = 126193, + [SMALL_STATE(3154)] = 126219, + [SMALL_STATE(3155)] = 126247, + [SMALL_STATE(3156)] = 126269, + [SMALL_STATE(3157)] = 126293, + [SMALL_STATE(3158)] = 126329, + [SMALL_STATE(3159)] = 126365, [SMALL_STATE(3160)] = 126391, [SMALL_STATE(3161)] = 126411, - [SMALL_STATE(3162)] = 126430, + [SMALL_STATE(3162)] = 126440, [SMALL_STATE(3163)] = 126463, - [SMALL_STATE(3164)] = 126496, - [SMALL_STATE(3165)] = 126517, - [SMALL_STATE(3166)] = 126554, - [SMALL_STATE(3167)] = 126587, - [SMALL_STATE(3168)] = 126620, - [SMALL_STATE(3169)] = 126641, - [SMALL_STATE(3170)] = 126662, - [SMALL_STATE(3171)] = 126699, - [SMALL_STATE(3172)] = 126730, - [SMALL_STATE(3173)] = 126761, - [SMALL_STATE(3174)] = 126800, - [SMALL_STATE(3175)] = 126831, - [SMALL_STATE(3176)] = 126854, - [SMALL_STATE(3177)] = 126891, - [SMALL_STATE(3178)] = 126928, - [SMALL_STATE(3179)] = 126965, - [SMALL_STATE(3180)] = 127002, - [SMALL_STATE(3181)] = 127035, - [SMALL_STATE(3182)] = 127072, - [SMALL_STATE(3183)] = 127093, - [SMALL_STATE(3184)] = 127130, - [SMALL_STATE(3185)] = 127153, - [SMALL_STATE(3186)] = 127184, - [SMALL_STATE(3187)] = 127207, - [SMALL_STATE(3188)] = 127240, - [SMALL_STATE(3189)] = 127273, - [SMALL_STATE(3190)] = 127310, - [SMALL_STATE(3191)] = 127331, - [SMALL_STATE(3192)] = 127368, - [SMALL_STATE(3193)] = 127405, - [SMALL_STATE(3194)] = 127442, - [SMALL_STATE(3195)] = 127475, - [SMALL_STATE(3196)] = 127508, - [SMALL_STATE(3197)] = 127541, - [SMALL_STATE(3198)] = 127578, - [SMALL_STATE(3199)] = 127607, - [SMALL_STATE(3200)] = 127644, - [SMALL_STATE(3201)] = 127669, - [SMALL_STATE(3202)] = 127706, - [SMALL_STATE(3203)] = 127743, - [SMALL_STATE(3204)] = 127780, - [SMALL_STATE(3205)] = 127809, - [SMALL_STATE(3206)] = 127828, - [SMALL_STATE(3207)] = 127865, - [SMALL_STATE(3208)] = 127896, - [SMALL_STATE(3209)] = 127917, - [SMALL_STATE(3210)] = 127940, - [SMALL_STATE(3211)] = 127969, - [SMALL_STATE(3212)] = 127998, - [SMALL_STATE(3213)] = 128027, - [SMALL_STATE(3214)] = 128048, - [SMALL_STATE(3215)] = 128085, - [SMALL_STATE(3216)] = 128122, - [SMALL_STATE(3217)] = 128159, - [SMALL_STATE(3218)] = 128184, - [SMALL_STATE(3219)] = 128221, - [SMALL_STATE(3220)] = 128258, + [SMALL_STATE(3164)] = 126500, + [SMALL_STATE(3165)] = 126537, + [SMALL_STATE(3166)] = 126570, + [SMALL_STATE(3167)] = 126603, + [SMALL_STATE(3168)] = 126636, + [SMALL_STATE(3169)] = 126667, + [SMALL_STATE(3170)] = 126704, + [SMALL_STATE(3171)] = 126727, + [SMALL_STATE(3172)] = 126748, + [SMALL_STATE(3173)] = 126785, + [SMALL_STATE(3174)] = 126822, + [SMALL_STATE(3175)] = 126859, + [SMALL_STATE(3176)] = 126892, + [SMALL_STATE(3177)] = 126925, + [SMALL_STATE(3178)] = 126958, + [SMALL_STATE(3179)] = 126995, + [SMALL_STATE(3180)] = 127032, + [SMALL_STATE(3181)] = 127069, + [SMALL_STATE(3182)] = 127106, + [SMALL_STATE(3183)] = 127139, + [SMALL_STATE(3184)] = 127176, + [SMALL_STATE(3185)] = 127213, + [SMALL_STATE(3186)] = 127252, + [SMALL_STATE(3187)] = 127289, + [SMALL_STATE(3188)] = 127314, + [SMALL_STATE(3189)] = 127351, + [SMALL_STATE(3190)] = 127372, + [SMALL_STATE(3191)] = 127391, + [SMALL_STATE(3192)] = 127412, + [SMALL_STATE(3193)] = 127431, + [SMALL_STATE(3194)] = 127462, + [SMALL_STATE(3195)] = 127483, + [SMALL_STATE(3196)] = 127520, + [SMALL_STATE(3197)] = 127551, + [SMALL_STATE(3198)] = 127574, + [SMALL_STATE(3199)] = 127603, + [SMALL_STATE(3200)] = 127632, + [SMALL_STATE(3201)] = 127655, + [SMALL_STATE(3202)] = 127684, + [SMALL_STATE(3203)] = 127705, + [SMALL_STATE(3204)] = 127726, + [SMALL_STATE(3205)] = 127763, + [SMALL_STATE(3206)] = 127800, + [SMALL_STATE(3207)] = 127831, + [SMALL_STATE(3208)] = 127868, + [SMALL_STATE(3209)] = 127905, + [SMALL_STATE(3210)] = 127942, + [SMALL_STATE(3211)] = 127973, + [SMALL_STATE(3212)] = 128010, + [SMALL_STATE(3213)] = 128047, + [SMALL_STATE(3214)] = 128072, + [SMALL_STATE(3215)] = 128105, + [SMALL_STATE(3216)] = 128142, + [SMALL_STATE(3217)] = 128175, + [SMALL_STATE(3218)] = 128198, + [SMALL_STATE(3219)] = 128231, + [SMALL_STATE(3220)] = 128252, [SMALL_STATE(3221)] = 128281, [SMALL_STATE(3222)] = 128299, - [SMALL_STATE(3223)] = 128319, - [SMALL_STATE(3224)] = 128339, - [SMALL_STATE(3225)] = 128363, - [SMALL_STATE(3226)] = 128383, - [SMALL_STATE(3227)] = 128405, - [SMALL_STATE(3228)] = 128423, - [SMALL_STATE(3229)] = 128443, - [SMALL_STATE(3230)] = 128463, - [SMALL_STATE(3231)] = 128483, - [SMALL_STATE(3232)] = 128501, - [SMALL_STATE(3233)] = 128519, - [SMALL_STATE(3234)] = 128539, - [SMALL_STATE(3235)] = 128557, - [SMALL_STATE(3236)] = 128581, - [SMALL_STATE(3237)] = 128599, - [SMALL_STATE(3238)] = 128619, - [SMALL_STATE(3239)] = 128641, - [SMALL_STATE(3240)] = 128661, - [SMALL_STATE(3241)] = 128679, - [SMALL_STATE(3242)] = 128697, - [SMALL_STATE(3243)] = 128717, - [SMALL_STATE(3244)] = 128737, - [SMALL_STATE(3245)] = 128757, - [SMALL_STATE(3246)] = 128775, - [SMALL_STATE(3247)] = 128793, - [SMALL_STATE(3248)] = 128813, - [SMALL_STATE(3249)] = 128833, - [SMALL_STATE(3250)] = 128851, - [SMALL_STATE(3251)] = 128877, - [SMALL_STATE(3252)] = 128897, - [SMALL_STATE(3253)] = 128919, - [SMALL_STATE(3254)] = 128945, - [SMALL_STATE(3255)] = 128969, - [SMALL_STATE(3256)] = 128989, - [SMALL_STATE(3257)] = 129013, - [SMALL_STATE(3258)] = 129033, - [SMALL_STATE(3259)] = 129055, - [SMALL_STATE(3260)] = 129075, - [SMALL_STATE(3261)] = 129095, - [SMALL_STATE(3262)] = 129113, - [SMALL_STATE(3263)] = 129133, - [SMALL_STATE(3264)] = 129153, - [SMALL_STATE(3265)] = 129175, - [SMALL_STATE(3266)] = 129195, - [SMALL_STATE(3267)] = 129215, - [SMALL_STATE(3268)] = 129235, - [SMALL_STATE(3269)] = 129255, - [SMALL_STATE(3270)] = 129275, - [SMALL_STATE(3271)] = 129299, - [SMALL_STATE(3272)] = 129319, - [SMALL_STATE(3273)] = 129339, - [SMALL_STATE(3274)] = 129361, - [SMALL_STATE(3275)] = 129381, - [SMALL_STATE(3276)] = 129401, - [SMALL_STATE(3277)] = 129421, - [SMALL_STATE(3278)] = 129445, - [SMALL_STATE(3279)] = 129481, - [SMALL_STATE(3280)] = 129499, - [SMALL_STATE(3281)] = 129519, - [SMALL_STATE(3282)] = 129539, - [SMALL_STATE(3283)] = 129563, - [SMALL_STATE(3284)] = 129583, - [SMALL_STATE(3285)] = 129603, - [SMALL_STATE(3286)] = 129623, - [SMALL_STATE(3287)] = 129647, - [SMALL_STATE(3288)] = 129669, - [SMALL_STATE(3289)] = 129689, - [SMALL_STATE(3290)] = 129713, - [SMALL_STATE(3291)] = 129735, + [SMALL_STATE(3223)] = 128323, + [SMALL_STATE(3224)] = 128343, + [SMALL_STATE(3225)] = 128365, + [SMALL_STATE(3226)] = 128385, + [SMALL_STATE(3227)] = 128409, + [SMALL_STATE(3228)] = 128431, + [SMALL_STATE(3229)] = 128451, + [SMALL_STATE(3230)] = 128471, + [SMALL_STATE(3231)] = 128495, + [SMALL_STATE(3232)] = 128515, + [SMALL_STATE(3233)] = 128535, + [SMALL_STATE(3234)] = 128555, + [SMALL_STATE(3235)] = 128575, + [SMALL_STATE(3236)] = 128595, + [SMALL_STATE(3237)] = 128631, + [SMALL_STATE(3238)] = 128651, + [SMALL_STATE(3239)] = 128671, + [SMALL_STATE(3240)] = 128689, + [SMALL_STATE(3241)] = 128709, + [SMALL_STATE(3242)] = 128727, + [SMALL_STATE(3243)] = 128747, + [SMALL_STATE(3244)] = 128767, + [SMALL_STATE(3245)] = 128787, + [SMALL_STATE(3246)] = 128807, + [SMALL_STATE(3247)] = 128827, + [SMALL_STATE(3248)] = 128847, + [SMALL_STATE(3249)] = 128865, + [SMALL_STATE(3250)] = 128883, + [SMALL_STATE(3251)] = 128903, + [SMALL_STATE(3252)] = 128925, + [SMALL_STATE(3253)] = 128945, + [SMALL_STATE(3254)] = 128965, + [SMALL_STATE(3255)] = 128983, + [SMALL_STATE(3256)] = 129005, + [SMALL_STATE(3257)] = 129025, + [SMALL_STATE(3258)] = 129049, + [SMALL_STATE(3259)] = 129073, + [SMALL_STATE(3260)] = 129091, + [SMALL_STATE(3261)] = 129115, + [SMALL_STATE(3262)] = 129135, + [SMALL_STATE(3263)] = 129161, + [SMALL_STATE(3264)] = 129179, + [SMALL_STATE(3265)] = 129197, + [SMALL_STATE(3266)] = 129219, + [SMALL_STATE(3267)] = 129239, + [SMALL_STATE(3268)] = 129257, + [SMALL_STATE(3269)] = 129277, + [SMALL_STATE(3270)] = 129299, + [SMALL_STATE(3271)] = 129319, + [SMALL_STATE(3272)] = 129339, + [SMALL_STATE(3273)] = 129357, + [SMALL_STATE(3274)] = 129377, + [SMALL_STATE(3275)] = 129401, + [SMALL_STATE(3276)] = 129421, + [SMALL_STATE(3277)] = 129441, + [SMALL_STATE(3278)] = 129467, + [SMALL_STATE(3279)] = 129487, + [SMALL_STATE(3280)] = 129507, + [SMALL_STATE(3281)] = 129529, + [SMALL_STATE(3282)] = 129547, + [SMALL_STATE(3283)] = 129567, + [SMALL_STATE(3284)] = 129587, + [SMALL_STATE(3285)] = 129611, + [SMALL_STATE(3286)] = 129631, + [SMALL_STATE(3287)] = 129651, + [SMALL_STATE(3288)] = 129671, + [SMALL_STATE(3289)] = 129691, + [SMALL_STATE(3290)] = 129715, + [SMALL_STATE(3291)] = 129737, [SMALL_STATE(3292)] = 129755, [SMALL_STATE(3293)] = 129773, - [SMALL_STATE(3294)] = 129808, - [SMALL_STATE(3295)] = 129843, - [SMALL_STATE(3296)] = 129862, - [SMALL_STATE(3297)] = 129879, - [SMALL_STATE(3298)] = 129896, - [SMALL_STATE(3299)] = 129927, - [SMALL_STATE(3300)] = 129948, - [SMALL_STATE(3301)] = 129965, - [SMALL_STATE(3302)] = 129986, - [SMALL_STATE(3303)] = 130021, - [SMALL_STATE(3304)] = 130054, - [SMALL_STATE(3305)] = 130089, - [SMALL_STATE(3306)] = 130106, - [SMALL_STATE(3307)] = 130125, - [SMALL_STATE(3308)] = 130146, - [SMALL_STATE(3309)] = 130175, - [SMALL_STATE(3310)] = 130206, - [SMALL_STATE(3311)] = 130241, - [SMALL_STATE(3312)] = 130272, - [SMALL_STATE(3313)] = 130295, - [SMALL_STATE(3314)] = 130330, - [SMALL_STATE(3315)] = 130365, - [SMALL_STATE(3316)] = 130388, - [SMALL_STATE(3317)] = 130407, - [SMALL_STATE(3318)] = 130432, - [SMALL_STATE(3319)] = 130451, - [SMALL_STATE(3320)] = 130486, - [SMALL_STATE(3321)] = 130521, - [SMALL_STATE(3322)] = 130556, + [SMALL_STATE(3294)] = 129802, + [SMALL_STATE(3295)] = 129837, + [SMALL_STATE(3296)] = 129870, + [SMALL_STATE(3297)] = 129901, + [SMALL_STATE(3298)] = 129936, + [SMALL_STATE(3299)] = 129953, + [SMALL_STATE(3300)] = 129986, + [SMALL_STATE(3301)] = 130003, + [SMALL_STATE(3302)] = 130020, + [SMALL_STATE(3303)] = 130055, + [SMALL_STATE(3304)] = 130090, + [SMALL_STATE(3305)] = 130113, + [SMALL_STATE(3306)] = 130148, + [SMALL_STATE(3307)] = 130183, + [SMALL_STATE(3308)] = 130218, + [SMALL_STATE(3309)] = 130243, + [SMALL_STATE(3310)] = 130278, + [SMALL_STATE(3311)] = 130297, + [SMALL_STATE(3312)] = 130332, + [SMALL_STATE(3313)] = 130355, + [SMALL_STATE(3314)] = 130374, + [SMALL_STATE(3315)] = 130393, + [SMALL_STATE(3316)] = 130424, + [SMALL_STATE(3317)] = 130445, + [SMALL_STATE(3318)] = 130466, + [SMALL_STATE(3319)] = 130483, + [SMALL_STATE(3320)] = 130502, + [SMALL_STATE(3321)] = 130523, + [SMALL_STATE(3322)] = 130554, [SMALL_STATE(3323)] = 130589, [SMALL_STATE(3324)] = 130624, - [SMALL_STATE(3325)] = 130650, - [SMALL_STATE(3326)] = 130678, - [SMALL_STATE(3327)] = 130706, - [SMALL_STATE(3328)] = 130734, - [SMALL_STATE(3329)] = 130750, - [SMALL_STATE(3330)] = 130778, - [SMALL_STATE(3331)] = 130794, - [SMALL_STATE(3332)] = 130822, - [SMALL_STATE(3333)] = 130844, - [SMALL_STATE(3334)] = 130862, - [SMALL_STATE(3335)] = 130884, - [SMALL_STATE(3336)] = 130900, - [SMALL_STATE(3337)] = 130920, - [SMALL_STATE(3338)] = 130942, - [SMALL_STATE(3339)] = 130970, - [SMALL_STATE(3340)] = 130998, - [SMALL_STATE(3341)] = 131026, - [SMALL_STATE(3342)] = 131054, - [SMALL_STATE(3343)] = 131070, - [SMALL_STATE(3344)] = 131086, - [SMALL_STATE(3345)] = 131102, - [SMALL_STATE(3346)] = 131130, - [SMALL_STATE(3347)] = 131146, - [SMALL_STATE(3348)] = 131162, - [SMALL_STATE(3349)] = 131178, - [SMALL_STATE(3350)] = 131206, - [SMALL_STATE(3351)] = 131224, - [SMALL_STATE(3352)] = 131250, - [SMALL_STATE(3353)] = 131266, - [SMALL_STATE(3354)] = 131292, - [SMALL_STATE(3355)] = 131308, - [SMALL_STATE(3356)] = 131338, - [SMALL_STATE(3357)] = 131354, - [SMALL_STATE(3358)] = 131382, - [SMALL_STATE(3359)] = 131398, - [SMALL_STATE(3360)] = 131420, - [SMALL_STATE(3361)] = 131446, - [SMALL_STATE(3362)] = 131478, - [SMALL_STATE(3363)] = 131494, - [SMALL_STATE(3364)] = 131526, - [SMALL_STATE(3365)] = 131554, - [SMALL_STATE(3366)] = 131574, - [SMALL_STATE(3367)] = 131590, - [SMALL_STATE(3368)] = 131618, - [SMALL_STATE(3369)] = 131646, - [SMALL_STATE(3370)] = 131662, - [SMALL_STATE(3371)] = 131690, - [SMALL_STATE(3372)] = 131708, - [SMALL_STATE(3373)] = 131724, - [SMALL_STATE(3374)] = 131746, - [SMALL_STATE(3375)] = 131762, - [SMALL_STATE(3376)] = 131786, - [SMALL_STATE(3377)] = 131818, - [SMALL_STATE(3378)] = 131846, - [SMALL_STATE(3379)] = 131862, - [SMALL_STATE(3380)] = 131878, - [SMALL_STATE(3381)] = 131894, - [SMALL_STATE(3382)] = 131926, - [SMALL_STATE(3383)] = 131958, - [SMALL_STATE(3384)] = 131978, - [SMALL_STATE(3385)] = 131994, - [SMALL_STATE(3386)] = 132012, - [SMALL_STATE(3387)] = 132044, - [SMALL_STATE(3388)] = 132062, - [SMALL_STATE(3389)] = 132078, - [SMALL_STATE(3390)] = 132094, - [SMALL_STATE(3391)] = 132122, - [SMALL_STATE(3392)] = 132154, - [SMALL_STATE(3393)] = 132186, - [SMALL_STATE(3394)] = 132212, - [SMALL_STATE(3395)] = 132228, - [SMALL_STATE(3396)] = 132260, - [SMALL_STATE(3397)] = 132276, - [SMALL_STATE(3398)] = 132304, - [SMALL_STATE(3399)] = 132332, - [SMALL_STATE(3400)] = 132348, - [SMALL_STATE(3401)] = 132376, - [SMALL_STATE(3402)] = 132392, - [SMALL_STATE(3403)] = 132408, - [SMALL_STATE(3404)] = 132436, - [SMALL_STATE(3405)] = 132452, - [SMALL_STATE(3406)] = 132480, - [SMALL_STATE(3407)] = 132508, - [SMALL_STATE(3408)] = 132534, - [SMALL_STATE(3409)] = 132566, - [SMALL_STATE(3410)] = 132594, - [SMALL_STATE(3411)] = 132610, - [SMALL_STATE(3412)] = 132636, - [SMALL_STATE(3413)] = 132658, - [SMALL_STATE(3414)] = 132686, - [SMALL_STATE(3415)] = 132712, - [SMALL_STATE(3416)] = 132728, - [SMALL_STATE(3417)] = 132756, - [SMALL_STATE(3418)] = 132784, - [SMALL_STATE(3419)] = 132812, - [SMALL_STATE(3420)] = 132844, - [SMALL_STATE(3421)] = 132876, - [SMALL_STATE(3422)] = 132904, - [SMALL_STATE(3423)] = 132920, - [SMALL_STATE(3424)] = 132936, - [SMALL_STATE(3425)] = 132964, - [SMALL_STATE(3426)] = 132992, - [SMALL_STATE(3427)] = 133014, - [SMALL_STATE(3428)] = 133042, - [SMALL_STATE(3429)] = 133068, - [SMALL_STATE(3430)] = 133086, - [SMALL_STATE(3431)] = 133114, - [SMALL_STATE(3432)] = 133142, - [SMALL_STATE(3433)] = 133158, - [SMALL_STATE(3434)] = 133186, - [SMALL_STATE(3435)] = 133202, - [SMALL_STATE(3436)] = 133228, - [SMALL_STATE(3437)] = 133260, - [SMALL_STATE(3438)] = 133278, - [SMALL_STATE(3439)] = 133304, - [SMALL_STATE(3440)] = 133320, - [SMALL_STATE(3441)] = 133348, - [SMALL_STATE(3442)] = 133374, - [SMALL_STATE(3443)] = 133396, - [SMALL_STATE(3444)] = 133428, - [SMALL_STATE(3445)] = 133456, - [SMALL_STATE(3446)] = 133472, - [SMALL_STATE(3447)] = 133500, - [SMALL_STATE(3448)] = 133516, - [SMALL_STATE(3449)] = 133548, - [SMALL_STATE(3450)] = 133570, - [SMALL_STATE(3451)] = 133598, - [SMALL_STATE(3452)] = 133614, - [SMALL_STATE(3453)] = 133646, - [SMALL_STATE(3454)] = 133678, - [SMALL_STATE(3455)] = 133706, - [SMALL_STATE(3456)] = 133738, - [SMALL_STATE(3457)] = 133766, - [SMALL_STATE(3458)] = 133798, - [SMALL_STATE(3459)] = 133814, - [SMALL_STATE(3460)] = 133842, - [SMALL_STATE(3461)] = 133868, - [SMALL_STATE(3462)] = 133896, - [SMALL_STATE(3463)] = 133912, - [SMALL_STATE(3464)] = 133928, - [SMALL_STATE(3465)] = 133944, - [SMALL_STATE(3466)] = 133972, - [SMALL_STATE(3467)] = 133990, - [SMALL_STATE(3468)] = 134006, - [SMALL_STATE(3469)] = 134034, + [SMALL_STATE(3325)] = 130652, + [SMALL_STATE(3326)] = 130680, + [SMALL_STATE(3327)] = 130696, + [SMALL_STATE(3328)] = 130712, + [SMALL_STATE(3329)] = 130730, + [SMALL_STATE(3330)] = 130746, + [SMALL_STATE(3331)] = 130762, + [SMALL_STATE(3332)] = 130794, + [SMALL_STATE(3333)] = 130810, + [SMALL_STATE(3334)] = 130826, + [SMALL_STATE(3335)] = 130846, + [SMALL_STATE(3336)] = 130872, + [SMALL_STATE(3337)] = 130898, + [SMALL_STATE(3338)] = 130914, + [SMALL_STATE(3339)] = 130930, + [SMALL_STATE(3340)] = 130946, + [SMALL_STATE(3341)] = 130962, + [SMALL_STATE(3342)] = 130978, + [SMALL_STATE(3343)] = 130994, + [SMALL_STATE(3344)] = 131010, + [SMALL_STATE(3345)] = 131032, + [SMALL_STATE(3346)] = 131064, + [SMALL_STATE(3347)] = 131090, + [SMALL_STATE(3348)] = 131106, + [SMALL_STATE(3349)] = 131136, + [SMALL_STATE(3350)] = 131158, + [SMALL_STATE(3351)] = 131186, + [SMALL_STATE(3352)] = 131214, + [SMALL_STATE(3353)] = 131232, + [SMALL_STATE(3354)] = 131260, + [SMALL_STATE(3355)] = 131276, + [SMALL_STATE(3356)] = 131298, + [SMALL_STATE(3357)] = 131330, + [SMALL_STATE(3358)] = 131346, + [SMALL_STATE(3359)] = 131372, + [SMALL_STATE(3360)] = 131388, + [SMALL_STATE(3361)] = 131414, + [SMALL_STATE(3362)] = 131442, + [SMALL_STATE(3363)] = 131458, + [SMALL_STATE(3364)] = 131486, + [SMALL_STATE(3365)] = 131506, + [SMALL_STATE(3366)] = 131524, + [SMALL_STATE(3367)] = 131540, + [SMALL_STATE(3368)] = 131556, + [SMALL_STATE(3369)] = 131578, + [SMALL_STATE(3370)] = 131600, + [SMALL_STATE(3371)] = 131616, + [SMALL_STATE(3372)] = 131648, + [SMALL_STATE(3373)] = 131676, + [SMALL_STATE(3374)] = 131704, + [SMALL_STATE(3375)] = 131720, + [SMALL_STATE(3376)] = 131748, + [SMALL_STATE(3377)] = 131776, + [SMALL_STATE(3378)] = 131792, + [SMALL_STATE(3379)] = 131820, + [SMALL_STATE(3380)] = 131836, + [SMALL_STATE(3381)] = 131852, + [SMALL_STATE(3382)] = 131868, + [SMALL_STATE(3383)] = 131884, + [SMALL_STATE(3384)] = 131900, + [SMALL_STATE(3385)] = 131922, + [SMALL_STATE(3386)] = 131944, + [SMALL_STATE(3387)] = 131972, + [SMALL_STATE(3388)] = 132000, + [SMALL_STATE(3389)] = 132028, + [SMALL_STATE(3390)] = 132056, + [SMALL_STATE(3391)] = 132076, + [SMALL_STATE(3392)] = 132102, + [SMALL_STATE(3393)] = 132118, + [SMALL_STATE(3394)] = 132134, + [SMALL_STATE(3395)] = 132162, + [SMALL_STATE(3396)] = 132190, + [SMALL_STATE(3397)] = 132222, + [SMALL_STATE(3398)] = 132238, + [SMALL_STATE(3399)] = 132266, + [SMALL_STATE(3400)] = 132282, + [SMALL_STATE(3401)] = 132310, + [SMALL_STATE(3402)] = 132338, + [SMALL_STATE(3403)] = 132356, + [SMALL_STATE(3404)] = 132384, + [SMALL_STATE(3405)] = 132400, + [SMALL_STATE(3406)] = 132418, + [SMALL_STATE(3407)] = 132446, + [SMALL_STATE(3408)] = 132462, + [SMALL_STATE(3409)] = 132478, + [SMALL_STATE(3410)] = 132500, + [SMALL_STATE(3411)] = 132528, + [SMALL_STATE(3412)] = 132556, + [SMALL_STATE(3413)] = 132582, + [SMALL_STATE(3414)] = 132598, + [SMALL_STATE(3415)] = 132624, + [SMALL_STATE(3416)] = 132648, + [SMALL_STATE(3417)] = 132676, + [SMALL_STATE(3418)] = 132708, + [SMALL_STATE(3419)] = 132740, + [SMALL_STATE(3420)] = 132772, + [SMALL_STATE(3421)] = 132804, + [SMALL_STATE(3422)] = 132822, + [SMALL_STATE(3423)] = 132838, + [SMALL_STATE(3424)] = 132854, + [SMALL_STATE(3425)] = 132872, + [SMALL_STATE(3426)] = 132888, + [SMALL_STATE(3427)] = 132906, + [SMALL_STATE(3428)] = 132922, + [SMALL_STATE(3429)] = 132938, + [SMALL_STATE(3430)] = 132970, + [SMALL_STATE(3431)] = 133002, + [SMALL_STATE(3432)] = 133030, + [SMALL_STATE(3433)] = 133046, + [SMALL_STATE(3434)] = 133072, + [SMALL_STATE(3435)] = 133100, + [SMALL_STATE(3436)] = 133128, + [SMALL_STATE(3437)] = 133160, + [SMALL_STATE(3438)] = 133186, + [SMALL_STATE(3439)] = 133214, + [SMALL_STATE(3440)] = 133242, + [SMALL_STATE(3441)] = 133274, + [SMALL_STATE(3442)] = 133300, + [SMALL_STATE(3443)] = 133316, + [SMALL_STATE(3444)] = 133344, + [SMALL_STATE(3445)] = 133370, + [SMALL_STATE(3446)] = 133398, + [SMALL_STATE(3447)] = 133414, + [SMALL_STATE(3448)] = 133442, + [SMALL_STATE(3449)] = 133468, + [SMALL_STATE(3450)] = 133500, + [SMALL_STATE(3451)] = 133532, + [SMALL_STATE(3452)] = 133560, + [SMALL_STATE(3453)] = 133592, + [SMALL_STATE(3454)] = 133624, + [SMALL_STATE(3455)] = 133652, + [SMALL_STATE(3456)] = 133680, + [SMALL_STATE(3457)] = 133696, + [SMALL_STATE(3458)] = 133728, + [SMALL_STATE(3459)] = 133756, + [SMALL_STATE(3460)] = 133788, + [SMALL_STATE(3461)] = 133816, + [SMALL_STATE(3462)] = 133844, + [SMALL_STATE(3463)] = 133866, + [SMALL_STATE(3464)] = 133894, + [SMALL_STATE(3465)] = 133922, + [SMALL_STATE(3466)] = 133950, + [SMALL_STATE(3467)] = 133978, + [SMALL_STATE(3468)] = 133994, + [SMALL_STATE(3469)] = 134022, [SMALL_STATE(3470)] = 134050, [SMALL_STATE(3471)] = 134078, [SMALL_STATE(3472)] = 134107, - [SMALL_STATE(3473)] = 134132, - [SMALL_STATE(3474)] = 134155, - [SMALL_STATE(3475)] = 134184, - [SMALL_STATE(3476)] = 134209, - [SMALL_STATE(3477)] = 134232, - [SMALL_STATE(3478)] = 134253, - [SMALL_STATE(3479)] = 134274, - [SMALL_STATE(3480)] = 134303, - [SMALL_STATE(3481)] = 134322, - [SMALL_STATE(3482)] = 134343, - [SMALL_STATE(3483)] = 134366, - [SMALL_STATE(3484)] = 134391, - [SMALL_STATE(3485)] = 134412, - [SMALL_STATE(3486)] = 134435, - [SMALL_STATE(3487)] = 134452, - [SMALL_STATE(3488)] = 134475, - [SMALL_STATE(3489)] = 134500, - [SMALL_STATE(3490)] = 134525, - [SMALL_STATE(3491)] = 134550, - [SMALL_STATE(3492)] = 134575, - [SMALL_STATE(3493)] = 134604, - [SMALL_STATE(3494)] = 134627, - [SMALL_STATE(3495)] = 134646, - [SMALL_STATE(3496)] = 134671, - [SMALL_STATE(3497)] = 134688, - [SMALL_STATE(3498)] = 134703, - [SMALL_STATE(3499)] = 134726, - [SMALL_STATE(3500)] = 134749, - [SMALL_STATE(3501)] = 134774, - [SMALL_STATE(3502)] = 134795, - [SMALL_STATE(3503)] = 134816, - [SMALL_STATE(3504)] = 134841, - [SMALL_STATE(3505)] = 134870, - [SMALL_STATE(3506)] = 134895, - [SMALL_STATE(3507)] = 134910, - [SMALL_STATE(3508)] = 134935, - [SMALL_STATE(3509)] = 134958, - [SMALL_STATE(3510)] = 134987, - [SMALL_STATE(3511)] = 135002, + [SMALL_STATE(3473)] = 134128, + [SMALL_STATE(3474)] = 134149, + [SMALL_STATE(3475)] = 134174, + [SMALL_STATE(3476)] = 134199, + [SMALL_STATE(3477)] = 134224, + [SMALL_STATE(3478)] = 134247, + [SMALL_STATE(3479)] = 134272, + [SMALL_STATE(3480)] = 134293, + [SMALL_STATE(3481)] = 134310, + [SMALL_STATE(3482)] = 134325, + [SMALL_STATE(3483)] = 134350, + [SMALL_STATE(3484)] = 134373, + [SMALL_STATE(3485)] = 134398, + [SMALL_STATE(3486)] = 134423, + [SMALL_STATE(3487)] = 134440, + [SMALL_STATE(3488)] = 134465, + [SMALL_STATE(3489)] = 134490, + [SMALL_STATE(3490)] = 134507, + [SMALL_STATE(3491)] = 134532, + [SMALL_STATE(3492)] = 134553, + [SMALL_STATE(3493)] = 134572, + [SMALL_STATE(3494)] = 134597, + [SMALL_STATE(3495)] = 134612, + [SMALL_STATE(3496)] = 134631, + [SMALL_STATE(3497)] = 134652, + [SMALL_STATE(3498)] = 134675, + [SMALL_STATE(3499)] = 134690, + [SMALL_STATE(3500)] = 134713, + [SMALL_STATE(3501)] = 134734, + [SMALL_STATE(3502)] = 134763, + [SMALL_STATE(3503)] = 134786, + [SMALL_STATE(3504)] = 134815, + [SMALL_STATE(3505)] = 134844, + [SMALL_STATE(3506)] = 134867, + [SMALL_STATE(3507)] = 134896, + [SMALL_STATE(3508)] = 134921, + [SMALL_STATE(3509)] = 134944, + [SMALL_STATE(3510)] = 134967, + [SMALL_STATE(3511)] = 134990, [SMALL_STATE(3512)] = 135019, [SMALL_STATE(3513)] = 135045, - [SMALL_STATE(3514)] = 135071, + [SMALL_STATE(3514)] = 135063, [SMALL_STATE(3515)] = 135089, [SMALL_STATE(3516)] = 135111, [SMALL_STATE(3517)] = 135133, @@ -277436,15 +277436,15 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3538)] = 135591, [SMALL_STATE(3539)] = 135613, [SMALL_STATE(3540)] = 135635, - [SMALL_STATE(3541)] = 135657, - [SMALL_STATE(3542)] = 135671, + [SMALL_STATE(3541)] = 135649, + [SMALL_STATE(3542)] = 135675, [SMALL_STATE(3543)] = 135697, [SMALL_STATE(3544)] = 135719, [SMALL_STATE(3545)] = 135745, [SMALL_STATE(3546)] = 135771, [SMALL_STATE(3547)] = 135797, - [SMALL_STATE(3548)] = 135819, - [SMALL_STATE(3549)] = 135845, + [SMALL_STATE(3548)] = 135823, + [SMALL_STATE(3549)] = 135849, [SMALL_STATE(3550)] = 135871, [SMALL_STATE(3551)] = 135893, [SMALL_STATE(3552)] = 135915, @@ -277452,7 +277452,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3554)] = 135967, [SMALL_STATE(3555)] = 135989, [SMALL_STATE(3556)] = 136011, - [SMALL_STATE(3557)] = 136033, + [SMALL_STATE(3557)] = 136037, [SMALL_STATE(3558)] = 136059, [SMALL_STATE(3559)] = 136081, [SMALL_STATE(3560)] = 136103, @@ -277468,712 +277468,712 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3570)] = 136343, [SMALL_STATE(3571)] = 136365, [SMALL_STATE(3572)] = 136381, - [SMALL_STATE(3573)] = 136403, + [SMALL_STATE(3573)] = 136407, [SMALL_STATE(3574)] = 136429, [SMALL_STATE(3575)] = 136455, [SMALL_STATE(3576)] = 136481, [SMALL_STATE(3577)] = 136507, [SMALL_STATE(3578)] = 136529, [SMALL_STATE(3579)] = 136551, - [SMALL_STATE(3580)] = 136565, + [SMALL_STATE(3580)] = 136573, [SMALL_STATE(3581)] = 136587, [SMALL_STATE(3582)] = 136609, - [SMALL_STATE(3583)] = 136623, - [SMALL_STATE(3584)] = 136637, - [SMALL_STATE(3585)] = 136651, - [SMALL_STATE(3586)] = 136673, - [SMALL_STATE(3587)] = 136695, + [SMALL_STATE(3583)] = 136635, + [SMALL_STATE(3584)] = 136649, + [SMALL_STATE(3585)] = 136663, + [SMALL_STATE(3586)] = 136677, + [SMALL_STATE(3587)] = 136699, [SMALL_STATE(3588)] = 136721, [SMALL_STATE(3589)] = 136743, [SMALL_STATE(3590)] = 136765, [SMALL_STATE(3591)] = 136787, [SMALL_STATE(3592)] = 136809, [SMALL_STATE(3593)] = 136835, - [SMALL_STATE(3594)] = 136861, - [SMALL_STATE(3595)] = 136887, - [SMALL_STATE(3596)] = 136909, + [SMALL_STATE(3594)] = 136857, + [SMALL_STATE(3595)] = 136883, + [SMALL_STATE(3596)] = 136905, [SMALL_STATE(3597)] = 136931, [SMALL_STATE(3598)] = 136957, - [SMALL_STATE(3599)] = 136983, - [SMALL_STATE(3600)] = 137001, - [SMALL_STATE(3601)] = 137019, - [SMALL_STATE(3602)] = 137041, - [SMALL_STATE(3603)] = 137063, + [SMALL_STATE(3599)] = 136979, + [SMALL_STATE(3600)] = 137005, + [SMALL_STATE(3601)] = 137031, + [SMALL_STATE(3602)] = 137049, + [SMALL_STATE(3603)] = 137067, [SMALL_STATE(3604)] = 137089, - [SMALL_STATE(3605)] = 137115, - [SMALL_STATE(3606)] = 137129, + [SMALL_STATE(3605)] = 137111, + [SMALL_STATE(3606)] = 137137, [SMALL_STATE(3607)] = 137151, [SMALL_STATE(3608)] = 137173, - [SMALL_STATE(3609)] = 137195, - [SMALL_STATE(3610)] = 137209, - [SMALL_STATE(3611)] = 137223, - [SMALL_STATE(3612)] = 137247, - [SMALL_STATE(3613)] = 137261, - [SMALL_STATE(3614)] = 137279, - [SMALL_STATE(3615)] = 137305, - [SMALL_STATE(3616)] = 137331, - [SMALL_STATE(3617)] = 137357, + [SMALL_STATE(3609)] = 137199, + [SMALL_STATE(3610)] = 137221, + [SMALL_STATE(3611)] = 137243, + [SMALL_STATE(3612)] = 137257, + [SMALL_STATE(3613)] = 137271, + [SMALL_STATE(3614)] = 137295, + [SMALL_STATE(3615)] = 137309, + [SMALL_STATE(3616)] = 137327, + [SMALL_STATE(3617)] = 137353, [SMALL_STATE(3618)] = 137379, - [SMALL_STATE(3619)] = 137401, - [SMALL_STATE(3620)] = 137425, - [SMALL_STATE(3621)] = 137451, + [SMALL_STATE(3619)] = 137405, + [SMALL_STATE(3620)] = 137427, + [SMALL_STATE(3621)] = 137449, [SMALL_STATE(3622)] = 137473, [SMALL_STATE(3623)] = 137499, [SMALL_STATE(3624)] = 137525, - [SMALL_STATE(3625)] = 137547, - [SMALL_STATE(3626)] = 137569, - [SMALL_STATE(3627)] = 137591, - [SMALL_STATE(3628)] = 137617, + [SMALL_STATE(3625)] = 137551, + [SMALL_STATE(3626)] = 137577, + [SMALL_STATE(3627)] = 137599, + [SMALL_STATE(3628)] = 137621, [SMALL_STATE(3629)] = 137643, [SMALL_STATE(3630)] = 137669, [SMALL_STATE(3631)] = 137695, - [SMALL_STATE(3632)] = 137717, - [SMALL_STATE(3633)] = 137739, - [SMALL_STATE(3634)] = 137761, - [SMALL_STATE(3635)] = 137787, - [SMALL_STATE(3636)] = 137809, - [SMALL_STATE(3637)] = 137827, - [SMALL_STATE(3638)] = 137849, - [SMALL_STATE(3639)] = 137867, - [SMALL_STATE(3640)] = 137893, - [SMALL_STATE(3641)] = 137911, - [SMALL_STATE(3642)] = 137927, - [SMALL_STATE(3643)] = 137949, - [SMALL_STATE(3644)] = 137965, - [SMALL_STATE(3645)] = 137987, - [SMALL_STATE(3646)] = 138007, - [SMALL_STATE(3647)] = 138023, - [SMALL_STATE(3648)] = 138045, - [SMALL_STATE(3649)] = 138067, - [SMALL_STATE(3650)] = 138087, - [SMALL_STATE(3651)] = 138107, - [SMALL_STATE(3652)] = 138127, - [SMALL_STATE(3653)] = 138147, - [SMALL_STATE(3654)] = 138169, - [SMALL_STATE(3655)] = 138191, - [SMALL_STATE(3656)] = 138213, - [SMALL_STATE(3657)] = 138233, - [SMALL_STATE(3658)] = 138259, - [SMALL_STATE(3659)] = 138273, - [SMALL_STATE(3660)] = 138299, - [SMALL_STATE(3661)] = 138325, - [SMALL_STATE(3662)] = 138347, - [SMALL_STATE(3663)] = 138369, - [SMALL_STATE(3664)] = 138389, - [SMALL_STATE(3665)] = 138411, - [SMALL_STATE(3666)] = 138433, - [SMALL_STATE(3667)] = 138455, - [SMALL_STATE(3668)] = 138477, - [SMALL_STATE(3669)] = 138495, - [SMALL_STATE(3670)] = 138513, - [SMALL_STATE(3671)] = 138531, - [SMALL_STATE(3672)] = 138549, - [SMALL_STATE(3673)] = 138575, - [SMALL_STATE(3674)] = 138597, - [SMALL_STATE(3675)] = 138619, - [SMALL_STATE(3676)] = 138641, - [SMALL_STATE(3677)] = 138663, - [SMALL_STATE(3678)] = 138685, - [SMALL_STATE(3679)] = 138707, - [SMALL_STATE(3680)] = 138733, - [SMALL_STATE(3681)] = 138751, - [SMALL_STATE(3682)] = 138769, - [SMALL_STATE(3683)] = 138787, - [SMALL_STATE(3684)] = 138805, - [SMALL_STATE(3685)] = 138827, - [SMALL_STATE(3686)] = 138853, - [SMALL_STATE(3687)] = 138871, - [SMALL_STATE(3688)] = 138889, - [SMALL_STATE(3689)] = 138911, - [SMALL_STATE(3690)] = 138929, - [SMALL_STATE(3691)] = 138947, - [SMALL_STATE(3692)] = 138965, - [SMALL_STATE(3693)] = 138983, - [SMALL_STATE(3694)] = 139001, - [SMALL_STATE(3695)] = 139019, - [SMALL_STATE(3696)] = 139037, - [SMALL_STATE(3697)] = 139055, - [SMALL_STATE(3698)] = 139077, - [SMALL_STATE(3699)] = 139095, - [SMALL_STATE(3700)] = 139113, - [SMALL_STATE(3701)] = 139135, - [SMALL_STATE(3702)] = 139157, - [SMALL_STATE(3703)] = 139183, - [SMALL_STATE(3704)] = 139201, - [SMALL_STATE(3705)] = 139215, - [SMALL_STATE(3706)] = 139237, - [SMALL_STATE(3707)] = 139259, - [SMALL_STATE(3708)] = 139281, - [SMALL_STATE(3709)] = 139303, - [SMALL_STATE(3710)] = 139325, - [SMALL_STATE(3711)] = 139347, - [SMALL_STATE(3712)] = 139369, - [SMALL_STATE(3713)] = 139391, - [SMALL_STATE(3714)] = 139413, - [SMALL_STATE(3715)] = 139427, - [SMALL_STATE(3716)] = 139449, - [SMALL_STATE(3717)] = 139471, - [SMALL_STATE(3718)] = 139493, - [SMALL_STATE(3719)] = 139515, - [SMALL_STATE(3720)] = 139537, - [SMALL_STATE(3721)] = 139559, - [SMALL_STATE(3722)] = 139585, - [SMALL_STATE(3723)] = 139599, - [SMALL_STATE(3724)] = 139625, - [SMALL_STATE(3725)] = 139651, - [SMALL_STATE(3726)] = 139677, - [SMALL_STATE(3727)] = 139699, - [SMALL_STATE(3728)] = 139715, - [SMALL_STATE(3729)] = 139731, - [SMALL_STATE(3730)] = 139751, - [SMALL_STATE(3731)] = 139767, - [SMALL_STATE(3732)] = 139789, - [SMALL_STATE(3733)] = 139803, - [SMALL_STATE(3734)] = 139825, - [SMALL_STATE(3735)] = 139847, - [SMALL_STATE(3736)] = 139869, - [SMALL_STATE(3737)] = 139891, - [SMALL_STATE(3738)] = 139913, - [SMALL_STATE(3739)] = 139939, - [SMALL_STATE(3740)] = 139955, - [SMALL_STATE(3741)] = 139981, - [SMALL_STATE(3742)] = 140003, - [SMALL_STATE(3743)] = 140025, - [SMALL_STATE(3744)] = 140047, - [SMALL_STATE(3745)] = 140069, - [SMALL_STATE(3746)] = 140091, - [SMALL_STATE(3747)] = 140113, - [SMALL_STATE(3748)] = 140135, - [SMALL_STATE(3749)] = 140157, - [SMALL_STATE(3750)] = 140179, - [SMALL_STATE(3751)] = 140201, - [SMALL_STATE(3752)] = 140223, - [SMALL_STATE(3753)] = 140245, - [SMALL_STATE(3754)] = 140267, + [SMALL_STATE(3632)] = 137721, + [SMALL_STATE(3633)] = 137743, + [SMALL_STATE(3634)] = 137769, + [SMALL_STATE(3635)] = 137795, + [SMALL_STATE(3636)] = 137817, + [SMALL_STATE(3637)] = 137839, + [SMALL_STATE(3638)] = 137865, + [SMALL_STATE(3639)] = 137887, + [SMALL_STATE(3640)] = 137905, + [SMALL_STATE(3641)] = 137927, + [SMALL_STATE(3642)] = 137945, + [SMALL_STATE(3643)] = 137971, + [SMALL_STATE(3644)] = 137989, + [SMALL_STATE(3645)] = 138005, + [SMALL_STATE(3646)] = 138027, + [SMALL_STATE(3647)] = 138043, + [SMALL_STATE(3648)] = 138065, + [SMALL_STATE(3649)] = 138085, + [SMALL_STATE(3650)] = 138101, + [SMALL_STATE(3651)] = 138123, + [SMALL_STATE(3652)] = 138145, + [SMALL_STATE(3653)] = 138165, + [SMALL_STATE(3654)] = 138185, + [SMALL_STATE(3655)] = 138205, + [SMALL_STATE(3656)] = 138225, + [SMALL_STATE(3657)] = 138251, + [SMALL_STATE(3658)] = 138273, + [SMALL_STATE(3659)] = 138293, + [SMALL_STATE(3660)] = 138319, + [SMALL_STATE(3661)] = 138333, + [SMALL_STATE(3662)] = 138355, + [SMALL_STATE(3663)] = 138381, + [SMALL_STATE(3664)] = 138403, + [SMALL_STATE(3665)] = 138425, + [SMALL_STATE(3666)] = 138445, + [SMALL_STATE(3667)] = 138467, + [SMALL_STATE(3668)] = 138489, + [SMALL_STATE(3669)] = 138511, + [SMALL_STATE(3670)] = 138533, + [SMALL_STATE(3671)] = 138551, + [SMALL_STATE(3672)] = 138569, + [SMALL_STATE(3673)] = 138587, + [SMALL_STATE(3674)] = 138605, + [SMALL_STATE(3675)] = 138631, + [SMALL_STATE(3676)] = 138653, + [SMALL_STATE(3677)] = 138675, + [SMALL_STATE(3678)] = 138697, + [SMALL_STATE(3679)] = 138719, + [SMALL_STATE(3680)] = 138741, + [SMALL_STATE(3681)] = 138763, + [SMALL_STATE(3682)] = 138781, + [SMALL_STATE(3683)] = 138799, + [SMALL_STATE(3684)] = 138817, + [SMALL_STATE(3685)] = 138835, + [SMALL_STATE(3686)] = 138857, + [SMALL_STATE(3687)] = 138875, + [SMALL_STATE(3688)] = 138893, + [SMALL_STATE(3689)] = 138915, + [SMALL_STATE(3690)] = 138933, + [SMALL_STATE(3691)] = 138951, + [SMALL_STATE(3692)] = 138969, + [SMALL_STATE(3693)] = 138987, + [SMALL_STATE(3694)] = 139005, + [SMALL_STATE(3695)] = 139027, + [SMALL_STATE(3696)] = 139045, + [SMALL_STATE(3697)] = 139063, + [SMALL_STATE(3698)] = 139081, + [SMALL_STATE(3699)] = 139099, + [SMALL_STATE(3700)] = 139121, + [SMALL_STATE(3701)] = 139139, + [SMALL_STATE(3702)] = 139161, + [SMALL_STATE(3703)] = 139187, + [SMALL_STATE(3704)] = 139205, + [SMALL_STATE(3705)] = 139219, + [SMALL_STATE(3706)] = 139241, + [SMALL_STATE(3707)] = 139263, + [SMALL_STATE(3708)] = 139285, + [SMALL_STATE(3709)] = 139307, + [SMALL_STATE(3710)] = 139329, + [SMALL_STATE(3711)] = 139351, + [SMALL_STATE(3712)] = 139373, + [SMALL_STATE(3713)] = 139395, + [SMALL_STATE(3714)] = 139417, + [SMALL_STATE(3715)] = 139431, + [SMALL_STATE(3716)] = 139453, + [SMALL_STATE(3717)] = 139475, + [SMALL_STATE(3718)] = 139497, + [SMALL_STATE(3719)] = 139519, + [SMALL_STATE(3720)] = 139541, + [SMALL_STATE(3721)] = 139563, + [SMALL_STATE(3722)] = 139589, + [SMALL_STATE(3723)] = 139603, + [SMALL_STATE(3724)] = 139629, + [SMALL_STATE(3725)] = 139655, + [SMALL_STATE(3726)] = 139681, + [SMALL_STATE(3727)] = 139703, + [SMALL_STATE(3728)] = 139719, + [SMALL_STATE(3729)] = 139735, + [SMALL_STATE(3730)] = 139755, + [SMALL_STATE(3731)] = 139771, + [SMALL_STATE(3732)] = 139785, + [SMALL_STATE(3733)] = 139807, + [SMALL_STATE(3734)] = 139829, + [SMALL_STATE(3735)] = 139851, + [SMALL_STATE(3736)] = 139873, + [SMALL_STATE(3737)] = 139895, + [SMALL_STATE(3738)] = 139917, + [SMALL_STATE(3739)] = 139943, + [SMALL_STATE(3740)] = 139959, + [SMALL_STATE(3741)] = 139985, + [SMALL_STATE(3742)] = 140007, + [SMALL_STATE(3743)] = 140029, + [SMALL_STATE(3744)] = 140051, + [SMALL_STATE(3745)] = 140073, + [SMALL_STATE(3746)] = 140095, + [SMALL_STATE(3747)] = 140117, + [SMALL_STATE(3748)] = 140139, + [SMALL_STATE(3749)] = 140161, + [SMALL_STATE(3750)] = 140183, + [SMALL_STATE(3751)] = 140205, + [SMALL_STATE(3752)] = 140227, + [SMALL_STATE(3753)] = 140249, + [SMALL_STATE(3754)] = 140271, [SMALL_STATE(3755)] = 140293, [SMALL_STATE(3756)] = 140316, - [SMALL_STATE(3757)] = 140333, - [SMALL_STATE(3758)] = 140352, - [SMALL_STATE(3759)] = 140375, - [SMALL_STATE(3760)] = 140392, - [SMALL_STATE(3761)] = 140415, - [SMALL_STATE(3762)] = 140438, - [SMALL_STATE(3763)] = 140461, + [SMALL_STATE(3757)] = 140339, + [SMALL_STATE(3758)] = 140356, + [SMALL_STATE(3759)] = 140373, + [SMALL_STATE(3760)] = 140390, + [SMALL_STATE(3761)] = 140413, + [SMALL_STATE(3762)] = 140436, + [SMALL_STATE(3763)] = 140455, [SMALL_STATE(3764)] = 140478, [SMALL_STATE(3765)] = 140495, - [SMALL_STATE(3766)] = 140518, + [SMALL_STATE(3766)] = 140512, [SMALL_STATE(3767)] = 140535, [SMALL_STATE(3768)] = 140552, - [SMALL_STATE(3769)] = 140575, - [SMALL_STATE(3770)] = 140594, + [SMALL_STATE(3769)] = 140569, + [SMALL_STATE(3770)] = 140588, [SMALL_STATE(3771)] = 140611, [SMALL_STATE(3772)] = 140634, [SMALL_STATE(3773)] = 140651, - [SMALL_STATE(3774)] = 140670, - [SMALL_STATE(3775)] = 140687, - [SMALL_STATE(3776)] = 140702, - [SMALL_STATE(3777)] = 140719, + [SMALL_STATE(3774)] = 140674, + [SMALL_STATE(3775)] = 140691, + [SMALL_STATE(3776)] = 140708, + [SMALL_STATE(3777)] = 140723, [SMALL_STATE(3778)] = 140742, [SMALL_STATE(3779)] = 140759, - [SMALL_STATE(3780)] = 140782, - [SMALL_STATE(3781)] = 140799, - [SMALL_STATE(3782)] = 140818, - [SMALL_STATE(3783)] = 140837, - [SMALL_STATE(3784)] = 140854, - [SMALL_STATE(3785)] = 140871, - [SMALL_STATE(3786)] = 140886, - [SMALL_STATE(3787)] = 140909, + [SMALL_STATE(3780)] = 140774, + [SMALL_STATE(3781)] = 140791, + [SMALL_STATE(3782)] = 140814, + [SMALL_STATE(3783)] = 140831, + [SMALL_STATE(3784)] = 140850, + [SMALL_STATE(3785)] = 140873, + [SMALL_STATE(3786)] = 140890, + [SMALL_STATE(3787)] = 140907, [SMALL_STATE(3788)] = 140926, - [SMALL_STATE(3789)] = 140949, - [SMALL_STATE(3790)] = 140968, - [SMALL_STATE(3791)] = 140985, - [SMALL_STATE(3792)] = 141008, - [SMALL_STATE(3793)] = 141031, - [SMALL_STATE(3794)] = 141044, - [SMALL_STATE(3795)] = 141057, - [SMALL_STATE(3796)] = 141074, - [SMALL_STATE(3797)] = 141087, - [SMALL_STATE(3798)] = 141110, - [SMALL_STATE(3799)] = 141133, - [SMALL_STATE(3800)] = 141156, - [SMALL_STATE(3801)] = 141179, - [SMALL_STATE(3802)] = 141192, - [SMALL_STATE(3803)] = 141205, - [SMALL_STATE(3804)] = 141222, - [SMALL_STATE(3805)] = 141245, - [SMALL_STATE(3806)] = 141268, - [SMALL_STATE(3807)] = 141285, - [SMALL_STATE(3808)] = 141302, - [SMALL_STATE(3809)] = 141321, - [SMALL_STATE(3810)] = 141338, - [SMALL_STATE(3811)] = 141357, - [SMALL_STATE(3812)] = 141374, - [SMALL_STATE(3813)] = 141393, - [SMALL_STATE(3814)] = 141410, - [SMALL_STATE(3815)] = 141429, - [SMALL_STATE(3816)] = 141446, - [SMALL_STATE(3817)] = 141463, - [SMALL_STATE(3818)] = 141486, - [SMALL_STATE(3819)] = 141503, - [SMALL_STATE(3820)] = 141516, - [SMALL_STATE(3821)] = 141533, - [SMALL_STATE(3822)] = 141556, - [SMALL_STATE(3823)] = 141573, - [SMALL_STATE(3824)] = 141596, - [SMALL_STATE(3825)] = 141619, - [SMALL_STATE(3826)] = 141642, - [SMALL_STATE(3827)] = 141659, - [SMALL_STATE(3828)] = 141676, - [SMALL_STATE(3829)] = 141689, - [SMALL_STATE(3830)] = 141706, - [SMALL_STATE(3831)] = 141723, - [SMALL_STATE(3832)] = 141740, - [SMALL_STATE(3833)] = 141761, - [SMALL_STATE(3834)] = 141778, - [SMALL_STATE(3835)] = 141795, - [SMALL_STATE(3836)] = 141818, - [SMALL_STATE(3837)] = 141831, - [SMALL_STATE(3838)] = 141848, - [SMALL_STATE(3839)] = 141871, - [SMALL_STATE(3840)] = 141894, - [SMALL_STATE(3841)] = 141911, - [SMALL_STATE(3842)] = 141930, - [SMALL_STATE(3843)] = 141949, - [SMALL_STATE(3844)] = 141972, - [SMALL_STATE(3845)] = 141995, - [SMALL_STATE(3846)] = 142018, - [SMALL_STATE(3847)] = 142031, - [SMALL_STATE(3848)] = 142050, - [SMALL_STATE(3849)] = 142069, - [SMALL_STATE(3850)] = 142088, - [SMALL_STATE(3851)] = 142105, - [SMALL_STATE(3852)] = 142128, - [SMALL_STATE(3853)] = 142141, - [SMALL_STATE(3854)] = 142154, - [SMALL_STATE(3855)] = 142167, - [SMALL_STATE(3856)] = 142184, - [SMALL_STATE(3857)] = 142207, - [SMALL_STATE(3858)] = 142230, - [SMALL_STATE(3859)] = 142253, - [SMALL_STATE(3860)] = 142276, - [SMALL_STATE(3861)] = 142289, - [SMALL_STATE(3862)] = 142312, - [SMALL_STATE(3863)] = 142329, - [SMALL_STATE(3864)] = 142346, - [SMALL_STATE(3865)] = 142369, - [SMALL_STATE(3866)] = 142392, - [SMALL_STATE(3867)] = 142415, - [SMALL_STATE(3868)] = 142432, - [SMALL_STATE(3869)] = 142455, - [SMALL_STATE(3870)] = 142472, - [SMALL_STATE(3871)] = 142491, - [SMALL_STATE(3872)] = 142514, - [SMALL_STATE(3873)] = 142537, - [SMALL_STATE(3874)] = 142560, - [SMALL_STATE(3875)] = 142577, - [SMALL_STATE(3876)] = 142594, - [SMALL_STATE(3877)] = 142613, + [SMALL_STATE(3789)] = 140939, + [SMALL_STATE(3790)] = 140952, + [SMALL_STATE(3791)] = 140969, + [SMALL_STATE(3792)] = 140992, + [SMALL_STATE(3793)] = 141009, + [SMALL_STATE(3794)] = 141032, + [SMALL_STATE(3795)] = 141055, + [SMALL_STATE(3796)] = 141068, + [SMALL_STATE(3797)] = 141085, + [SMALL_STATE(3798)] = 141102, + [SMALL_STATE(3799)] = 141115, + [SMALL_STATE(3800)] = 141138, + [SMALL_STATE(3801)] = 141161, + [SMALL_STATE(3802)] = 141174, + [SMALL_STATE(3803)] = 141197, + [SMALL_STATE(3804)] = 141220, + [SMALL_STATE(3805)] = 141237, + [SMALL_STATE(3806)] = 141254, + [SMALL_STATE(3807)] = 141267, + [SMALL_STATE(3808)] = 141290, + [SMALL_STATE(3809)] = 141313, + [SMALL_STATE(3810)] = 141332, + [SMALL_STATE(3811)] = 141349, + [SMALL_STATE(3812)] = 141368, + [SMALL_STATE(3813)] = 141387, + [SMALL_STATE(3814)] = 141404, + [SMALL_STATE(3815)] = 141423, + [SMALL_STATE(3816)] = 141440, + [SMALL_STATE(3817)] = 141453, + [SMALL_STATE(3818)] = 141470, + [SMALL_STATE(3819)] = 141493, + [SMALL_STATE(3820)] = 141510, + [SMALL_STATE(3821)] = 141527, + [SMALL_STATE(3822)] = 141550, + [SMALL_STATE(3823)] = 141567, + [SMALL_STATE(3824)] = 141590, + [SMALL_STATE(3825)] = 141607, + [SMALL_STATE(3826)] = 141620, + [SMALL_STATE(3827)] = 141643, + [SMALL_STATE(3828)] = 141660, + [SMALL_STATE(3829)] = 141677, + [SMALL_STATE(3830)] = 141694, + [SMALL_STATE(3831)] = 141715, + [SMALL_STATE(3832)] = 141732, + [SMALL_STATE(3833)] = 141749, + [SMALL_STATE(3834)] = 141772, + [SMALL_STATE(3835)] = 141789, + [SMALL_STATE(3836)] = 141806, + [SMALL_STATE(3837)] = 141823, + [SMALL_STATE(3838)] = 141836, + [SMALL_STATE(3839)] = 141859, + [SMALL_STATE(3840)] = 141876, + [SMALL_STATE(3841)] = 141895, + [SMALL_STATE(3842)] = 141918, + [SMALL_STATE(3843)] = 141935, + [SMALL_STATE(3844)] = 141958, + [SMALL_STATE(3845)] = 141975, + [SMALL_STATE(3846)] = 141994, + [SMALL_STATE(3847)] = 142013, + [SMALL_STATE(3848)] = 142036, + [SMALL_STATE(3849)] = 142059, + [SMALL_STATE(3850)] = 142078, + [SMALL_STATE(3851)] = 142095, + [SMALL_STATE(3852)] = 142118, + [SMALL_STATE(3853)] = 142131, + [SMALL_STATE(3854)] = 142144, + [SMALL_STATE(3855)] = 142157, + [SMALL_STATE(3856)] = 142176, + [SMALL_STATE(3857)] = 142195, + [SMALL_STATE(3858)] = 142218, + [SMALL_STATE(3859)] = 142231, + [SMALL_STATE(3860)] = 142254, + [SMALL_STATE(3861)] = 142277, + [SMALL_STATE(3862)] = 142300, + [SMALL_STATE(3863)] = 142317, + [SMALL_STATE(3864)] = 142334, + [SMALL_STATE(3865)] = 142357, + [SMALL_STATE(3866)] = 142376, + [SMALL_STATE(3867)] = 142399, + [SMALL_STATE(3868)] = 142416, + [SMALL_STATE(3869)] = 142439, + [SMALL_STATE(3870)] = 142456, + [SMALL_STATE(3871)] = 142479, + [SMALL_STATE(3872)] = 142502, + [SMALL_STATE(3873)] = 142525, + [SMALL_STATE(3874)] = 142542, + [SMALL_STATE(3875)] = 142559, + [SMALL_STATE(3876)] = 142582, + [SMALL_STATE(3877)] = 142605, [SMALL_STATE(3878)] = 142628, - [SMALL_STATE(3879)] = 142647, - [SMALL_STATE(3880)] = 142670, - [SMALL_STATE(3881)] = 142687, - [SMALL_STATE(3882)] = 142702, - [SMALL_STATE(3883)] = 142719, - [SMALL_STATE(3884)] = 142742, - [SMALL_STATE(3885)] = 142755, - [SMALL_STATE(3886)] = 142778, - [SMALL_STATE(3887)] = 142795, - [SMALL_STATE(3888)] = 142818, - [SMALL_STATE(3889)] = 142841, - [SMALL_STATE(3890)] = 142864, - [SMALL_STATE(3891)] = 142887, - [SMALL_STATE(3892)] = 142910, - [SMALL_STATE(3893)] = 142929, - [SMALL_STATE(3894)] = 142952, - [SMALL_STATE(3895)] = 142973, - [SMALL_STATE(3896)] = 142990, - [SMALL_STATE(3897)] = 143013, - [SMALL_STATE(3898)] = 143036, - [SMALL_STATE(3899)] = 143059, - [SMALL_STATE(3900)] = 143082, - [SMALL_STATE(3901)] = 143105, - [SMALL_STATE(3902)] = 143124, + [SMALL_STATE(3879)] = 142651, + [SMALL_STATE(3880)] = 142668, + [SMALL_STATE(3881)] = 142691, + [SMALL_STATE(3882)] = 142714, + [SMALL_STATE(3883)] = 142729, + [SMALL_STATE(3884)] = 142748, + [SMALL_STATE(3885)] = 142771, + [SMALL_STATE(3886)] = 142786, + [SMALL_STATE(3887)] = 142809, + [SMALL_STATE(3888)] = 142822, + [SMALL_STATE(3889)] = 142845, + [SMALL_STATE(3890)] = 142868, + [SMALL_STATE(3891)] = 142891, + [SMALL_STATE(3892)] = 142914, + [SMALL_STATE(3893)] = 142933, + [SMALL_STATE(3894)] = 142950, + [SMALL_STATE(3895)] = 142969, + [SMALL_STATE(3896)] = 142992, + [SMALL_STATE(3897)] = 143015, + [SMALL_STATE(3898)] = 143038, + [SMALL_STATE(3899)] = 143057, + [SMALL_STATE(3900)] = 143074, + [SMALL_STATE(3901)] = 143097, + [SMALL_STATE(3902)] = 143120, [SMALL_STATE(3903)] = 143141, - [SMALL_STATE(3904)] = 143160, - [SMALL_STATE(3905)] = 143183, + [SMALL_STATE(3904)] = 143162, + [SMALL_STATE(3905)] = 143185, [SMALL_STATE(3906)] = 143204, [SMALL_STATE(3907)] = 143221, - [SMALL_STATE(3908)] = 143233, - [SMALL_STATE(3909)] = 143245, - [SMALL_STATE(3910)] = 143261, - [SMALL_STATE(3911)] = 143279, - [SMALL_STATE(3912)] = 143295, - [SMALL_STATE(3913)] = 143307, - [SMALL_STATE(3914)] = 143323, - [SMALL_STATE(3915)] = 143339, - [SMALL_STATE(3916)] = 143351, - [SMALL_STATE(3917)] = 143363, - [SMALL_STATE(3918)] = 143379, - [SMALL_STATE(3919)] = 143395, - [SMALL_STATE(3920)] = 143407, - [SMALL_STATE(3921)] = 143419, - [SMALL_STATE(3922)] = 143431, - [SMALL_STATE(3923)] = 143449, - [SMALL_STATE(3924)] = 143465, - [SMALL_STATE(3925)] = 143481, - [SMALL_STATE(3926)] = 143497, - [SMALL_STATE(3927)] = 143509, - [SMALL_STATE(3928)] = 143521, - [SMALL_STATE(3929)] = 143533, - [SMALL_STATE(3930)] = 143549, - [SMALL_STATE(3931)] = 143569, - [SMALL_STATE(3932)] = 143585, - [SMALL_STATE(3933)] = 143605, - [SMALL_STATE(3934)] = 143621, - [SMALL_STATE(3935)] = 143637, - [SMALL_STATE(3936)] = 143653, - [SMALL_STATE(3937)] = 143671, - [SMALL_STATE(3938)] = 143687, - [SMALL_STATE(3939)] = 143705, - [SMALL_STATE(3940)] = 143721, - [SMALL_STATE(3941)] = 143741, - [SMALL_STATE(3942)] = 143757, - [SMALL_STATE(3943)] = 143773, - [SMALL_STATE(3944)] = 143789, - [SMALL_STATE(3945)] = 143807, - [SMALL_STATE(3946)] = 143825, - [SMALL_STATE(3947)] = 143837, - [SMALL_STATE(3948)] = 143849, - [SMALL_STATE(3949)] = 143869, - [SMALL_STATE(3950)] = 143881, - [SMALL_STATE(3951)] = 143899, - [SMALL_STATE(3952)] = 143917, - [SMALL_STATE(3953)] = 143937, - [SMALL_STATE(3954)] = 143953, - [SMALL_STATE(3955)] = 143969, - [SMALL_STATE(3956)] = 143985, - [SMALL_STATE(3957)] = 144001, - [SMALL_STATE(3958)] = 144017, - [SMALL_STATE(3959)] = 144037, - [SMALL_STATE(3960)] = 144053, - [SMALL_STATE(3961)] = 144071, - [SMALL_STATE(3962)] = 144083, - [SMALL_STATE(3963)] = 144099, - [SMALL_STATE(3964)] = 144119, - [SMALL_STATE(3965)] = 144133, - [SMALL_STATE(3966)] = 144151, - [SMALL_STATE(3967)] = 144167, - [SMALL_STATE(3968)] = 144187, - [SMALL_STATE(3969)] = 144207, - [SMALL_STATE(3970)] = 144219, - [SMALL_STATE(3971)] = 144239, - [SMALL_STATE(3972)] = 144255, - [SMALL_STATE(3973)] = 144271, - [SMALL_STATE(3974)] = 144283, - [SMALL_STATE(3975)] = 144303, - [SMALL_STATE(3976)] = 144319, - [SMALL_STATE(3977)] = 144335, - [SMALL_STATE(3978)] = 144349, - [SMALL_STATE(3979)] = 144363, - [SMALL_STATE(3980)] = 144379, - [SMALL_STATE(3981)] = 144395, - [SMALL_STATE(3982)] = 144415, - [SMALL_STATE(3983)] = 144433, - [SMALL_STATE(3984)] = 144447, - [SMALL_STATE(3985)] = 144465, - [SMALL_STATE(3986)] = 144485, - [SMALL_STATE(3987)] = 144501, - [SMALL_STATE(3988)] = 144517, - [SMALL_STATE(3989)] = 144537, - [SMALL_STATE(3990)] = 144557, - [SMALL_STATE(3991)] = 144577, - [SMALL_STATE(3992)] = 144589, - [SMALL_STATE(3993)] = 144605, - [SMALL_STATE(3994)] = 144621, - [SMALL_STATE(3995)] = 144633, - [SMALL_STATE(3996)] = 144649, - [SMALL_STATE(3997)] = 144669, - [SMALL_STATE(3998)] = 144681, - [SMALL_STATE(3999)] = 144693, - [SMALL_STATE(4000)] = 144705, - [SMALL_STATE(4001)] = 144717, - [SMALL_STATE(4002)] = 144733, - [SMALL_STATE(4003)] = 144749, - [SMALL_STATE(4004)] = 144769, - [SMALL_STATE(4005)] = 144785, - [SMALL_STATE(4006)] = 144801, - [SMALL_STATE(4007)] = 144817, - [SMALL_STATE(4008)] = 144835, - [SMALL_STATE(4009)] = 144851, - [SMALL_STATE(4010)] = 144867, - [SMALL_STATE(4011)] = 144883, - [SMALL_STATE(4012)] = 144903, - [SMALL_STATE(4013)] = 144923, - [SMALL_STATE(4014)] = 144939, - [SMALL_STATE(4015)] = 144957, - [SMALL_STATE(4016)] = 144977, - [SMALL_STATE(4017)] = 144993, - [SMALL_STATE(4018)] = 145013, - [SMALL_STATE(4019)] = 145033, - [SMALL_STATE(4020)] = 145049, - [SMALL_STATE(4021)] = 145065, - [SMALL_STATE(4022)] = 145083, - [SMALL_STATE(4023)] = 145099, - [SMALL_STATE(4024)] = 145115, - [SMALL_STATE(4025)] = 145135, - [SMALL_STATE(4026)] = 145151, - [SMALL_STATE(4027)] = 145163, - [SMALL_STATE(4028)] = 145179, - [SMALL_STATE(4029)] = 145197, - [SMALL_STATE(4030)] = 145213, - [SMALL_STATE(4031)] = 145229, - [SMALL_STATE(4032)] = 145245, - [SMALL_STATE(4033)] = 145265, + [SMALL_STATE(3908)] = 143237, + [SMALL_STATE(3909)] = 143253, + [SMALL_STATE(3910)] = 143271, + [SMALL_STATE(3911)] = 143287, + [SMALL_STATE(3912)] = 143303, + [SMALL_STATE(3913)] = 143315, + [SMALL_STATE(3914)] = 143331, + [SMALL_STATE(3915)] = 143347, + [SMALL_STATE(3916)] = 143359, + [SMALL_STATE(3917)] = 143371, + [SMALL_STATE(3918)] = 143383, + [SMALL_STATE(3919)] = 143399, + [SMALL_STATE(3920)] = 143411, + [SMALL_STATE(3921)] = 143423, + [SMALL_STATE(3922)] = 143441, + [SMALL_STATE(3923)] = 143457, + [SMALL_STATE(3924)] = 143473, + [SMALL_STATE(3925)] = 143489, + [SMALL_STATE(3926)] = 143501, + [SMALL_STATE(3927)] = 143513, + [SMALL_STATE(3928)] = 143529, + [SMALL_STATE(3929)] = 143541, + [SMALL_STATE(3930)] = 143557, + [SMALL_STATE(3931)] = 143573, + [SMALL_STATE(3932)] = 143593, + [SMALL_STATE(3933)] = 143613, + [SMALL_STATE(3934)] = 143629, + [SMALL_STATE(3935)] = 143645, + [SMALL_STATE(3936)] = 143661, + [SMALL_STATE(3937)] = 143679, + [SMALL_STATE(3938)] = 143695, + [SMALL_STATE(3939)] = 143715, + [SMALL_STATE(3940)] = 143731, + [SMALL_STATE(3941)] = 143747, + [SMALL_STATE(3942)] = 143763, + [SMALL_STATE(3943)] = 143779, + [SMALL_STATE(3944)] = 143797, + [SMALL_STATE(3945)] = 143815, + [SMALL_STATE(3946)] = 143827, + [SMALL_STATE(3947)] = 143847, + [SMALL_STATE(3948)] = 143859, + [SMALL_STATE(3949)] = 143877, + [SMALL_STATE(3950)] = 143889, + [SMALL_STATE(3951)] = 143907, + [SMALL_STATE(3952)] = 143927, + [SMALL_STATE(3953)] = 143943, + [SMALL_STATE(3954)] = 143959, + [SMALL_STATE(3955)] = 143975, + [SMALL_STATE(3956)] = 143991, + [SMALL_STATE(3957)] = 144007, + [SMALL_STATE(3958)] = 144027, + [SMALL_STATE(3959)] = 144043, + [SMALL_STATE(3960)] = 144061, + [SMALL_STATE(3961)] = 144073, + [SMALL_STATE(3962)] = 144093, + [SMALL_STATE(3963)] = 144107, + [SMALL_STATE(3964)] = 144125, + [SMALL_STATE(3965)] = 144145, + [SMALL_STATE(3966)] = 144165, + [SMALL_STATE(3967)] = 144181, + [SMALL_STATE(3968)] = 144201, + [SMALL_STATE(3969)] = 144213, + [SMALL_STATE(3970)] = 144229, + [SMALL_STATE(3971)] = 144245, + [SMALL_STATE(3972)] = 144257, + [SMALL_STATE(3973)] = 144273, + [SMALL_STATE(3974)] = 144293, + [SMALL_STATE(3975)] = 144309, + [SMALL_STATE(3976)] = 144323, + [SMALL_STATE(3977)] = 144337, + [SMALL_STATE(3978)] = 144353, + [SMALL_STATE(3979)] = 144373, + [SMALL_STATE(3980)] = 144391, + [SMALL_STATE(3981)] = 144407, + [SMALL_STATE(3982)] = 144421, + [SMALL_STATE(3983)] = 144439, + [SMALL_STATE(3984)] = 144459, + [SMALL_STATE(3985)] = 144475, + [SMALL_STATE(3986)] = 144495, + [SMALL_STATE(3987)] = 144515, + [SMALL_STATE(3988)] = 144535, + [SMALL_STATE(3989)] = 144547, + [SMALL_STATE(3990)] = 144563, + [SMALL_STATE(3991)] = 144579, + [SMALL_STATE(3992)] = 144595, + [SMALL_STATE(3993)] = 144607, + [SMALL_STATE(3994)] = 144623, + [SMALL_STATE(3995)] = 144635, + [SMALL_STATE(3996)] = 144647, + [SMALL_STATE(3997)] = 144659, + [SMALL_STATE(3998)] = 144671, + [SMALL_STATE(3999)] = 144687, + [SMALL_STATE(4000)] = 144707, + [SMALL_STATE(4001)] = 144723, + [SMALL_STATE(4002)] = 144743, + [SMALL_STATE(4003)] = 144759, + [SMALL_STATE(4004)] = 144775, + [SMALL_STATE(4005)] = 144791, + [SMALL_STATE(4006)] = 144809, + [SMALL_STATE(4007)] = 144825, + [SMALL_STATE(4008)] = 144841, + [SMALL_STATE(4009)] = 144857, + [SMALL_STATE(4010)] = 144873, + [SMALL_STATE(4011)] = 144893, + [SMALL_STATE(4012)] = 144913, + [SMALL_STATE(4013)] = 144933, + [SMALL_STATE(4014)] = 144951, + [SMALL_STATE(4015)] = 144967, + [SMALL_STATE(4016)] = 144987, + [SMALL_STATE(4017)] = 145007, + [SMALL_STATE(4018)] = 145027, + [SMALL_STATE(4019)] = 145043, + [SMALL_STATE(4020)] = 145059, + [SMALL_STATE(4021)] = 145075, + [SMALL_STATE(4022)] = 145093, + [SMALL_STATE(4023)] = 145109, + [SMALL_STATE(4024)] = 145125, + [SMALL_STATE(4025)] = 145145, + [SMALL_STATE(4026)] = 145161, + [SMALL_STATE(4027)] = 145177, + [SMALL_STATE(4028)] = 145189, + [SMALL_STATE(4029)] = 145205, + [SMALL_STATE(4030)] = 145221, + [SMALL_STATE(4031)] = 145241, + [SMALL_STATE(4032)] = 145257, + [SMALL_STATE(4033)] = 145269, [SMALL_STATE(4034)] = 145281, - [SMALL_STATE(4035)] = 145293, - [SMALL_STATE(4036)] = 145305, - [SMALL_STATE(4037)] = 145317, + [SMALL_STATE(4035)] = 145301, + [SMALL_STATE(4036)] = 145313, + [SMALL_STATE(4037)] = 145325, [SMALL_STATE(4038)] = 145337, [SMALL_STATE(4039)] = 145349, - [SMALL_STATE(4040)] = 145369, - [SMALL_STATE(4041)] = 145381, - [SMALL_STATE(4042)] = 145397, - [SMALL_STATE(4043)] = 145409, - [SMALL_STATE(4044)] = 145421, - [SMALL_STATE(4045)] = 145437, - [SMALL_STATE(4046)] = 145449, - [SMALL_STATE(4047)] = 145461, - [SMALL_STATE(4048)] = 145473, - [SMALL_STATE(4049)] = 145485, - [SMALL_STATE(4050)] = 145497, - [SMALL_STATE(4051)] = 145515, - [SMALL_STATE(4052)] = 145527, - [SMALL_STATE(4053)] = 145539, - [SMALL_STATE(4054)] = 145555, - [SMALL_STATE(4055)] = 145573, - [SMALL_STATE(4056)] = 145589, - [SMALL_STATE(4057)] = 145605, - [SMALL_STATE(4058)] = 145617, - [SMALL_STATE(4059)] = 145629, - [SMALL_STATE(4060)] = 145645, - [SMALL_STATE(4061)] = 145657, - [SMALL_STATE(4062)] = 145669, - [SMALL_STATE(4063)] = 145681, - [SMALL_STATE(4064)] = 145697, - [SMALL_STATE(4065)] = 145709, - [SMALL_STATE(4066)] = 145721, - [SMALL_STATE(4067)] = 145733, - [SMALL_STATE(4068)] = 145745, - [SMALL_STATE(4069)] = 145757, - [SMALL_STATE(4070)] = 145769, - [SMALL_STATE(4071)] = 145781, - [SMALL_STATE(4072)] = 145793, - [SMALL_STATE(4073)] = 145805, - [SMALL_STATE(4074)] = 145821, - [SMALL_STATE(4075)] = 145841, - [SMALL_STATE(4076)] = 145853, - [SMALL_STATE(4077)] = 145865, - [SMALL_STATE(4078)] = 145877, - [SMALL_STATE(4079)] = 145889, - [SMALL_STATE(4080)] = 145901, - [SMALL_STATE(4081)] = 145919, - [SMALL_STATE(4082)] = 145935, - [SMALL_STATE(4083)] = 145951, + [SMALL_STATE(4040)] = 145367, + [SMALL_STATE(4041)] = 145383, + [SMALL_STATE(4042)] = 145395, + [SMALL_STATE(4043)] = 145407, + [SMALL_STATE(4044)] = 145423, + [SMALL_STATE(4045)] = 145435, + [SMALL_STATE(4046)] = 145447, + [SMALL_STATE(4047)] = 145459, + [SMALL_STATE(4048)] = 145471, + [SMALL_STATE(4049)] = 145487, + [SMALL_STATE(4050)] = 145505, + [SMALL_STATE(4051)] = 145521, + [SMALL_STATE(4052)] = 145533, + [SMALL_STATE(4053)] = 145545, + [SMALL_STATE(4054)] = 145563, + [SMALL_STATE(4055)] = 145579, + [SMALL_STATE(4056)] = 145595, + [SMALL_STATE(4057)] = 145607, + [SMALL_STATE(4058)] = 145623, + [SMALL_STATE(4059)] = 145635, + [SMALL_STATE(4060)] = 145651, + [SMALL_STATE(4061)] = 145663, + [SMALL_STATE(4062)] = 145675, + [SMALL_STATE(4063)] = 145687, + [SMALL_STATE(4064)] = 145699, + [SMALL_STATE(4065)] = 145711, + [SMALL_STATE(4066)] = 145723, + [SMALL_STATE(4067)] = 145735, + [SMALL_STATE(4068)] = 145747, + [SMALL_STATE(4069)] = 145759, + [SMALL_STATE(4070)] = 145771, + [SMALL_STATE(4071)] = 145783, + [SMALL_STATE(4072)] = 145795, + [SMALL_STATE(4073)] = 145807, + [SMALL_STATE(4074)] = 145827, + [SMALL_STATE(4075)] = 145839, + [SMALL_STATE(4076)] = 145851, + [SMALL_STATE(4077)] = 145863, + [SMALL_STATE(4078)] = 145875, + [SMALL_STATE(4079)] = 145887, + [SMALL_STATE(4080)] = 145903, + [SMALL_STATE(4081)] = 145921, + [SMALL_STATE(4082)] = 145937, + [SMALL_STATE(4083)] = 145953, [SMALL_STATE(4084)] = 145969, - [SMALL_STATE(4085)] = 145989, - [SMALL_STATE(4086)] = 146001, - [SMALL_STATE(4087)] = 146017, - [SMALL_STATE(4088)] = 146029, - [SMALL_STATE(4089)] = 146049, - [SMALL_STATE(4090)] = 146065, - [SMALL_STATE(4091)] = 146077, - [SMALL_STATE(4092)] = 146089, - [SMALL_STATE(4093)] = 146101, - [SMALL_STATE(4094)] = 146113, - [SMALL_STATE(4095)] = 146125, - [SMALL_STATE(4096)] = 146145, - [SMALL_STATE(4097)] = 146161, - [SMALL_STATE(4098)] = 146175, - [SMALL_STATE(4099)] = 146187, + [SMALL_STATE(4085)] = 145987, + [SMALL_STATE(4086)] = 146007, + [SMALL_STATE(4087)] = 146019, + [SMALL_STATE(4088)] = 146031, + [SMALL_STATE(4089)] = 146051, + [SMALL_STATE(4090)] = 146067, + [SMALL_STATE(4091)] = 146079, + [SMALL_STATE(4092)] = 146091, + [SMALL_STATE(4093)] = 146103, + [SMALL_STATE(4094)] = 146115, + [SMALL_STATE(4095)] = 146127, + [SMALL_STATE(4096)] = 146147, + [SMALL_STATE(4097)] = 146159, + [SMALL_STATE(4098)] = 146179, + [SMALL_STATE(4099)] = 146195, [SMALL_STATE(4100)] = 146207, - [SMALL_STATE(4101)] = 146223, - [SMALL_STATE(4102)] = 146239, - [SMALL_STATE(4103)] = 146251, - [SMALL_STATE(4104)] = 146263, - [SMALL_STATE(4105)] = 146279, - [SMALL_STATE(4106)] = 146291, - [SMALL_STATE(4107)] = 146303, - [SMALL_STATE(4108)] = 146319, - [SMALL_STATE(4109)] = 146331, - [SMALL_STATE(4110)] = 146343, - [SMALL_STATE(4111)] = 146363, - [SMALL_STATE(4112)] = 146375, - [SMALL_STATE(4113)] = 146393, - [SMALL_STATE(4114)] = 146409, - [SMALL_STATE(4115)] = 146425, - [SMALL_STATE(4116)] = 146443, - [SMALL_STATE(4117)] = 146461, - [SMALL_STATE(4118)] = 146477, - [SMALL_STATE(4119)] = 146493, - [SMALL_STATE(4120)] = 146513, - [SMALL_STATE(4121)] = 146529, - [SMALL_STATE(4122)] = 146545, - [SMALL_STATE(4123)] = 146561, - [SMALL_STATE(4124)] = 146577, - [SMALL_STATE(4125)] = 146589, - [SMALL_STATE(4126)] = 146609, - [SMALL_STATE(4127)] = 146621, - [SMALL_STATE(4128)] = 146633, - [SMALL_STATE(4129)] = 146645, - [SMALL_STATE(4130)] = 146657, - [SMALL_STATE(4131)] = 146675, - [SMALL_STATE(4132)] = 146691, - [SMALL_STATE(4133)] = 146711, - [SMALL_STATE(4134)] = 146731, - [SMALL_STATE(4135)] = 146747, - [SMALL_STATE(4136)] = 146767, - [SMALL_STATE(4137)] = 146787, - [SMALL_STATE(4138)] = 146803, - [SMALL_STATE(4139)] = 146823, - [SMALL_STATE(4140)] = 146843, - [SMALL_STATE(4141)] = 146859, - [SMALL_STATE(4142)] = 146871, - [SMALL_STATE(4143)] = 146891, + [SMALL_STATE(4101)] = 146221, + [SMALL_STATE(4102)] = 146237, + [SMALL_STATE(4103)] = 146253, + [SMALL_STATE(4104)] = 146265, + [SMALL_STATE(4105)] = 146277, + [SMALL_STATE(4106)] = 146293, + [SMALL_STATE(4107)] = 146309, + [SMALL_STATE(4108)] = 146329, + [SMALL_STATE(4109)] = 146341, + [SMALL_STATE(4110)] = 146353, + [SMALL_STATE(4111)] = 146371, + [SMALL_STATE(4112)] = 146387, + [SMALL_STATE(4113)] = 146403, + [SMALL_STATE(4114)] = 146419, + [SMALL_STATE(4115)] = 146435, + [SMALL_STATE(4116)] = 146453, + [SMALL_STATE(4117)] = 146471, + [SMALL_STATE(4118)] = 146491, + [SMALL_STATE(4119)] = 146507, + [SMALL_STATE(4120)] = 146519, + [SMALL_STATE(4121)] = 146535, + [SMALL_STATE(4122)] = 146551, + [SMALL_STATE(4123)] = 146567, + [SMALL_STATE(4124)] = 146587, + [SMALL_STATE(4125)] = 146603, + [SMALL_STATE(4126)] = 146623, + [SMALL_STATE(4127)] = 146635, + [SMALL_STATE(4128)] = 146647, + [SMALL_STATE(4129)] = 146659, + [SMALL_STATE(4130)] = 146671, + [SMALL_STATE(4131)] = 146683, + [SMALL_STATE(4132)] = 146701, + [SMALL_STATE(4133)] = 146717, + [SMALL_STATE(4134)] = 146737, + [SMALL_STATE(4135)] = 146757, + [SMALL_STATE(4136)] = 146777, + [SMALL_STATE(4137)] = 146793, + [SMALL_STATE(4138)] = 146813, + [SMALL_STATE(4139)] = 146829, + [SMALL_STATE(4140)] = 146845, + [SMALL_STATE(4141)] = 146857, + [SMALL_STATE(4142)] = 146877, + [SMALL_STATE(4143)] = 146897, [SMALL_STATE(4144)] = 146911, [SMALL_STATE(4145)] = 146931, [SMALL_STATE(4146)] = 146947, - [SMALL_STATE(4147)] = 146959, - [SMALL_STATE(4148)] = 146975, - [SMALL_STATE(4149)] = 146991, - [SMALL_STATE(4150)] = 147007, - [SMALL_STATE(4151)] = 147025, - [SMALL_STATE(4152)] = 147037, - [SMALL_STATE(4153)] = 147049, - [SMALL_STATE(4154)] = 147061, - [SMALL_STATE(4155)] = 147073, - [SMALL_STATE(4156)] = 147085, - [SMALL_STATE(4157)] = 147101, - [SMALL_STATE(4158)] = 147117, - [SMALL_STATE(4159)] = 147133, - [SMALL_STATE(4160)] = 147149, - [SMALL_STATE(4161)] = 147161, - [SMALL_STATE(4162)] = 147181, - [SMALL_STATE(4163)] = 147197, - [SMALL_STATE(4164)] = 147213, - [SMALL_STATE(4165)] = 147233, + [SMALL_STATE(4147)] = 146963, + [SMALL_STATE(4148)] = 146981, + [SMALL_STATE(4149)] = 146993, + [SMALL_STATE(4150)] = 147005, + [SMALL_STATE(4151)] = 147021, + [SMALL_STATE(4152)] = 147033, + [SMALL_STATE(4153)] = 147045, + [SMALL_STATE(4154)] = 147057, + [SMALL_STATE(4155)] = 147069, + [SMALL_STATE(4156)] = 147081, + [SMALL_STATE(4157)] = 147093, + [SMALL_STATE(4158)] = 147109, + [SMALL_STATE(4159)] = 147125, + [SMALL_STATE(4160)] = 147145, + [SMALL_STATE(4161)] = 147157, + [SMALL_STATE(4162)] = 147177, + [SMALL_STATE(4163)] = 147193, + [SMALL_STATE(4164)] = 147209, + [SMALL_STATE(4165)] = 147225, [SMALL_STATE(4166)] = 147245, - [SMALL_STATE(4167)] = 147265, - [SMALL_STATE(4168)] = 147281, - [SMALL_STATE(4169)] = 147301, - [SMALL_STATE(4170)] = 147321, - [SMALL_STATE(4171)] = 147333, - [SMALL_STATE(4172)] = 147345, - [SMALL_STATE(4173)] = 147365, - [SMALL_STATE(4174)] = 147377, - [SMALL_STATE(4175)] = 147393, - [SMALL_STATE(4176)] = 147409, - [SMALL_STATE(4177)] = 147425, - [SMALL_STATE(4178)] = 147443, - [SMALL_STATE(4179)] = 147463, - [SMALL_STATE(4180)] = 147483, - [SMALL_STATE(4181)] = 147499, - [SMALL_STATE(4182)] = 147515, - [SMALL_STATE(4183)] = 147531, - [SMALL_STATE(4184)] = 147547, - [SMALL_STATE(4185)] = 147565, - [SMALL_STATE(4186)] = 147581, - [SMALL_STATE(4187)] = 147597, - [SMALL_STATE(4188)] = 147613, - [SMALL_STATE(4189)] = 147633, - [SMALL_STATE(4190)] = 147649, + [SMALL_STATE(4167)] = 147257, + [SMALL_STATE(4168)] = 147277, + [SMALL_STATE(4169)] = 147297, + [SMALL_STATE(4170)] = 147317, + [SMALL_STATE(4171)] = 147329, + [SMALL_STATE(4172)] = 147341, + [SMALL_STATE(4173)] = 147361, + [SMALL_STATE(4174)] = 147373, + [SMALL_STATE(4175)] = 147389, + [SMALL_STATE(4176)] = 147405, + [SMALL_STATE(4177)] = 147421, + [SMALL_STATE(4178)] = 147439, + [SMALL_STATE(4179)] = 147459, + [SMALL_STATE(4180)] = 147475, + [SMALL_STATE(4181)] = 147495, + [SMALL_STATE(4182)] = 147511, + [SMALL_STATE(4183)] = 147527, + [SMALL_STATE(4184)] = 147543, + [SMALL_STATE(4185)] = 147559, + [SMALL_STATE(4186)] = 147577, + [SMALL_STATE(4187)] = 147593, + [SMALL_STATE(4188)] = 147609, + [SMALL_STATE(4189)] = 147629, + [SMALL_STATE(4190)] = 147645, [SMALL_STATE(4191)] = 147665, [SMALL_STATE(4192)] = 147685, - [SMALL_STATE(4193)] = 147705, - [SMALL_STATE(4194)] = 147725, - [SMALL_STATE(4195)] = 147745, - [SMALL_STATE(4196)] = 147761, + [SMALL_STATE(4193)] = 147701, + [SMALL_STATE(4194)] = 147721, + [SMALL_STATE(4195)] = 147741, + [SMALL_STATE(4196)] = 147757, [SMALL_STATE(4197)] = 147777, - [SMALL_STATE(4198)] = 147797, - [SMALL_STATE(4199)] = 147815, - [SMALL_STATE(4200)] = 147827, - [SMALL_STATE(4201)] = 147839, - [SMALL_STATE(4202)] = 147851, + [SMALL_STATE(4198)] = 147795, + [SMALL_STATE(4199)] = 147807, + [SMALL_STATE(4200)] = 147819, + [SMALL_STATE(4201)] = 147831, + [SMALL_STATE(4202)] = 147843, [SMALL_STATE(4203)] = 147863, - [SMALL_STATE(4204)] = 147883, - [SMALL_STATE(4205)] = 147895, - [SMALL_STATE(4206)] = 147911, + [SMALL_STATE(4204)] = 147875, + [SMALL_STATE(4205)] = 147891, + [SMALL_STATE(4206)] = 147907, [SMALL_STATE(4207)] = 147927, - [SMALL_STATE(4208)] = 147947, - [SMALL_STATE(4209)] = 147959, - [SMALL_STATE(4210)] = 147971, - [SMALL_STATE(4211)] = 147987, + [SMALL_STATE(4208)] = 147939, + [SMALL_STATE(4209)] = 147951, + [SMALL_STATE(4210)] = 147967, + [SMALL_STATE(4211)] = 147983, [SMALL_STATE(4212)] = 148003, - [SMALL_STATE(4213)] = 148023, - [SMALL_STATE(4214)] = 148035, - [SMALL_STATE(4215)] = 148047, - [SMALL_STATE(4216)] = 148059, - [SMALL_STATE(4217)] = 148071, - [SMALL_STATE(4218)] = 148083, - [SMALL_STATE(4219)] = 148099, - [SMALL_STATE(4220)] = 148115, - [SMALL_STATE(4221)] = 148131, - [SMALL_STATE(4222)] = 148147, - [SMALL_STATE(4223)] = 148163, - [SMALL_STATE(4224)] = 148183, - [SMALL_STATE(4225)] = 148199, - [SMALL_STATE(4226)] = 148215, - [SMALL_STATE(4227)] = 148227, - [SMALL_STATE(4228)] = 148239, + [SMALL_STATE(4213)] = 148015, + [SMALL_STATE(4214)] = 148027, + [SMALL_STATE(4215)] = 148039, + [SMALL_STATE(4216)] = 148051, + [SMALL_STATE(4217)] = 148063, + [SMALL_STATE(4218)] = 148079, + [SMALL_STATE(4219)] = 148095, + [SMALL_STATE(4220)] = 148111, + [SMALL_STATE(4221)] = 148127, + [SMALL_STATE(4222)] = 148143, + [SMALL_STATE(4223)] = 148159, + [SMALL_STATE(4224)] = 148179, + [SMALL_STATE(4225)] = 148195, + [SMALL_STATE(4226)] = 148207, + [SMALL_STATE(4227)] = 148219, + [SMALL_STATE(4228)] = 148231, [SMALL_STATE(4229)] = 148251, [SMALL_STATE(4230)] = 148271, [SMALL_STATE(4231)] = 148291, - [SMALL_STATE(4232)] = 148311, - [SMALL_STATE(4233)] = 148327, - [SMALL_STATE(4234)] = 148339, - [SMALL_STATE(4235)] = 148355, - [SMALL_STATE(4236)] = 148367, + [SMALL_STATE(4232)] = 148307, + [SMALL_STATE(4233)] = 148319, + [SMALL_STATE(4234)] = 148335, + [SMALL_STATE(4235)] = 148347, + [SMALL_STATE(4236)] = 148359, [SMALL_STATE(4237)] = 148379, [SMALL_STATE(4238)] = 148399, - [SMALL_STATE(4239)] = 148419, - [SMALL_STATE(4240)] = 148435, - [SMALL_STATE(4241)] = 148451, - [SMALL_STATE(4242)] = 148463, - [SMALL_STATE(4243)] = 148475, - [SMALL_STATE(4244)] = 148487, - [SMALL_STATE(4245)] = 148499, - [SMALL_STATE(4246)] = 148511, - [SMALL_STATE(4247)] = 148527, - [SMALL_STATE(4248)] = 148543, - [SMALL_STATE(4249)] = 148555, - [SMALL_STATE(4250)] = 148571, - [SMALL_STATE(4251)] = 148583, - [SMALL_STATE(4252)] = 148595, - [SMALL_STATE(4253)] = 148611, - [SMALL_STATE(4254)] = 148627, - [SMALL_STATE(4255)] = 148643, - [SMALL_STATE(4256)] = 148659, - [SMALL_STATE(4257)] = 148675, - [SMALL_STATE(4258)] = 148687, - [SMALL_STATE(4259)] = 148703, - [SMALL_STATE(4260)] = 148719, - [SMALL_STATE(4261)] = 148731, - [SMALL_STATE(4262)] = 148743, - [SMALL_STATE(4263)] = 148755, - [SMALL_STATE(4264)] = 148767, - [SMALL_STATE(4265)] = 148783, - [SMALL_STATE(4266)] = 148799, - [SMALL_STATE(4267)] = 148815, - [SMALL_STATE(4268)] = 148831, - [SMALL_STATE(4269)] = 148847, - [SMALL_STATE(4270)] = 148863, - [SMALL_STATE(4271)] = 148879, - [SMALL_STATE(4272)] = 148899, - [SMALL_STATE(4273)] = 148911, - [SMALL_STATE(4274)] = 148927, - [SMALL_STATE(4275)] = 148939, + [SMALL_STATE(4239)] = 148415, + [SMALL_STATE(4240)] = 148431, + [SMALL_STATE(4241)] = 148447, + [SMALL_STATE(4242)] = 148459, + [SMALL_STATE(4243)] = 148471, + [SMALL_STATE(4244)] = 148483, + [SMALL_STATE(4245)] = 148495, + [SMALL_STATE(4246)] = 148507, + [SMALL_STATE(4247)] = 148523, + [SMALL_STATE(4248)] = 148539, + [SMALL_STATE(4249)] = 148551, + [SMALL_STATE(4250)] = 148567, + [SMALL_STATE(4251)] = 148579, + [SMALL_STATE(4252)] = 148591, + [SMALL_STATE(4253)] = 148607, + [SMALL_STATE(4254)] = 148623, + [SMALL_STATE(4255)] = 148639, + [SMALL_STATE(4256)] = 148651, + [SMALL_STATE(4257)] = 148667, + [SMALL_STATE(4258)] = 148683, + [SMALL_STATE(4259)] = 148699, + [SMALL_STATE(4260)] = 148711, + [SMALL_STATE(4261)] = 148723, + [SMALL_STATE(4262)] = 148735, + [SMALL_STATE(4263)] = 148747, + [SMALL_STATE(4264)] = 148763, + [SMALL_STATE(4265)] = 148779, + [SMALL_STATE(4266)] = 148795, + [SMALL_STATE(4267)] = 148811, + [SMALL_STATE(4268)] = 148827, + [SMALL_STATE(4269)] = 148843, + [SMALL_STATE(4270)] = 148859, + [SMALL_STATE(4271)] = 148875, + [SMALL_STATE(4272)] = 148895, + [SMALL_STATE(4273)] = 148907, + [SMALL_STATE(4274)] = 148923, + [SMALL_STATE(4275)] = 148935, [SMALL_STATE(4276)] = 148955, [SMALL_STATE(4277)] = 148971, - [SMALL_STATE(4278)] = 148983, + [SMALL_STATE(4278)] = 148987, [SMALL_STATE(4279)] = 148999, [SMALL_STATE(4280)] = 149011, [SMALL_STATE(4281)] = 149027, @@ -278182,87 +278182,87 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(4284)] = 149067, [SMALL_STATE(4285)] = 149079, [SMALL_STATE(4286)] = 149095, - [SMALL_STATE(4287)] = 149115, - [SMALL_STATE(4288)] = 149131, - [SMALL_STATE(4289)] = 149147, - [SMALL_STATE(4290)] = 149159, - [SMALL_STATE(4291)] = 149175, - [SMALL_STATE(4292)] = 149191, - [SMALL_STATE(4293)] = 149207, - [SMALL_STATE(4294)] = 149223, - [SMALL_STATE(4295)] = 149239, - [SMALL_STATE(4296)] = 149255, - [SMALL_STATE(4297)] = 149271, - [SMALL_STATE(4298)] = 149287, - [SMALL_STATE(4299)] = 149303, + [SMALL_STATE(4287)] = 149111, + [SMALL_STATE(4288)] = 149127, + [SMALL_STATE(4289)] = 149139, + [SMALL_STATE(4290)] = 149155, + [SMALL_STATE(4291)] = 149171, + [SMALL_STATE(4292)] = 149187, + [SMALL_STATE(4293)] = 149203, + [SMALL_STATE(4294)] = 149219, + [SMALL_STATE(4295)] = 149235, + [SMALL_STATE(4296)] = 149251, + [SMALL_STATE(4297)] = 149269, + [SMALL_STATE(4298)] = 149285, + [SMALL_STATE(4299)] = 149301, [SMALL_STATE(4300)] = 149317, - [SMALL_STATE(4301)] = 149333, - [SMALL_STATE(4302)] = 149349, - [SMALL_STATE(4303)] = 149363, + [SMALL_STATE(4301)] = 149331, + [SMALL_STATE(4302)] = 149347, + [SMALL_STATE(4303)] = 149359, [SMALL_STATE(4304)] = 149375, [SMALL_STATE(4305)] = 149391, [SMALL_STATE(4306)] = 149407, - [SMALL_STATE(4307)] = 149425, - [SMALL_STATE(4308)] = 149441, - [SMALL_STATE(4309)] = 149457, - [SMALL_STATE(4310)] = 149473, - [SMALL_STATE(4311)] = 149489, - [SMALL_STATE(4312)] = 149501, - [SMALL_STATE(4313)] = 149521, - [SMALL_STATE(4314)] = 149537, - [SMALL_STATE(4315)] = 149557, - [SMALL_STATE(4316)] = 149573, - [SMALL_STATE(4317)] = 149589, - [SMALL_STATE(4318)] = 149605, - [SMALL_STATE(4319)] = 149621, - [SMALL_STATE(4320)] = 149637, - [SMALL_STATE(4321)] = 149657, - [SMALL_STATE(4322)] = 149673, - [SMALL_STATE(4323)] = 149693, - [SMALL_STATE(4324)] = 149705, - [SMALL_STATE(4325)] = 149725, - [SMALL_STATE(4326)] = 149737, - [SMALL_STATE(4327)] = 149749, - [SMALL_STATE(4328)] = 149761, - [SMALL_STATE(4329)] = 149773, + [SMALL_STATE(4307)] = 149423, + [SMALL_STATE(4308)] = 149439, + [SMALL_STATE(4309)] = 149455, + [SMALL_STATE(4310)] = 149471, + [SMALL_STATE(4311)] = 149491, + [SMALL_STATE(4312)] = 149511, + [SMALL_STATE(4313)] = 149527, + [SMALL_STATE(4314)] = 149543, + [SMALL_STATE(4315)] = 149555, + [SMALL_STATE(4316)] = 149571, + [SMALL_STATE(4317)] = 149587, + [SMALL_STATE(4318)] = 149603, + [SMALL_STATE(4319)] = 149623, + [SMALL_STATE(4320)] = 149639, + [SMALL_STATE(4321)] = 149651, + [SMALL_STATE(4322)] = 149671, + [SMALL_STATE(4323)] = 149683, + [SMALL_STATE(4324)] = 149703, + [SMALL_STATE(4325)] = 149715, + [SMALL_STATE(4326)] = 149727, + [SMALL_STATE(4327)] = 149739, + [SMALL_STATE(4328)] = 149759, + [SMALL_STATE(4329)] = 149775, [SMALL_STATE(4330)] = 149793, - [SMALL_STATE(4331)] = 149805, - [SMALL_STATE(4332)] = 149825, - [SMALL_STATE(4333)] = 149841, + [SMALL_STATE(4331)] = 149813, + [SMALL_STATE(4332)] = 149829, + [SMALL_STATE(4333)] = 149845, [SMALL_STATE(4334)] = 149857, - [SMALL_STATE(4335)] = 149869, + [SMALL_STATE(4335)] = 149877, [SMALL_STATE(4336)] = 149889, - [SMALL_STATE(4337)] = 149909, - [SMALL_STATE(4338)] = 149921, + [SMALL_STATE(4337)] = 149901, + [SMALL_STATE(4338)] = 149913, [SMALL_STATE(4339)] = 149933, [SMALL_STATE(4340)] = 149945, [SMALL_STATE(4341)] = 149961, [SMALL_STATE(4342)] = 149977, [SMALL_STATE(4343)] = 149993, - [SMALL_STATE(4344)] = 150009, - [SMALL_STATE(4345)] = 150029, + [SMALL_STATE(4344)] = 150013, + [SMALL_STATE(4345)] = 150033, [SMALL_STATE(4346)] = 150049, [SMALL_STATE(4347)] = 150065, - [SMALL_STATE(4348)] = 150081, - [SMALL_STATE(4349)] = 150101, + [SMALL_STATE(4348)] = 150085, + [SMALL_STATE(4349)] = 150105, [SMALL_STATE(4350)] = 150121, - [SMALL_STATE(4351)] = 150137, - [SMALL_STATE(4352)] = 150153, - [SMALL_STATE(4353)] = 150165, + [SMALL_STATE(4351)] = 150133, + [SMALL_STATE(4352)] = 150145, + [SMALL_STATE(4353)] = 150161, [SMALL_STATE(4354)] = 150177, [SMALL_STATE(4355)] = 150193, [SMALL_STATE(4356)] = 150209, [SMALL_STATE(4357)] = 150225, [SMALL_STATE(4358)] = 150241, - [SMALL_STATE(4359)] = 150257, + [SMALL_STATE(4359)] = 150253, [SMALL_STATE(4360)] = 150273, - [SMALL_STATE(4361)] = 150293, - [SMALL_STATE(4362)] = 150309, - [SMALL_STATE(4363)] = 150325, - [SMALL_STATE(4364)] = 150341, - [SMALL_STATE(4365)] = 150357, - [SMALL_STATE(4366)] = 150373, - [SMALL_STATE(4367)] = 150389, + [SMALL_STATE(4361)] = 150289, + [SMALL_STATE(4362)] = 150305, + [SMALL_STATE(4363)] = 150321, + [SMALL_STATE(4364)] = 150337, + [SMALL_STATE(4365)] = 150353, + [SMALL_STATE(4366)] = 150369, + [SMALL_STATE(4367)] = 150385, [SMALL_STATE(4368)] = 150401, [SMALL_STATE(4369)] = 150417, [SMALL_STATE(4370)] = 150433, @@ -278273,7 +278273,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(4375)] = 150513, [SMALL_STATE(4376)] = 150529, [SMALL_STATE(4377)] = 150545, - [SMALL_STATE(4378)] = 150561, + [SMALL_STATE(4378)] = 150565, [SMALL_STATE(4379)] = 150581, [SMALL_STATE(4380)] = 150597, [SMALL_STATE(4381)] = 150613, @@ -278283,656 +278283,656 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(4385)] = 150677, [SMALL_STATE(4386)] = 150693, [SMALL_STATE(4387)] = 150709, - [SMALL_STATE(4388)] = 150724, - [SMALL_STATE(4389)] = 150741, - [SMALL_STATE(4390)] = 150758, + [SMALL_STATE(4388)] = 150726, + [SMALL_STATE(4389)] = 150743, + [SMALL_STATE(4390)] = 150760, [SMALL_STATE(4391)] = 150775, - [SMALL_STATE(4392)] = 150790, - [SMALL_STATE(4393)] = 150805, - [SMALL_STATE(4394)] = 150822, - [SMALL_STATE(4395)] = 150839, - [SMALL_STATE(4396)] = 150854, - [SMALL_STATE(4397)] = 150871, - [SMALL_STATE(4398)] = 150888, - [SMALL_STATE(4399)] = 150905, - [SMALL_STATE(4400)] = 150922, - [SMALL_STATE(4401)] = 150939, - [SMALL_STATE(4402)] = 150954, + [SMALL_STATE(4392)] = 150792, + [SMALL_STATE(4393)] = 150809, + [SMALL_STATE(4394)] = 150826, + [SMALL_STATE(4395)] = 150843, + [SMALL_STATE(4396)] = 150860, + [SMALL_STATE(4397)] = 150877, + [SMALL_STATE(4398)] = 150894, + [SMALL_STATE(4399)] = 150911, + [SMALL_STATE(4400)] = 150928, + [SMALL_STATE(4401)] = 150943, + [SMALL_STATE(4402)] = 150956, [SMALL_STATE(4403)] = 150969, [SMALL_STATE(4404)] = 150982, [SMALL_STATE(4405)] = 150999, - [SMALL_STATE(4406)] = 151012, - [SMALL_STATE(4407)] = 151025, - [SMALL_STATE(4408)] = 151042, - [SMALL_STATE(4409)] = 151059, - [SMALL_STATE(4410)] = 151076, - [SMALL_STATE(4411)] = 151093, - [SMALL_STATE(4412)] = 151110, - [SMALL_STATE(4413)] = 151125, - [SMALL_STATE(4414)] = 151142, - [SMALL_STATE(4415)] = 151159, - [SMALL_STATE(4416)] = 151170, - [SMALL_STATE(4417)] = 151185, - [SMALL_STATE(4418)] = 151198, - [SMALL_STATE(4419)] = 151215, - [SMALL_STATE(4420)] = 151232, - [SMALL_STATE(4421)] = 151249, - [SMALL_STATE(4422)] = 151266, - [SMALL_STATE(4423)] = 151281, - [SMALL_STATE(4424)] = 151298, - [SMALL_STATE(4425)] = 151315, - [SMALL_STATE(4426)] = 151330, - [SMALL_STATE(4427)] = 151347, - [SMALL_STATE(4428)] = 151362, - [SMALL_STATE(4429)] = 151379, - [SMALL_STATE(4430)] = 151396, - [SMALL_STATE(4431)] = 151413, - [SMALL_STATE(4432)] = 151430, - [SMALL_STATE(4433)] = 151445, - [SMALL_STATE(4434)] = 151462, - [SMALL_STATE(4435)] = 151477, - [SMALL_STATE(4436)] = 151494, - [SMALL_STATE(4437)] = 151511, - [SMALL_STATE(4438)] = 151528, - [SMALL_STATE(4439)] = 151539, - [SMALL_STATE(4440)] = 151556, - [SMALL_STATE(4441)] = 151573, + [SMALL_STATE(4406)] = 151016, + [SMALL_STATE(4407)] = 151033, + [SMALL_STATE(4408)] = 151048, + [SMALL_STATE(4409)] = 151063, + [SMALL_STATE(4410)] = 151080, + [SMALL_STATE(4411)] = 151097, + [SMALL_STATE(4412)] = 151112, + [SMALL_STATE(4413)] = 151129, + [SMALL_STATE(4414)] = 151146, + [SMALL_STATE(4415)] = 151157, + [SMALL_STATE(4416)] = 151174, + [SMALL_STATE(4417)] = 151191, + [SMALL_STATE(4418)] = 151208, + [SMALL_STATE(4419)] = 151225, + [SMALL_STATE(4420)] = 151238, + [SMALL_STATE(4421)] = 151253, + [SMALL_STATE(4422)] = 151270, + [SMALL_STATE(4423)] = 151287, + [SMALL_STATE(4424)] = 151304, + [SMALL_STATE(4425)] = 151321, + [SMALL_STATE(4426)] = 151336, + [SMALL_STATE(4427)] = 151351, + [SMALL_STATE(4428)] = 151366, + [SMALL_STATE(4429)] = 151383, + [SMALL_STATE(4430)] = 151400, + [SMALL_STATE(4431)] = 151417, + [SMALL_STATE(4432)] = 151434, + [SMALL_STATE(4433)] = 151451, + [SMALL_STATE(4434)] = 151466, + [SMALL_STATE(4435)] = 151481, + [SMALL_STATE(4436)] = 151498, + [SMALL_STATE(4437)] = 151515, + [SMALL_STATE(4438)] = 151532, + [SMALL_STATE(4439)] = 151543, + [SMALL_STATE(4440)] = 151560, + [SMALL_STATE(4441)] = 151575, [SMALL_STATE(4442)] = 151590, [SMALL_STATE(4443)] = 151607, [SMALL_STATE(4444)] = 151622, - [SMALL_STATE(4445)] = 151637, - [SMALL_STATE(4446)] = 151654, - [SMALL_STATE(4447)] = 151671, - [SMALL_STATE(4448)] = 151688, - [SMALL_STATE(4449)] = 151701, - [SMALL_STATE(4450)] = 151718, - [SMALL_STATE(4451)] = 151735, - [SMALL_STATE(4452)] = 151752, - [SMALL_STATE(4453)] = 151767, - [SMALL_STATE(4454)] = 151784, - [SMALL_STATE(4455)] = 151801, - [SMALL_STATE(4456)] = 151818, - [SMALL_STATE(4457)] = 151835, - [SMALL_STATE(4458)] = 151852, - [SMALL_STATE(4459)] = 151869, - [SMALL_STATE(4460)] = 151886, - [SMALL_STATE(4461)] = 151903, - [SMALL_STATE(4462)] = 151918, - [SMALL_STATE(4463)] = 151935, - [SMALL_STATE(4464)] = 151950, - [SMALL_STATE(4465)] = 151965, - [SMALL_STATE(4466)] = 151982, - [SMALL_STATE(4467)] = 151999, - [SMALL_STATE(4468)] = 152016, - [SMALL_STATE(4469)] = 152033, - [SMALL_STATE(4470)] = 152050, - [SMALL_STATE(4471)] = 152065, - [SMALL_STATE(4472)] = 152082, - [SMALL_STATE(4473)] = 152099, - [SMALL_STATE(4474)] = 152116, - [SMALL_STATE(4475)] = 152133, - [SMALL_STATE(4476)] = 152150, - [SMALL_STATE(4477)] = 152167, - [SMALL_STATE(4478)] = 152184, - [SMALL_STATE(4479)] = 152201, - [SMALL_STATE(4480)] = 152216, - [SMALL_STATE(4481)] = 152229, - [SMALL_STATE(4482)] = 152246, - [SMALL_STATE(4483)] = 152261, - [SMALL_STATE(4484)] = 152278, - [SMALL_STATE(4485)] = 152289, - [SMALL_STATE(4486)] = 152300, - [SMALL_STATE(4487)] = 152317, - [SMALL_STATE(4488)] = 152334, - [SMALL_STATE(4489)] = 152351, - [SMALL_STATE(4490)] = 152368, - [SMALL_STATE(4491)] = 152385, - [SMALL_STATE(4492)] = 152402, - [SMALL_STATE(4493)] = 152419, - [SMALL_STATE(4494)] = 152436, - [SMALL_STATE(4495)] = 152453, - [SMALL_STATE(4496)] = 152470, - [SMALL_STATE(4497)] = 152487, - [SMALL_STATE(4498)] = 152504, - [SMALL_STATE(4499)] = 152521, - [SMALL_STATE(4500)] = 152538, - [SMALL_STATE(4501)] = 152555, - [SMALL_STATE(4502)] = 152572, - [SMALL_STATE(4503)] = 152587, - [SMALL_STATE(4504)] = 152604, + [SMALL_STATE(4445)] = 151633, + [SMALL_STATE(4446)] = 151646, + [SMALL_STATE(4447)] = 151663, + [SMALL_STATE(4448)] = 151680, + [SMALL_STATE(4449)] = 151695, + [SMALL_STATE(4450)] = 151712, + [SMALL_STATE(4451)] = 151729, + [SMALL_STATE(4452)] = 151746, + [SMALL_STATE(4453)] = 151761, + [SMALL_STATE(4454)] = 151778, + [SMALL_STATE(4455)] = 151795, + [SMALL_STATE(4456)] = 151812, + [SMALL_STATE(4457)] = 151829, + [SMALL_STATE(4458)] = 151846, + [SMALL_STATE(4459)] = 151861, + [SMALL_STATE(4460)] = 151876, + [SMALL_STATE(4461)] = 151893, + [SMALL_STATE(4462)] = 151908, + [SMALL_STATE(4463)] = 151925, + [SMALL_STATE(4464)] = 151940, + [SMALL_STATE(4465)] = 151957, + [SMALL_STATE(4466)] = 151974, + [SMALL_STATE(4467)] = 151987, + [SMALL_STATE(4468)] = 152004, + [SMALL_STATE(4469)] = 152021, + [SMALL_STATE(4470)] = 152036, + [SMALL_STATE(4471)] = 152053, + [SMALL_STATE(4472)] = 152070, + [SMALL_STATE(4473)] = 152087, + [SMALL_STATE(4474)] = 152104, + [SMALL_STATE(4475)] = 152121, + [SMALL_STATE(4476)] = 152138, + [SMALL_STATE(4477)] = 152153, + [SMALL_STATE(4478)] = 152164, + [SMALL_STATE(4479)] = 152181, + [SMALL_STATE(4480)] = 152198, + [SMALL_STATE(4481)] = 152215, + [SMALL_STATE(4482)] = 152230, + [SMALL_STATE(4483)] = 152247, + [SMALL_STATE(4484)] = 152264, + [SMALL_STATE(4485)] = 152281, + [SMALL_STATE(4486)] = 152298, + [SMALL_STATE(4487)] = 152315, + [SMALL_STATE(4488)] = 152332, + [SMALL_STATE(4489)] = 152349, + [SMALL_STATE(4490)] = 152366, + [SMALL_STATE(4491)] = 152383, + [SMALL_STATE(4492)] = 152400, + [SMALL_STATE(4493)] = 152417, + [SMALL_STATE(4494)] = 152434, + [SMALL_STATE(4495)] = 152451, + [SMALL_STATE(4496)] = 152468, + [SMALL_STATE(4497)] = 152485, + [SMALL_STATE(4498)] = 152502, + [SMALL_STATE(4499)] = 152519, + [SMALL_STATE(4500)] = 152536, + [SMALL_STATE(4501)] = 152553, + [SMALL_STATE(4502)] = 152568, + [SMALL_STATE(4503)] = 152583, + [SMALL_STATE(4504)] = 152600, [SMALL_STATE(4505)] = 152617, [SMALL_STATE(4506)] = 152634, [SMALL_STATE(4507)] = 152651, - [SMALL_STATE(4508)] = 152668, - [SMALL_STATE(4509)] = 152685, - [SMALL_STATE(4510)] = 152700, - [SMALL_STATE(4511)] = 152717, - [SMALL_STATE(4512)] = 152734, - [SMALL_STATE(4513)] = 152751, - [SMALL_STATE(4514)] = 152768, - [SMALL_STATE(4515)] = 152785, - [SMALL_STATE(4516)] = 152800, - [SMALL_STATE(4517)] = 152817, + [SMALL_STATE(4508)] = 152664, + [SMALL_STATE(4509)] = 152681, + [SMALL_STATE(4510)] = 152696, + [SMALL_STATE(4511)] = 152713, + [SMALL_STATE(4512)] = 152730, + [SMALL_STATE(4513)] = 152747, + [SMALL_STATE(4514)] = 152764, + [SMALL_STATE(4515)] = 152781, + [SMALL_STATE(4516)] = 152798, + [SMALL_STATE(4517)] = 152815, [SMALL_STATE(4518)] = 152832, [SMALL_STATE(4519)] = 152849, [SMALL_STATE(4520)] = 152866, [SMALL_STATE(4521)] = 152883, - [SMALL_STATE(4522)] = 152900, + [SMALL_STATE(4522)] = 152898, [SMALL_STATE(4523)] = 152915, - [SMALL_STATE(4524)] = 152929, - [SMALL_STATE(4525)] = 152943, - [SMALL_STATE(4526)] = 152957, - [SMALL_STATE(4527)] = 152971, - [SMALL_STATE(4528)] = 152985, - [SMALL_STATE(4529)] = 152999, - [SMALL_STATE(4530)] = 153013, - [SMALL_STATE(4531)] = 153023, - [SMALL_STATE(4532)] = 153033, - [SMALL_STATE(4533)] = 153043, - [SMALL_STATE(4534)] = 153053, - [SMALL_STATE(4535)] = 153065, - [SMALL_STATE(4536)] = 153079, - [SMALL_STATE(4537)] = 153091, - [SMALL_STATE(4538)] = 153105, - [SMALL_STATE(4539)] = 153115, - [SMALL_STATE(4540)] = 153129, - [SMALL_STATE(4541)] = 153139, - [SMALL_STATE(4542)] = 153153, - [SMALL_STATE(4543)] = 153167, - [SMALL_STATE(4544)] = 153177, - [SMALL_STATE(4545)] = 153191, - [SMALL_STATE(4546)] = 153205, - [SMALL_STATE(4547)] = 153219, - [SMALL_STATE(4548)] = 153233, - [SMALL_STATE(4549)] = 153247, - [SMALL_STATE(4550)] = 153257, - [SMALL_STATE(4551)] = 153271, - [SMALL_STATE(4552)] = 153285, - [SMALL_STATE(4553)] = 153295, - [SMALL_STATE(4554)] = 153307, - [SMALL_STATE(4555)] = 153321, - [SMALL_STATE(4556)] = 153331, - [SMALL_STATE(4557)] = 153345, - [SMALL_STATE(4558)] = 153359, - [SMALL_STATE(4559)] = 153373, - [SMALL_STATE(4560)] = 153383, - [SMALL_STATE(4561)] = 153393, - [SMALL_STATE(4562)] = 153403, - [SMALL_STATE(4563)] = 153417, - [SMALL_STATE(4564)] = 153431, - [SMALL_STATE(4565)] = 153445, - [SMALL_STATE(4566)] = 153455, - [SMALL_STATE(4567)] = 153469, - [SMALL_STATE(4568)] = 153483, - [SMALL_STATE(4569)] = 153493, - [SMALL_STATE(4570)] = 153503, - [SMALL_STATE(4571)] = 153513, - [SMALL_STATE(4572)] = 153527, - [SMALL_STATE(4573)] = 153537, - [SMALL_STATE(4574)] = 153547, - [SMALL_STATE(4575)] = 153557, - [SMALL_STATE(4576)] = 153567, - [SMALL_STATE(4577)] = 153577, - [SMALL_STATE(4578)] = 153591, - [SMALL_STATE(4579)] = 153605, - [SMALL_STATE(4580)] = 153619, - [SMALL_STATE(4581)] = 153633, - [SMALL_STATE(4582)] = 153643, - [SMALL_STATE(4583)] = 153653, - [SMALL_STATE(4584)] = 153663, - [SMALL_STATE(4585)] = 153677, - [SMALL_STATE(4586)] = 153687, - [SMALL_STATE(4587)] = 153697, - [SMALL_STATE(4588)] = 153711, - [SMALL_STATE(4589)] = 153723, - [SMALL_STATE(4590)] = 153733, - [SMALL_STATE(4591)] = 153743, - [SMALL_STATE(4592)] = 153753, - [SMALL_STATE(4593)] = 153767, - [SMALL_STATE(4594)] = 153781, - [SMALL_STATE(4595)] = 153795, - [SMALL_STATE(4596)] = 153809, - [SMALL_STATE(4597)] = 153823, - [SMALL_STATE(4598)] = 153833, - [SMALL_STATE(4599)] = 153843, - [SMALL_STATE(4600)] = 153853, - [SMALL_STATE(4601)] = 153867, - [SMALL_STATE(4602)] = 153881, - [SMALL_STATE(4603)] = 153895, - [SMALL_STATE(4604)] = 153909, - [SMALL_STATE(4605)] = 153919, - [SMALL_STATE(4606)] = 153933, - [SMALL_STATE(4607)] = 153947, - [SMALL_STATE(4608)] = 153961, - [SMALL_STATE(4609)] = 153971, - [SMALL_STATE(4610)] = 153985, - [SMALL_STATE(4611)] = 153997, - [SMALL_STATE(4612)] = 154009, - [SMALL_STATE(4613)] = 154021, - [SMALL_STATE(4614)] = 154037, - [SMALL_STATE(4615)] = 154047, - [SMALL_STATE(4616)] = 154061, - [SMALL_STATE(4617)] = 154071, - [SMALL_STATE(4618)] = 154085, - [SMALL_STATE(4619)] = 154095, - [SMALL_STATE(4620)] = 154105, - [SMALL_STATE(4621)] = 154115, - [SMALL_STATE(4622)] = 154125, - [SMALL_STATE(4623)] = 154139, - [SMALL_STATE(4624)] = 154149, - [SMALL_STATE(4625)] = 154159, - [SMALL_STATE(4626)] = 154169, - [SMALL_STATE(4627)] = 154179, - [SMALL_STATE(4628)] = 154193, - [SMALL_STATE(4629)] = 154203, - [SMALL_STATE(4630)] = 154217, - [SMALL_STATE(4631)] = 154227, + [SMALL_STATE(4524)] = 152925, + [SMALL_STATE(4525)] = 152939, + [SMALL_STATE(4526)] = 152953, + [SMALL_STATE(4527)] = 152967, + [SMALL_STATE(4528)] = 152977, + [SMALL_STATE(4529)] = 152989, + [SMALL_STATE(4530)] = 153003, + [SMALL_STATE(4531)] = 153017, + [SMALL_STATE(4532)] = 153031, + [SMALL_STATE(4533)] = 153041, + [SMALL_STATE(4534)] = 153051, + [SMALL_STATE(4535)] = 153061, + [SMALL_STATE(4536)] = 153075, + [SMALL_STATE(4537)] = 153089, + [SMALL_STATE(4538)] = 153103, + [SMALL_STATE(4539)] = 153117, + [SMALL_STATE(4540)] = 153131, + [SMALL_STATE(4541)] = 153145, + [SMALL_STATE(4542)] = 153159, + [SMALL_STATE(4543)] = 153169, + [SMALL_STATE(4544)] = 153183, + [SMALL_STATE(4545)] = 153197, + [SMALL_STATE(4546)] = 153211, + [SMALL_STATE(4547)] = 153221, + [SMALL_STATE(4548)] = 153235, + [SMALL_STATE(4549)] = 153249, + [SMALL_STATE(4550)] = 153259, + [SMALL_STATE(4551)] = 153269, + [SMALL_STATE(4552)] = 153279, + [SMALL_STATE(4553)] = 153289, + [SMALL_STATE(4554)] = 153299, + [SMALL_STATE(4555)] = 153313, + [SMALL_STATE(4556)] = 153327, + [SMALL_STATE(4557)] = 153341, + [SMALL_STATE(4558)] = 153351, + [SMALL_STATE(4559)] = 153361, + [SMALL_STATE(4560)] = 153371, + [SMALL_STATE(4561)] = 153385, + [SMALL_STATE(4562)] = 153395, + [SMALL_STATE(4563)] = 153409, + [SMALL_STATE(4564)] = 153423, + [SMALL_STATE(4565)] = 153437, + [SMALL_STATE(4566)] = 153449, + [SMALL_STATE(4567)] = 153459, + [SMALL_STATE(4568)] = 153469, + [SMALL_STATE(4569)] = 153479, + [SMALL_STATE(4570)] = 153489, + [SMALL_STATE(4571)] = 153499, + [SMALL_STATE(4572)] = 153509, + [SMALL_STATE(4573)] = 153519, + [SMALL_STATE(4574)] = 153529, + [SMALL_STATE(4575)] = 153543, + [SMALL_STATE(4576)] = 153553, + [SMALL_STATE(4577)] = 153563, + [SMALL_STATE(4578)] = 153573, + [SMALL_STATE(4579)] = 153583, + [SMALL_STATE(4580)] = 153597, + [SMALL_STATE(4581)] = 153611, + [SMALL_STATE(4582)] = 153625, + [SMALL_STATE(4583)] = 153639, + [SMALL_STATE(4584)] = 153653, + [SMALL_STATE(4585)] = 153663, + [SMALL_STATE(4586)] = 153677, + [SMALL_STATE(4587)] = 153691, + [SMALL_STATE(4588)] = 153703, + [SMALL_STATE(4589)] = 153713, + [SMALL_STATE(4590)] = 153727, + [SMALL_STATE(4591)] = 153741, + [SMALL_STATE(4592)] = 153755, + [SMALL_STATE(4593)] = 153769, + [SMALL_STATE(4594)] = 153783, + [SMALL_STATE(4595)] = 153793, + [SMALL_STATE(4596)] = 153803, + [SMALL_STATE(4597)] = 153813, + [SMALL_STATE(4598)] = 153827, + [SMALL_STATE(4599)] = 153841, + [SMALL_STATE(4600)] = 153855, + [SMALL_STATE(4601)] = 153869, + [SMALL_STATE(4602)] = 153879, + [SMALL_STATE(4603)] = 153893, + [SMALL_STATE(4604)] = 153907, + [SMALL_STATE(4605)] = 153921, + [SMALL_STATE(4606)] = 153935, + [SMALL_STATE(4607)] = 153945, + [SMALL_STATE(4608)] = 153955, + [SMALL_STATE(4609)] = 153967, + [SMALL_STATE(4610)] = 153979, + [SMALL_STATE(4611)] = 153993, + [SMALL_STATE(4612)] = 154007, + [SMALL_STATE(4613)] = 154023, + [SMALL_STATE(4614)] = 154033, + [SMALL_STATE(4615)] = 154043, + [SMALL_STATE(4616)] = 154055, + [SMALL_STATE(4617)] = 154065, + [SMALL_STATE(4618)] = 154079, + [SMALL_STATE(4619)] = 154089, + [SMALL_STATE(4620)] = 154103, + [SMALL_STATE(4621)] = 154113, + [SMALL_STATE(4622)] = 154123, + [SMALL_STATE(4623)] = 154133, + [SMALL_STATE(4624)] = 154143, + [SMALL_STATE(4625)] = 154153, + [SMALL_STATE(4626)] = 154167, + [SMALL_STATE(4627)] = 154177, + [SMALL_STATE(4628)] = 154187, + [SMALL_STATE(4629)] = 154197, + [SMALL_STATE(4630)] = 154213, + [SMALL_STATE(4631)] = 154223, [SMALL_STATE(4632)] = 154237, - [SMALL_STATE(4633)] = 154253, - [SMALL_STATE(4634)] = 154263, - [SMALL_STATE(4635)] = 154273, - [SMALL_STATE(4636)] = 154287, + [SMALL_STATE(4633)] = 154247, + [SMALL_STATE(4634)] = 154261, + [SMALL_STATE(4635)] = 154275, + [SMALL_STATE(4636)] = 154285, [SMALL_STATE(4637)] = 154297, - [SMALL_STATE(4638)] = 154311, - [SMALL_STATE(4639)] = 154325, - [SMALL_STATE(4640)] = 154337, - [SMALL_STATE(4641)] = 154351, - [SMALL_STATE(4642)] = 154361, - [SMALL_STATE(4643)] = 154371, - [SMALL_STATE(4644)] = 154381, - [SMALL_STATE(4645)] = 154395, - [SMALL_STATE(4646)] = 154409, + [SMALL_STATE(4638)] = 154307, + [SMALL_STATE(4639)] = 154321, + [SMALL_STATE(4640)] = 154331, + [SMALL_STATE(4641)] = 154341, + [SMALL_STATE(4642)] = 154355, + [SMALL_STATE(4643)] = 154367, + [SMALL_STATE(4644)] = 154377, + [SMALL_STATE(4645)] = 154391, + [SMALL_STATE(4646)] = 154405, [SMALL_STATE(4647)] = 154419, [SMALL_STATE(4648)] = 154429, [SMALL_STATE(4649)] = 154443, - [SMALL_STATE(4650)] = 154457, + [SMALL_STATE(4650)] = 154453, [SMALL_STATE(4651)] = 154467, - [SMALL_STATE(4652)] = 154481, - [SMALL_STATE(4653)] = 154491, - [SMALL_STATE(4654)] = 154505, - [SMALL_STATE(4655)] = 154517, - [SMALL_STATE(4656)] = 154527, - [SMALL_STATE(4657)] = 154537, - [SMALL_STATE(4658)] = 154551, - [SMALL_STATE(4659)] = 154561, - [SMALL_STATE(4660)] = 154571, - [SMALL_STATE(4661)] = 154581, - [SMALL_STATE(4662)] = 154595, - [SMALL_STATE(4663)] = 154605, - [SMALL_STATE(4664)] = 154615, - [SMALL_STATE(4665)] = 154625, - [SMALL_STATE(4666)] = 154635, - [SMALL_STATE(4667)] = 154649, - [SMALL_STATE(4668)] = 154663, - [SMALL_STATE(4669)] = 154677, - [SMALL_STATE(4670)] = 154687, - [SMALL_STATE(4671)] = 154701, + [SMALL_STATE(4652)] = 154477, + [SMALL_STATE(4653)] = 154487, + [SMALL_STATE(4654)] = 154501, + [SMALL_STATE(4655)] = 154511, + [SMALL_STATE(4656)] = 154525, + [SMALL_STATE(4657)] = 154535, + [SMALL_STATE(4658)] = 154545, + [SMALL_STATE(4659)] = 154555, + [SMALL_STATE(4660)] = 154569, + [SMALL_STATE(4661)] = 154579, + [SMALL_STATE(4662)] = 154593, + [SMALL_STATE(4663)] = 154603, + [SMALL_STATE(4664)] = 154617, + [SMALL_STATE(4665)] = 154631, + [SMALL_STATE(4666)] = 154641, + [SMALL_STATE(4667)] = 154651, + [SMALL_STATE(4668)] = 154661, + [SMALL_STATE(4669)] = 154675, + [SMALL_STATE(4670)] = 154689, + [SMALL_STATE(4671)] = 154699, [SMALL_STATE(4672)] = 154711, [SMALL_STATE(4673)] = 154721, - [SMALL_STATE(4674)] = 154735, + [SMALL_STATE(4674)] = 154731, [SMALL_STATE(4675)] = 154745, - [SMALL_STATE(4676)] = 154757, - [SMALL_STATE(4677)] = 154771, - [SMALL_STATE(4678)] = 154783, - [SMALL_STATE(4679)] = 154793, - [SMALL_STATE(4680)] = 154807, - [SMALL_STATE(4681)] = 154821, - [SMALL_STATE(4682)] = 154831, - [SMALL_STATE(4683)] = 154841, - [SMALL_STATE(4684)] = 154855, + [SMALL_STATE(4676)] = 154755, + [SMALL_STATE(4677)] = 154769, + [SMALL_STATE(4678)] = 154779, + [SMALL_STATE(4679)] = 154789, + [SMALL_STATE(4680)] = 154803, + [SMALL_STATE(4681)] = 154813, + [SMALL_STATE(4682)] = 154827, + [SMALL_STATE(4683)] = 154837, + [SMALL_STATE(4684)] = 154851, [SMALL_STATE(4685)] = 154865, - [SMALL_STATE(4686)] = 154879, - [SMALL_STATE(4687)] = 154889, - [SMALL_STATE(4688)] = 154903, - [SMALL_STATE(4689)] = 154913, - [SMALL_STATE(4690)] = 154923, - [SMALL_STATE(4691)] = 154933, - [SMALL_STATE(4692)] = 154943, - [SMALL_STATE(4693)] = 154957, - [SMALL_STATE(4694)] = 154967, - [SMALL_STATE(4695)] = 154977, - [SMALL_STATE(4696)] = 154991, - [SMALL_STATE(4697)] = 155005, - [SMALL_STATE(4698)] = 155015, - [SMALL_STATE(4699)] = 155025, - [SMALL_STATE(4700)] = 155035, - [SMALL_STATE(4701)] = 155049, - [SMALL_STATE(4702)] = 155059, - [SMALL_STATE(4703)] = 155069, - [SMALL_STATE(4704)] = 155083, - [SMALL_STATE(4705)] = 155097, - [SMALL_STATE(4706)] = 155111, - [SMALL_STATE(4707)] = 155121, - [SMALL_STATE(4708)] = 155135, - [SMALL_STATE(4709)] = 155145, - [SMALL_STATE(4710)] = 155155, - [SMALL_STATE(4711)] = 155165, - [SMALL_STATE(4712)] = 155175, - [SMALL_STATE(4713)] = 155185, - [SMALL_STATE(4714)] = 155195, - [SMALL_STATE(4715)] = 155205, - [SMALL_STATE(4716)] = 155215, - [SMALL_STATE(4717)] = 155225, - [SMALL_STATE(4718)] = 155235, - [SMALL_STATE(4719)] = 155245, - [SMALL_STATE(4720)] = 155255, - [SMALL_STATE(4721)] = 155269, - [SMALL_STATE(4722)] = 155279, - [SMALL_STATE(4723)] = 155289, - [SMALL_STATE(4724)] = 155299, - [SMALL_STATE(4725)] = 155313, - [SMALL_STATE(4726)] = 155323, - [SMALL_STATE(4727)] = 155333, - [SMALL_STATE(4728)] = 155343, - [SMALL_STATE(4729)] = 155357, - [SMALL_STATE(4730)] = 155367, - [SMALL_STATE(4731)] = 155381, - [SMALL_STATE(4732)] = 155391, - [SMALL_STATE(4733)] = 155401, - [SMALL_STATE(4734)] = 155411, - [SMALL_STATE(4735)] = 155421, - [SMALL_STATE(4736)] = 155431, - [SMALL_STATE(4737)] = 155441, - [SMALL_STATE(4738)] = 155451, - [SMALL_STATE(4739)] = 155461, - [SMALL_STATE(4740)] = 155471, - [SMALL_STATE(4741)] = 155481, - [SMALL_STATE(4742)] = 155491, - [SMALL_STATE(4743)] = 155501, - [SMALL_STATE(4744)] = 155511, - [SMALL_STATE(4745)] = 155521, - [SMALL_STATE(4746)] = 155531, - [SMALL_STATE(4747)] = 155541, - [SMALL_STATE(4748)] = 155551, - [SMALL_STATE(4749)] = 155561, - [SMALL_STATE(4750)] = 155571, - [SMALL_STATE(4751)] = 155585, - [SMALL_STATE(4752)] = 155595, - [SMALL_STATE(4753)] = 155605, - [SMALL_STATE(4754)] = 155615, - [SMALL_STATE(4755)] = 155625, - [SMALL_STATE(4756)] = 155635, - [SMALL_STATE(4757)] = 155645, - [SMALL_STATE(4758)] = 155655, - [SMALL_STATE(4759)] = 155669, - [SMALL_STATE(4760)] = 155679, - [SMALL_STATE(4761)] = 155689, - [SMALL_STATE(4762)] = 155699, - [SMALL_STATE(4763)] = 155709, - [SMALL_STATE(4764)] = 155719, - [SMALL_STATE(4765)] = 155729, - [SMALL_STATE(4766)] = 155739, - [SMALL_STATE(4767)] = 155749, - [SMALL_STATE(4768)] = 155763, - [SMALL_STATE(4769)] = 155773, - [SMALL_STATE(4770)] = 155785, - [SMALL_STATE(4771)] = 155795, - [SMALL_STATE(4772)] = 155807, - [SMALL_STATE(4773)] = 155821, - [SMALL_STATE(4774)] = 155831, - [SMALL_STATE(4775)] = 155841, - [SMALL_STATE(4776)] = 155853, - [SMALL_STATE(4777)] = 155863, - [SMALL_STATE(4778)] = 155873, - [SMALL_STATE(4779)] = 155887, - [SMALL_STATE(4780)] = 155901, - [SMALL_STATE(4781)] = 155911, - [SMALL_STATE(4782)] = 155925, - [SMALL_STATE(4783)] = 155935, - [SMALL_STATE(4784)] = 155949, - [SMALL_STATE(4785)] = 155963, - [SMALL_STATE(4786)] = 155973, - [SMALL_STATE(4787)] = 155983, - [SMALL_STATE(4788)] = 155997, - [SMALL_STATE(4789)] = 156011, - [SMALL_STATE(4790)] = 156025, - [SMALL_STATE(4791)] = 156035, - [SMALL_STATE(4792)] = 156045, - [SMALL_STATE(4793)] = 156055, - [SMALL_STATE(4794)] = 156065, - [SMALL_STATE(4795)] = 156075, - [SMALL_STATE(4796)] = 156085, - [SMALL_STATE(4797)] = 156095, - [SMALL_STATE(4798)] = 156105, - [SMALL_STATE(4799)] = 156115, - [SMALL_STATE(4800)] = 156125, - [SMALL_STATE(4801)] = 156135, - [SMALL_STATE(4802)] = 156145, - [SMALL_STATE(4803)] = 156155, - [SMALL_STATE(4804)] = 156169, - [SMALL_STATE(4805)] = 156179, - [SMALL_STATE(4806)] = 156189, - [SMALL_STATE(4807)] = 156199, - [SMALL_STATE(4808)] = 156213, - [SMALL_STATE(4809)] = 156225, - [SMALL_STATE(4810)] = 156235, - [SMALL_STATE(4811)] = 156245, - [SMALL_STATE(4812)] = 156255, - [SMALL_STATE(4813)] = 156265, - [SMALL_STATE(4814)] = 156275, - [SMALL_STATE(4815)] = 156285, - [SMALL_STATE(4816)] = 156295, - [SMALL_STATE(4817)] = 156305, - [SMALL_STATE(4818)] = 156321, - [SMALL_STATE(4819)] = 156331, - [SMALL_STATE(4820)] = 156341, - [SMALL_STATE(4821)] = 156355, - [SMALL_STATE(4822)] = 156365, - [SMALL_STATE(4823)] = 156379, - [SMALL_STATE(4824)] = 156389, - [SMALL_STATE(4825)] = 156403, - [SMALL_STATE(4826)] = 156417, - [SMALL_STATE(4827)] = 156427, - [SMALL_STATE(4828)] = 156437, - [SMALL_STATE(4829)] = 156447, - [SMALL_STATE(4830)] = 156457, - [SMALL_STATE(4831)] = 156467, - [SMALL_STATE(4832)] = 156477, - [SMALL_STATE(4833)] = 156487, - [SMALL_STATE(4834)] = 156497, - [SMALL_STATE(4835)] = 156509, - [SMALL_STATE(4836)] = 156523, - [SMALL_STATE(4837)] = 156533, - [SMALL_STATE(4838)] = 156543, - [SMALL_STATE(4839)] = 156553, - [SMALL_STATE(4840)] = 156563, - [SMALL_STATE(4841)] = 156573, - [SMALL_STATE(4842)] = 156583, - [SMALL_STATE(4843)] = 156593, - [SMALL_STATE(4844)] = 156603, - [SMALL_STATE(4845)] = 156613, - [SMALL_STATE(4846)] = 156627, - [SMALL_STATE(4847)] = 156637, - [SMALL_STATE(4848)] = 156647, - [SMALL_STATE(4849)] = 156657, - [SMALL_STATE(4850)] = 156667, - [SMALL_STATE(4851)] = 156677, - [SMALL_STATE(4852)] = 156687, - [SMALL_STATE(4853)] = 156697, - [SMALL_STATE(4854)] = 156707, - [SMALL_STATE(4855)] = 156717, - [SMALL_STATE(4856)] = 156727, - [SMALL_STATE(4857)] = 156737, - [SMALL_STATE(4858)] = 156747, - [SMALL_STATE(4859)] = 156757, - [SMALL_STATE(4860)] = 156767, - [SMALL_STATE(4861)] = 156777, - [SMALL_STATE(4862)] = 156787, - [SMALL_STATE(4863)] = 156797, - [SMALL_STATE(4864)] = 156807, - [SMALL_STATE(4865)] = 156817, - [SMALL_STATE(4866)] = 156827, - [SMALL_STATE(4867)] = 156837, - [SMALL_STATE(4868)] = 156847, - [SMALL_STATE(4869)] = 156857, - [SMALL_STATE(4870)] = 156867, - [SMALL_STATE(4871)] = 156877, - [SMALL_STATE(4872)] = 156887, - [SMALL_STATE(4873)] = 156897, - [SMALL_STATE(4874)] = 156907, - [SMALL_STATE(4875)] = 156917, - [SMALL_STATE(4876)] = 156927, - [SMALL_STATE(4877)] = 156937, - [SMALL_STATE(4878)] = 156947, - [SMALL_STATE(4879)] = 156961, - [SMALL_STATE(4880)] = 156977, - [SMALL_STATE(4881)] = 156987, - [SMALL_STATE(4882)] = 156997, - [SMALL_STATE(4883)] = 157007, - [SMALL_STATE(4884)] = 157017, - [SMALL_STATE(4885)] = 157027, - [SMALL_STATE(4886)] = 157039, - [SMALL_STATE(4887)] = 157049, - [SMALL_STATE(4888)] = 157059, - [SMALL_STATE(4889)] = 157069, - [SMALL_STATE(4890)] = 157079, - [SMALL_STATE(4891)] = 157089, - [SMALL_STATE(4892)] = 157099, - [SMALL_STATE(4893)] = 157109, - [SMALL_STATE(4894)] = 157119, - [SMALL_STATE(4895)] = 157133, - [SMALL_STATE(4896)] = 157143, - [SMALL_STATE(4897)] = 157153, - [SMALL_STATE(4898)] = 157167, - [SMALL_STATE(4899)] = 157177, - [SMALL_STATE(4900)] = 157187, - [SMALL_STATE(4901)] = 157197, - [SMALL_STATE(4902)] = 157211, - [SMALL_STATE(4903)] = 157225, - [SMALL_STATE(4904)] = 157235, - [SMALL_STATE(4905)] = 157249, - [SMALL_STATE(4906)] = 157263, - [SMALL_STATE(4907)] = 157277, - [SMALL_STATE(4908)] = 157287, - [SMALL_STATE(4909)] = 157301, - [SMALL_STATE(4910)] = 157311, - [SMALL_STATE(4911)] = 157325, - [SMALL_STATE(4912)] = 157335, - [SMALL_STATE(4913)] = 157345, - [SMALL_STATE(4914)] = 157355, + [SMALL_STATE(4686)] = 154875, + [SMALL_STATE(4687)] = 154885, + [SMALL_STATE(4688)] = 154895, + [SMALL_STATE(4689)] = 154905, + [SMALL_STATE(4690)] = 154919, + [SMALL_STATE(4691)] = 154929, + [SMALL_STATE(4692)] = 154941, + [SMALL_STATE(4693)] = 154955, + [SMALL_STATE(4694)] = 154965, + [SMALL_STATE(4695)] = 154975, + [SMALL_STATE(4696)] = 154989, + [SMALL_STATE(4697)] = 154999, + [SMALL_STATE(4698)] = 155013, + [SMALL_STATE(4699)] = 155023, + [SMALL_STATE(4700)] = 155037, + [SMALL_STATE(4701)] = 155051, + [SMALL_STATE(4702)] = 155061, + [SMALL_STATE(4703)] = 155071, + [SMALL_STATE(4704)] = 155085, + [SMALL_STATE(4705)] = 155095, + [SMALL_STATE(4706)] = 155105, + [SMALL_STATE(4707)] = 155115, + [SMALL_STATE(4708)] = 155125, + [SMALL_STATE(4709)] = 155135, + [SMALL_STATE(4710)] = 155145, + [SMALL_STATE(4711)] = 155155, + [SMALL_STATE(4712)] = 155165, + [SMALL_STATE(4713)] = 155175, + [SMALL_STATE(4714)] = 155185, + [SMALL_STATE(4715)] = 155195, + [SMALL_STATE(4716)] = 155205, + [SMALL_STATE(4717)] = 155215, + [SMALL_STATE(4718)] = 155225, + [SMALL_STATE(4719)] = 155235, + [SMALL_STATE(4720)] = 155245, + [SMALL_STATE(4721)] = 155255, + [SMALL_STATE(4722)] = 155269, + [SMALL_STATE(4723)] = 155279, + [SMALL_STATE(4724)] = 155289, + [SMALL_STATE(4725)] = 155303, + [SMALL_STATE(4726)] = 155313, + [SMALL_STATE(4727)] = 155323, + [SMALL_STATE(4728)] = 155337, + [SMALL_STATE(4729)] = 155347, + [SMALL_STATE(4730)] = 155357, + [SMALL_STATE(4731)] = 155367, + [SMALL_STATE(4732)] = 155377, + [SMALL_STATE(4733)] = 155387, + [SMALL_STATE(4734)] = 155397, + [SMALL_STATE(4735)] = 155407, + [SMALL_STATE(4736)] = 155417, + [SMALL_STATE(4737)] = 155427, + [SMALL_STATE(4738)] = 155437, + [SMALL_STATE(4739)] = 155447, + [SMALL_STATE(4740)] = 155457, + [SMALL_STATE(4741)] = 155467, + [SMALL_STATE(4742)] = 155477, + [SMALL_STATE(4743)] = 155487, + [SMALL_STATE(4744)] = 155497, + [SMALL_STATE(4745)] = 155511, + [SMALL_STATE(4746)] = 155521, + [SMALL_STATE(4747)] = 155531, + [SMALL_STATE(4748)] = 155541, + [SMALL_STATE(4749)] = 155551, + [SMALL_STATE(4750)] = 155561, + [SMALL_STATE(4751)] = 155573, + [SMALL_STATE(4752)] = 155583, + [SMALL_STATE(4753)] = 155593, + [SMALL_STATE(4754)] = 155603, + [SMALL_STATE(4755)] = 155613, + [SMALL_STATE(4756)] = 155623, + [SMALL_STATE(4757)] = 155633, + [SMALL_STATE(4758)] = 155643, + [SMALL_STATE(4759)] = 155653, + [SMALL_STATE(4760)] = 155663, + [SMALL_STATE(4761)] = 155673, + [SMALL_STATE(4762)] = 155687, + [SMALL_STATE(4763)] = 155699, + [SMALL_STATE(4764)] = 155713, + [SMALL_STATE(4765)] = 155723, + [SMALL_STATE(4766)] = 155735, + [SMALL_STATE(4767)] = 155747, + [SMALL_STATE(4768)] = 155757, + [SMALL_STATE(4769)] = 155771, + [SMALL_STATE(4770)] = 155781, + [SMALL_STATE(4771)] = 155791, + [SMALL_STATE(4772)] = 155801, + [SMALL_STATE(4773)] = 155811, + [SMALL_STATE(4774)] = 155821, + [SMALL_STATE(4775)] = 155835, + [SMALL_STATE(4776)] = 155845, + [SMALL_STATE(4777)] = 155855, + [SMALL_STATE(4778)] = 155871, + [SMALL_STATE(4779)] = 155885, + [SMALL_STATE(4780)] = 155899, + [SMALL_STATE(4781)] = 155913, + [SMALL_STATE(4782)] = 155923, + [SMALL_STATE(4783)] = 155933, + [SMALL_STATE(4784)] = 155943, + [SMALL_STATE(4785)] = 155957, + [SMALL_STATE(4786)] = 155967, + [SMALL_STATE(4787)] = 155981, + [SMALL_STATE(4788)] = 155991, + [SMALL_STATE(4789)] = 156001, + [SMALL_STATE(4790)] = 156011, + [SMALL_STATE(4791)] = 156025, + [SMALL_STATE(4792)] = 156035, + [SMALL_STATE(4793)] = 156045, + [SMALL_STATE(4794)] = 156055, + [SMALL_STATE(4795)] = 156065, + [SMALL_STATE(4796)] = 156075, + [SMALL_STATE(4797)] = 156085, + [SMALL_STATE(4798)] = 156095, + [SMALL_STATE(4799)] = 156105, + [SMALL_STATE(4800)] = 156115, + [SMALL_STATE(4801)] = 156125, + [SMALL_STATE(4802)] = 156139, + [SMALL_STATE(4803)] = 156149, + [SMALL_STATE(4804)] = 156159, + [SMALL_STATE(4805)] = 156171, + [SMALL_STATE(4806)] = 156181, + [SMALL_STATE(4807)] = 156191, + [SMALL_STATE(4808)] = 156201, + [SMALL_STATE(4809)] = 156211, + [SMALL_STATE(4810)] = 156225, + [SMALL_STATE(4811)] = 156235, + [SMALL_STATE(4812)] = 156245, + [SMALL_STATE(4813)] = 156255, + [SMALL_STATE(4814)] = 156265, + [SMALL_STATE(4815)] = 156275, + [SMALL_STATE(4816)] = 156285, + [SMALL_STATE(4817)] = 156295, + [SMALL_STATE(4818)] = 156305, + [SMALL_STATE(4819)] = 156315, + [SMALL_STATE(4820)] = 156325, + [SMALL_STATE(4821)] = 156339, + [SMALL_STATE(4822)] = 156353, + [SMALL_STATE(4823)] = 156369, + [SMALL_STATE(4824)] = 156383, + [SMALL_STATE(4825)] = 156393, + [SMALL_STATE(4826)] = 156403, + [SMALL_STATE(4827)] = 156413, + [SMALL_STATE(4828)] = 156423, + [SMALL_STATE(4829)] = 156437, + [SMALL_STATE(4830)] = 156447, + [SMALL_STATE(4831)] = 156457, + [SMALL_STATE(4832)] = 156467, + [SMALL_STATE(4833)] = 156477, + [SMALL_STATE(4834)] = 156487, + [SMALL_STATE(4835)] = 156501, + [SMALL_STATE(4836)] = 156511, + [SMALL_STATE(4837)] = 156521, + [SMALL_STATE(4838)] = 156531, + [SMALL_STATE(4839)] = 156541, + [SMALL_STATE(4840)] = 156551, + [SMALL_STATE(4841)] = 156561, + [SMALL_STATE(4842)] = 156571, + [SMALL_STATE(4843)] = 156585, + [SMALL_STATE(4844)] = 156595, + [SMALL_STATE(4845)] = 156605, + [SMALL_STATE(4846)] = 156615, + [SMALL_STATE(4847)] = 156625, + [SMALL_STATE(4848)] = 156635, + [SMALL_STATE(4849)] = 156645, + [SMALL_STATE(4850)] = 156657, + [SMALL_STATE(4851)] = 156667, + [SMALL_STATE(4852)] = 156677, + [SMALL_STATE(4853)] = 156687, + [SMALL_STATE(4854)] = 156697, + [SMALL_STATE(4855)] = 156707, + [SMALL_STATE(4856)] = 156717, + [SMALL_STATE(4857)] = 156727, + [SMALL_STATE(4858)] = 156737, + [SMALL_STATE(4859)] = 156747, + [SMALL_STATE(4860)] = 156757, + [SMALL_STATE(4861)] = 156767, + [SMALL_STATE(4862)] = 156777, + [SMALL_STATE(4863)] = 156787, + [SMALL_STATE(4864)] = 156797, + [SMALL_STATE(4865)] = 156811, + [SMALL_STATE(4866)] = 156821, + [SMALL_STATE(4867)] = 156835, + [SMALL_STATE(4868)] = 156845, + [SMALL_STATE(4869)] = 156855, + [SMALL_STATE(4870)] = 156865, + [SMALL_STATE(4871)] = 156875, + [SMALL_STATE(4872)] = 156885, + [SMALL_STATE(4873)] = 156895, + [SMALL_STATE(4874)] = 156905, + [SMALL_STATE(4875)] = 156915, + [SMALL_STATE(4876)] = 156925, + [SMALL_STATE(4877)] = 156939, + [SMALL_STATE(4878)] = 156949, + [SMALL_STATE(4879)] = 156959, + [SMALL_STATE(4880)] = 156969, + [SMALL_STATE(4881)] = 156981, + [SMALL_STATE(4882)] = 156991, + [SMALL_STATE(4883)] = 157001, + [SMALL_STATE(4884)] = 157011, + [SMALL_STATE(4885)] = 157025, + [SMALL_STATE(4886)] = 157035, + [SMALL_STATE(4887)] = 157045, + [SMALL_STATE(4888)] = 157061, + [SMALL_STATE(4889)] = 157071, + [SMALL_STATE(4890)] = 157081, + [SMALL_STATE(4891)] = 157091, + [SMALL_STATE(4892)] = 157101, + [SMALL_STATE(4893)] = 157111, + [SMALL_STATE(4894)] = 157121, + [SMALL_STATE(4895)] = 157131, + [SMALL_STATE(4896)] = 157145, + [SMALL_STATE(4897)] = 157155, + [SMALL_STATE(4898)] = 157165, + [SMALL_STATE(4899)] = 157175, + [SMALL_STATE(4900)] = 157189, + [SMALL_STATE(4901)] = 157203, + [SMALL_STATE(4902)] = 157217, + [SMALL_STATE(4903)] = 157231, + [SMALL_STATE(4904)] = 157241, + [SMALL_STATE(4905)] = 157251, + [SMALL_STATE(4906)] = 157261, + [SMALL_STATE(4907)] = 157271, + [SMALL_STATE(4908)] = 157285, + [SMALL_STATE(4909)] = 157299, + [SMALL_STATE(4910)] = 157309, + [SMALL_STATE(4911)] = 157319, + [SMALL_STATE(4912)] = 157329, + [SMALL_STATE(4913)] = 157339, + [SMALL_STATE(4914)] = 157351, [SMALL_STATE(4915)] = 157365, - [SMALL_STATE(4916)] = 157379, - [SMALL_STATE(4917)] = 157391, - [SMALL_STATE(4918)] = 157401, - [SMALL_STATE(4919)] = 157411, - [SMALL_STATE(4920)] = 157421, - [SMALL_STATE(4921)] = 157431, - [SMALL_STATE(4922)] = 157441, - [SMALL_STATE(4923)] = 157455, - [SMALL_STATE(4924)] = 157465, - [SMALL_STATE(4925)] = 157475, - [SMALL_STATE(4926)] = 157485, - [SMALL_STATE(4927)] = 157499, - [SMALL_STATE(4928)] = 157509, - [SMALL_STATE(4929)] = 157519, - [SMALL_STATE(4930)] = 157529, - [SMALL_STATE(4931)] = 157539, - [SMALL_STATE(4932)] = 157549, - [SMALL_STATE(4933)] = 157559, - [SMALL_STATE(4934)] = 157569, - [SMALL_STATE(4935)] = 157579, - [SMALL_STATE(4936)] = 157595, - [SMALL_STATE(4937)] = 157605, + [SMALL_STATE(4916)] = 157375, + [SMALL_STATE(4917)] = 157389, + [SMALL_STATE(4918)] = 157399, + [SMALL_STATE(4919)] = 157409, + [SMALL_STATE(4920)] = 157423, + [SMALL_STATE(4921)] = 157433, + [SMALL_STATE(4922)] = 157443, + [SMALL_STATE(4923)] = 157453, + [SMALL_STATE(4924)] = 157463, + [SMALL_STATE(4925)] = 157477, + [SMALL_STATE(4926)] = 157487, + [SMALL_STATE(4927)] = 157497, + [SMALL_STATE(4928)] = 157507, + [SMALL_STATE(4929)] = 157517, + [SMALL_STATE(4930)] = 157527, + [SMALL_STATE(4931)] = 157541, + [SMALL_STATE(4932)] = 157551, + [SMALL_STATE(4933)] = 157561, + [SMALL_STATE(4934)] = 157571, + [SMALL_STATE(4935)] = 157581, + [SMALL_STATE(4936)] = 157591, + [SMALL_STATE(4937)] = 157601, [SMALL_STATE(4938)] = 157615, [SMALL_STATE(4939)] = 157625, - [SMALL_STATE(4940)] = 157639, - [SMALL_STATE(4941)] = 157653, - [SMALL_STATE(4942)] = 157667, - [SMALL_STATE(4943)] = 157677, - [SMALL_STATE(4944)] = 157687, - [SMALL_STATE(4945)] = 157699, - [SMALL_STATE(4946)] = 157711, + [SMALL_STATE(4940)] = 157637, + [SMALL_STATE(4941)] = 157647, + [SMALL_STATE(4942)] = 157657, + [SMALL_STATE(4943)] = 157669, + [SMALL_STATE(4944)] = 157683, + [SMALL_STATE(4945)] = 157693, + [SMALL_STATE(4946)] = 157707, [SMALL_STATE(4947)] = 157721, - [SMALL_STATE(4948)] = 157735, - [SMALL_STATE(4949)] = 157749, - [SMALL_STATE(4950)] = 157759, - [SMALL_STATE(4951)] = 157769, - [SMALL_STATE(4952)] = 157779, - [SMALL_STATE(4953)] = 157793, - [SMALL_STATE(4954)] = 157803, - [SMALL_STATE(4955)] = 157813, - [SMALL_STATE(4956)] = 157823, - [SMALL_STATE(4957)] = 157837, - [SMALL_STATE(4958)] = 157847, - [SMALL_STATE(4959)] = 157857, - [SMALL_STATE(4960)] = 157867, - [SMALL_STATE(4961)] = 157877, - [SMALL_STATE(4962)] = 157891, - [SMALL_STATE(4963)] = 157901, - [SMALL_STATE(4964)] = 157911, - [SMALL_STATE(4965)] = 157925, - [SMALL_STATE(4966)] = 157939, - [SMALL_STATE(4967)] = 157949, - [SMALL_STATE(4968)] = 157959, - [SMALL_STATE(4969)] = 157969, - [SMALL_STATE(4970)] = 157983, - [SMALL_STATE(4971)] = 157997, - [SMALL_STATE(4972)] = 158011, - [SMALL_STATE(4973)] = 158021, - [SMALL_STATE(4974)] = 158031, - [SMALL_STATE(4975)] = 158045, - [SMALL_STATE(4976)] = 158055, - [SMALL_STATE(4977)] = 158069, - [SMALL_STATE(4978)] = 158079, - [SMALL_STATE(4979)] = 158089, - [SMALL_STATE(4980)] = 158099, - [SMALL_STATE(4981)] = 158109, - [SMALL_STATE(4982)] = 158119, - [SMALL_STATE(4983)] = 158129, - [SMALL_STATE(4984)] = 158143, - [SMALL_STATE(4985)] = 158153, - [SMALL_STATE(4986)] = 158163, - [SMALL_STATE(4987)] = 158173, - [SMALL_STATE(4988)] = 158187, - [SMALL_STATE(4989)] = 158197, - [SMALL_STATE(4990)] = 158207, - [SMALL_STATE(4991)] = 158219, - [SMALL_STATE(4992)] = 158233, - [SMALL_STATE(4993)] = 158243, - [SMALL_STATE(4994)] = 158253, - [SMALL_STATE(4995)] = 158267, - [SMALL_STATE(4996)] = 158281, - [SMALL_STATE(4997)] = 158291, - [SMALL_STATE(4998)] = 158305, - [SMALL_STATE(4999)] = 158319, - [SMALL_STATE(5000)] = 158329, - [SMALL_STATE(5001)] = 158343, - [SMALL_STATE(5002)] = 158353, - [SMALL_STATE(5003)] = 158363, - [SMALL_STATE(5004)] = 158373, - [SMALL_STATE(5005)] = 158383, - [SMALL_STATE(5006)] = 158393, - [SMALL_STATE(5007)] = 158403, - [SMALL_STATE(5008)] = 158417, - [SMALL_STATE(5009)] = 158431, - [SMALL_STATE(5010)] = 158441, - [SMALL_STATE(5011)] = 158455, - [SMALL_STATE(5012)] = 158469, - [SMALL_STATE(5013)] = 158479, - [SMALL_STATE(5014)] = 158489, - [SMALL_STATE(5015)] = 158499, - [SMALL_STATE(5016)] = 158509, - [SMALL_STATE(5017)] = 158521, - [SMALL_STATE(5018)] = 158531, - [SMALL_STATE(5019)] = 158541, + [SMALL_STATE(4948)] = 157731, + [SMALL_STATE(4949)] = 157741, + [SMALL_STATE(4950)] = 157755, + [SMALL_STATE(4951)] = 157765, + [SMALL_STATE(4952)] = 157775, + [SMALL_STATE(4953)] = 157785, + [SMALL_STATE(4954)] = 157799, + [SMALL_STATE(4955)] = 157809, + [SMALL_STATE(4956)] = 157819, + [SMALL_STATE(4957)] = 157829, + [SMALL_STATE(4958)] = 157843, + [SMALL_STATE(4959)] = 157853, + [SMALL_STATE(4960)] = 157863, + [SMALL_STATE(4961)] = 157873, + [SMALL_STATE(4962)] = 157883, + [SMALL_STATE(4963)] = 157897, + [SMALL_STATE(4964)] = 157907, + [SMALL_STATE(4965)] = 157917, + [SMALL_STATE(4966)] = 157931, + [SMALL_STATE(4967)] = 157941, + [SMALL_STATE(4968)] = 157951, + [SMALL_STATE(4969)] = 157961, + [SMALL_STATE(4970)] = 157971, + [SMALL_STATE(4971)] = 157985, + [SMALL_STATE(4972)] = 157999, + [SMALL_STATE(4973)] = 158013, + [SMALL_STATE(4974)] = 158023, + [SMALL_STATE(4975)] = 158037, + [SMALL_STATE(4976)] = 158047, + [SMALL_STATE(4977)] = 158061, + [SMALL_STATE(4978)] = 158071, + [SMALL_STATE(4979)] = 158081, + [SMALL_STATE(4980)] = 158091, + [SMALL_STATE(4981)] = 158101, + [SMALL_STATE(4982)] = 158111, + [SMALL_STATE(4983)] = 158121, + [SMALL_STATE(4984)] = 158131, + [SMALL_STATE(4985)] = 158145, + [SMALL_STATE(4986)] = 158155, + [SMALL_STATE(4987)] = 158165, + [SMALL_STATE(4988)] = 158175, + [SMALL_STATE(4989)] = 158185, + [SMALL_STATE(4990)] = 158195, + [SMALL_STATE(4991)] = 158209, + [SMALL_STATE(4992)] = 158219, + [SMALL_STATE(4993)] = 158229, + [SMALL_STATE(4994)] = 158241, + [SMALL_STATE(4995)] = 158255, + [SMALL_STATE(4996)] = 158265, + [SMALL_STATE(4997)] = 158279, + [SMALL_STATE(4998)] = 158289, + [SMALL_STATE(4999)] = 158303, + [SMALL_STATE(5000)] = 158313, + [SMALL_STATE(5001)] = 158327, + [SMALL_STATE(5002)] = 158341, + [SMALL_STATE(5003)] = 158351, + [SMALL_STATE(5004)] = 158361, + [SMALL_STATE(5005)] = 158375, + [SMALL_STATE(5006)] = 158385, + [SMALL_STATE(5007)] = 158399, + [SMALL_STATE(5008)] = 158413, + [SMALL_STATE(5009)] = 158427, + [SMALL_STATE(5010)] = 158437, + [SMALL_STATE(5011)] = 158451, + [SMALL_STATE(5012)] = 158461, + [SMALL_STATE(5013)] = 158471, + [SMALL_STATE(5014)] = 158485, + [SMALL_STATE(5015)] = 158495, + [SMALL_STATE(5016)] = 158507, + [SMALL_STATE(5017)] = 158517, + [SMALL_STATE(5018)] = 158527, + [SMALL_STATE(5019)] = 158537, [SMALL_STATE(5020)] = 158551, - [SMALL_STATE(5021)] = 158565, - [SMALL_STATE(5022)] = 158575, - [SMALL_STATE(5023)] = 158589, - [SMALL_STATE(5024)] = 158599, - [SMALL_STATE(5025)] = 158609, - [SMALL_STATE(5026)] = 158619, - [SMALL_STATE(5027)] = 158629, - [SMALL_STATE(5028)] = 158639, - [SMALL_STATE(5029)] = 158649, - [SMALL_STATE(5030)] = 158663, - [SMALL_STATE(5031)] = 158673, - [SMALL_STATE(5032)] = 158683, - [SMALL_STATE(5033)] = 158693, - [SMALL_STATE(5034)] = 158703, - [SMALL_STATE(5035)] = 158717, - [SMALL_STATE(5036)] = 158727, - [SMALL_STATE(5037)] = 158737, + [SMALL_STATE(5021)] = 158561, + [SMALL_STATE(5022)] = 158571, + [SMALL_STATE(5023)] = 158581, + [SMALL_STATE(5024)] = 158591, + [SMALL_STATE(5025)] = 158601, + [SMALL_STATE(5026)] = 158611, + [SMALL_STATE(5027)] = 158621, + [SMALL_STATE(5028)] = 158631, + [SMALL_STATE(5029)] = 158645, + [SMALL_STATE(5030)] = 158655, + [SMALL_STATE(5031)] = 158669, + [SMALL_STATE(5032)] = 158679, + [SMALL_STATE(5033)] = 158689, + [SMALL_STATE(5034)] = 158699, + [SMALL_STATE(5035)] = 158709, + [SMALL_STATE(5036)] = 158719, + [SMALL_STATE(5037)] = 158733, [SMALL_STATE(5038)] = 158747, [SMALL_STATE(5039)] = 158757, [SMALL_STATE(5040)] = 158767, @@ -278952,8 +278952,8 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5054)] = 158907, [SMALL_STATE(5055)] = 158917, [SMALL_STATE(5056)] = 158927, - [SMALL_STATE(5057)] = 158941, - [SMALL_STATE(5058)] = 158951, + [SMALL_STATE(5057)] = 158937, + [SMALL_STATE(5058)] = 158947, [SMALL_STATE(5059)] = 158961, [SMALL_STATE(5060)] = 158971, [SMALL_STATE(5061)] = 158981, @@ -278987,146 +278987,146 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5089)] = 159261, [SMALL_STATE(5090)] = 159271, [SMALL_STATE(5091)] = 159281, - [SMALL_STATE(5092)] = 159295, - [SMALL_STATE(5093)] = 159305, - [SMALL_STATE(5094)] = 159315, - [SMALL_STATE(5095)] = 159325, - [SMALL_STATE(5096)] = 159335, - [SMALL_STATE(5097)] = 159345, - [SMALL_STATE(5098)] = 159355, - [SMALL_STATE(5099)] = 159365, - [SMALL_STATE(5100)] = 159375, - [SMALL_STATE(5101)] = 159385, - [SMALL_STATE(5102)] = 159395, - [SMALL_STATE(5103)] = 159405, - [SMALL_STATE(5104)] = 159415, - [SMALL_STATE(5105)] = 159425, - [SMALL_STATE(5106)] = 159435, - [SMALL_STATE(5107)] = 159447, + [SMALL_STATE(5092)] = 159291, + [SMALL_STATE(5093)] = 159301, + [SMALL_STATE(5094)] = 159311, + [SMALL_STATE(5095)] = 159321, + [SMALL_STATE(5096)] = 159331, + [SMALL_STATE(5097)] = 159341, + [SMALL_STATE(5098)] = 159351, + [SMALL_STATE(5099)] = 159361, + [SMALL_STATE(5100)] = 159371, + [SMALL_STATE(5101)] = 159381, + [SMALL_STATE(5102)] = 159391, + [SMALL_STATE(5103)] = 159401, + [SMALL_STATE(5104)] = 159411, + [SMALL_STATE(5105)] = 159421, + [SMALL_STATE(5106)] = 159433, + [SMALL_STATE(5107)] = 159443, [SMALL_STATE(5108)] = 159457, [SMALL_STATE(5109)] = 159467, [SMALL_STATE(5110)] = 159477, - [SMALL_STATE(5111)] = 159491, - [SMALL_STATE(5112)] = 159501, - [SMALL_STATE(5113)] = 159511, - [SMALL_STATE(5114)] = 159521, - [SMALL_STATE(5115)] = 159531, - [SMALL_STATE(5116)] = 159541, + [SMALL_STATE(5111)] = 159487, + [SMALL_STATE(5112)] = 159497, + [SMALL_STATE(5113)] = 159507, + [SMALL_STATE(5114)] = 159517, + [SMALL_STATE(5115)] = 159527, + [SMALL_STATE(5116)] = 159539, [SMALL_STATE(5117)] = 159553, [SMALL_STATE(5118)] = 159563, [SMALL_STATE(5119)] = 159573, - [SMALL_STATE(5120)] = 159587, - [SMALL_STATE(5121)] = 159597, - [SMALL_STATE(5122)] = 159607, - [SMALL_STATE(5123)] = 159617, - [SMALL_STATE(5124)] = 159627, + [SMALL_STATE(5120)] = 159583, + [SMALL_STATE(5121)] = 159593, + [SMALL_STATE(5122)] = 159603, + [SMALL_STATE(5123)] = 159613, + [SMALL_STATE(5124)] = 159623, [SMALL_STATE(5125)] = 159637, [SMALL_STATE(5126)] = 159647, - [SMALL_STATE(5127)] = 159657, - [SMALL_STATE(5128)] = 159667, - [SMALL_STATE(5129)] = 159677, - [SMALL_STATE(5130)] = 159687, - [SMALL_STATE(5131)] = 159697, - [SMALL_STATE(5132)] = 159707, - [SMALL_STATE(5133)] = 159721, - [SMALL_STATE(5134)] = 159731, - [SMALL_STATE(5135)] = 159745, - [SMALL_STATE(5136)] = 159755, + [SMALL_STATE(5127)] = 159661, + [SMALL_STATE(5128)] = 159675, + [SMALL_STATE(5129)] = 159685, + [SMALL_STATE(5130)] = 159695, + [SMALL_STATE(5131)] = 159705, + [SMALL_STATE(5132)] = 159715, + [SMALL_STATE(5133)] = 159729, + [SMALL_STATE(5134)] = 159739, + [SMALL_STATE(5135)] = 159749, + [SMALL_STATE(5136)] = 159759, [SMALL_STATE(5137)] = 159769, [SMALL_STATE(5138)] = 159779, [SMALL_STATE(5139)] = 159790, [SMALL_STATE(5140)] = 159799, [SMALL_STATE(5141)] = 159808, - [SMALL_STATE(5142)] = 159819, + [SMALL_STATE(5142)] = 159817, [SMALL_STATE(5143)] = 159828, - [SMALL_STATE(5144)] = 159839, + [SMALL_STATE(5144)] = 159837, [SMALL_STATE(5145)] = 159848, - [SMALL_STATE(5146)] = 159859, - [SMALL_STATE(5147)] = 159870, - [SMALL_STATE(5148)] = 159881, - [SMALL_STATE(5149)] = 159892, - [SMALL_STATE(5150)] = 159903, - [SMALL_STATE(5151)] = 159914, - [SMALL_STATE(5152)] = 159925, - [SMALL_STATE(5153)] = 159936, - [SMALL_STATE(5154)] = 159945, - [SMALL_STATE(5155)] = 159954, - [SMALL_STATE(5156)] = 159965, - [SMALL_STATE(5157)] = 159976, - [SMALL_STATE(5158)] = 159987, - [SMALL_STATE(5159)] = 159998, - [SMALL_STATE(5160)] = 160009, - [SMALL_STATE(5161)] = 160020, - [SMALL_STATE(5162)] = 160031, - [SMALL_STATE(5163)] = 160042, - [SMALL_STATE(5164)] = 160051, - [SMALL_STATE(5165)] = 160060, - [SMALL_STATE(5166)] = 160071, - [SMALL_STATE(5167)] = 160080, - [SMALL_STATE(5168)] = 160091, - [SMALL_STATE(5169)] = 160102, - [SMALL_STATE(5170)] = 160113, - [SMALL_STATE(5171)] = 160124, - [SMALL_STATE(5172)] = 160135, - [SMALL_STATE(5173)] = 160146, - [SMALL_STATE(5174)] = 160155, - [SMALL_STATE(5175)] = 160166, - [SMALL_STATE(5176)] = 160177, - [SMALL_STATE(5177)] = 160188, - [SMALL_STATE(5178)] = 160199, - [SMALL_STATE(5179)] = 160210, - [SMALL_STATE(5180)] = 160219, - [SMALL_STATE(5181)] = 160228, - [SMALL_STATE(5182)] = 160239, - [SMALL_STATE(5183)] = 160248, - [SMALL_STATE(5184)] = 160257, - [SMALL_STATE(5185)] = 160268, - [SMALL_STATE(5186)] = 160279, + [SMALL_STATE(5146)] = 159857, + [SMALL_STATE(5147)] = 159868, + [SMALL_STATE(5148)] = 159879, + [SMALL_STATE(5149)] = 159888, + [SMALL_STATE(5150)] = 159899, + [SMALL_STATE(5151)] = 159910, + [SMALL_STATE(5152)] = 159921, + [SMALL_STATE(5153)] = 159932, + [SMALL_STATE(5154)] = 159943, + [SMALL_STATE(5155)] = 159952, + [SMALL_STATE(5156)] = 159963, + [SMALL_STATE(5157)] = 159974, + [SMALL_STATE(5158)] = 159985, + [SMALL_STATE(5159)] = 159996, + [SMALL_STATE(5160)] = 160007, + [SMALL_STATE(5161)] = 160016, + [SMALL_STATE(5162)] = 160025, + [SMALL_STATE(5163)] = 160036, + [SMALL_STATE(5164)] = 160047, + [SMALL_STATE(5165)] = 160058, + [SMALL_STATE(5166)] = 160069, + [SMALL_STATE(5167)] = 160078, + [SMALL_STATE(5168)] = 160087, + [SMALL_STATE(5169)] = 160098, + [SMALL_STATE(5170)] = 160107, + [SMALL_STATE(5171)] = 160118, + [SMALL_STATE(5172)] = 160129, + [SMALL_STATE(5173)] = 160140, + [SMALL_STATE(5174)] = 160151, + [SMALL_STATE(5175)] = 160162, + [SMALL_STATE(5176)] = 160173, + [SMALL_STATE(5177)] = 160182, + [SMALL_STATE(5178)] = 160191, + [SMALL_STATE(5179)] = 160202, + [SMALL_STATE(5180)] = 160213, + [SMALL_STATE(5181)] = 160224, + [SMALL_STATE(5182)] = 160235, + [SMALL_STATE(5183)] = 160244, + [SMALL_STATE(5184)] = 160255, + [SMALL_STATE(5185)] = 160266, + [SMALL_STATE(5186)] = 160277, [SMALL_STATE(5187)] = 160288, [SMALL_STATE(5188)] = 160299, - [SMALL_STATE(5189)] = 160310, - [SMALL_STATE(5190)] = 160321, - [SMALL_STATE(5191)] = 160332, - [SMALL_STATE(5192)] = 160343, - [SMALL_STATE(5193)] = 160352, - [SMALL_STATE(5194)] = 160363, - [SMALL_STATE(5195)] = 160374, + [SMALL_STATE(5189)] = 160308, + [SMALL_STATE(5190)] = 160319, + [SMALL_STATE(5191)] = 160330, + [SMALL_STATE(5192)] = 160341, + [SMALL_STATE(5193)] = 160350, + [SMALL_STATE(5194)] = 160361, + [SMALL_STATE(5195)] = 160372, [SMALL_STATE(5196)] = 160383, [SMALL_STATE(5197)] = 160394, [SMALL_STATE(5198)] = 160405, - [SMALL_STATE(5199)] = 160416, - [SMALL_STATE(5200)] = 160427, - [SMALL_STATE(5201)] = 160436, + [SMALL_STATE(5199)] = 160414, + [SMALL_STATE(5200)] = 160425, + [SMALL_STATE(5201)] = 160434, [SMALL_STATE(5202)] = 160445, [SMALL_STATE(5203)] = 160454, - [SMALL_STATE(5204)] = 160463, - [SMALL_STATE(5205)] = 160474, - [SMALL_STATE(5206)] = 160485, - [SMALL_STATE(5207)] = 160494, - [SMALL_STATE(5208)] = 160505, - [SMALL_STATE(5209)] = 160514, - [SMALL_STATE(5210)] = 160525, - [SMALL_STATE(5211)] = 160534, - [SMALL_STATE(5212)] = 160545, - [SMALL_STATE(5213)] = 160556, - [SMALL_STATE(5214)] = 160567, + [SMALL_STATE(5204)] = 160465, + [SMALL_STATE(5205)] = 160476, + [SMALL_STATE(5206)] = 160487, + [SMALL_STATE(5207)] = 160498, + [SMALL_STATE(5208)] = 160509, + [SMALL_STATE(5209)] = 160518, + [SMALL_STATE(5210)] = 160529, + [SMALL_STATE(5211)] = 160538, + [SMALL_STATE(5212)] = 160547, + [SMALL_STATE(5213)] = 160558, + [SMALL_STATE(5214)] = 160569, [SMALL_STATE(5215)] = 160578, [SMALL_STATE(5216)] = 160589, - [SMALL_STATE(5217)] = 160598, - [SMALL_STATE(5218)] = 160609, + [SMALL_STATE(5217)] = 160600, + [SMALL_STATE(5218)] = 160611, [SMALL_STATE(5219)] = 160620, [SMALL_STATE(5220)] = 160631, [SMALL_STATE(5221)] = 160642, [SMALL_STATE(5222)] = 160653, [SMALL_STATE(5223)] = 160664, [SMALL_STATE(5224)] = 160675, - [SMALL_STATE(5225)] = 160684, - [SMALL_STATE(5226)] = 160695, - [SMALL_STATE(5227)] = 160706, - [SMALL_STATE(5228)] = 160715, + [SMALL_STATE(5225)] = 160686, + [SMALL_STATE(5226)] = 160697, + [SMALL_STATE(5227)] = 160708, + [SMALL_STATE(5228)] = 160717, [SMALL_STATE(5229)] = 160726, - [SMALL_STATE(5230)] = 160737, - [SMALL_STATE(5231)] = 160746, + [SMALL_STATE(5230)] = 160735, + [SMALL_STATE(5231)] = 160744, [SMALL_STATE(5232)] = 160755, [SMALL_STATE(5233)] = 160766, [SMALL_STATE(5234)] = 160777, @@ -279135,53 +279135,53 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5237)] = 160808, [SMALL_STATE(5238)] = 160817, [SMALL_STATE(5239)] = 160828, - [SMALL_STATE(5240)] = 160839, - [SMALL_STATE(5241)] = 160850, + [SMALL_STATE(5240)] = 160837, + [SMALL_STATE(5241)] = 160848, [SMALL_STATE(5242)] = 160859, [SMALL_STATE(5243)] = 160870, - [SMALL_STATE(5244)] = 160879, - [SMALL_STATE(5245)] = 160890, + [SMALL_STATE(5244)] = 160881, + [SMALL_STATE(5245)] = 160892, [SMALL_STATE(5246)] = 160901, [SMALL_STATE(5247)] = 160912, - [SMALL_STATE(5248)] = 160921, - [SMALL_STATE(5249)] = 160932, + [SMALL_STATE(5248)] = 160923, + [SMALL_STATE(5249)] = 160934, [SMALL_STATE(5250)] = 160943, - [SMALL_STATE(5251)] = 160952, - [SMALL_STATE(5252)] = 160963, - [SMALL_STATE(5253)] = 160974, + [SMALL_STATE(5251)] = 160954, + [SMALL_STATE(5252)] = 160965, + [SMALL_STATE(5253)] = 160976, [SMALL_STATE(5254)] = 160985, [SMALL_STATE(5255)] = 160996, [SMALL_STATE(5256)] = 161007, [SMALL_STATE(5257)] = 161018, - [SMALL_STATE(5258)] = 161029, - [SMALL_STATE(5259)] = 161040, - [SMALL_STATE(5260)] = 161051, - [SMALL_STATE(5261)] = 161062, - [SMALL_STATE(5262)] = 161073, - [SMALL_STATE(5263)] = 161084, - [SMALL_STATE(5264)] = 161093, - [SMALL_STATE(5265)] = 161104, - [SMALL_STATE(5266)] = 161115, - [SMALL_STATE(5267)] = 161126, - [SMALL_STATE(5268)] = 161137, - [SMALL_STATE(5269)] = 161148, - [SMALL_STATE(5270)] = 161159, - [SMALL_STATE(5271)] = 161170, - [SMALL_STATE(5272)] = 161181, - [SMALL_STATE(5273)] = 161192, - [SMALL_STATE(5274)] = 161203, - [SMALL_STATE(5275)] = 161214, + [SMALL_STATE(5258)] = 161027, + [SMALL_STATE(5259)] = 161038, + [SMALL_STATE(5260)] = 161049, + [SMALL_STATE(5261)] = 161060, + [SMALL_STATE(5262)] = 161069, + [SMALL_STATE(5263)] = 161080, + [SMALL_STATE(5264)] = 161091, + [SMALL_STATE(5265)] = 161102, + [SMALL_STATE(5266)] = 161113, + [SMALL_STATE(5267)] = 161124, + [SMALL_STATE(5268)] = 161135, + [SMALL_STATE(5269)] = 161146, + [SMALL_STATE(5270)] = 161157, + [SMALL_STATE(5271)] = 161168, + [SMALL_STATE(5272)] = 161179, + [SMALL_STATE(5273)] = 161190, + [SMALL_STATE(5274)] = 161201, + [SMALL_STATE(5275)] = 161212, [SMALL_STATE(5276)] = 161223, - [SMALL_STATE(5277)] = 161232, - [SMALL_STATE(5278)] = 161243, - [SMALL_STATE(5279)] = 161254, - [SMALL_STATE(5280)] = 161263, - [SMALL_STATE(5281)] = 161272, - [SMALL_STATE(5282)] = 161283, - [SMALL_STATE(5283)] = 161294, - [SMALL_STATE(5284)] = 161303, - [SMALL_STATE(5285)] = 161314, - [SMALL_STATE(5286)] = 161325, + [SMALL_STATE(5277)] = 161234, + [SMALL_STATE(5278)] = 161245, + [SMALL_STATE(5279)] = 161256, + [SMALL_STATE(5280)] = 161267, + [SMALL_STATE(5281)] = 161276, + [SMALL_STATE(5282)] = 161287, + [SMALL_STATE(5283)] = 161298, + [SMALL_STATE(5284)] = 161307, + [SMALL_STATE(5285)] = 161318, + [SMALL_STATE(5286)] = 161327, [SMALL_STATE(5287)] = 161336, [SMALL_STATE(5288)] = 161347, [SMALL_STATE(5289)] = 161358, @@ -279189,199 +279189,199 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5291)] = 161380, [SMALL_STATE(5292)] = 161391, [SMALL_STATE(5293)] = 161400, - [SMALL_STATE(5294)] = 161409, - [SMALL_STATE(5295)] = 161420, + [SMALL_STATE(5294)] = 161411, + [SMALL_STATE(5295)] = 161422, [SMALL_STATE(5296)] = 161431, - [SMALL_STATE(5297)] = 161442, - [SMALL_STATE(5298)] = 161453, - [SMALL_STATE(5299)] = 161464, - [SMALL_STATE(5300)] = 161475, - [SMALL_STATE(5301)] = 161486, - [SMALL_STATE(5302)] = 161497, - [SMALL_STATE(5303)] = 161508, + [SMALL_STATE(5297)] = 161440, + [SMALL_STATE(5298)] = 161451, + [SMALL_STATE(5299)] = 161462, + [SMALL_STATE(5300)] = 161473, + [SMALL_STATE(5301)] = 161484, + [SMALL_STATE(5302)] = 161495, + [SMALL_STATE(5303)] = 161506, [SMALL_STATE(5304)] = 161517, [SMALL_STATE(5305)] = 161528, [SMALL_STATE(5306)] = 161539, [SMALL_STATE(5307)] = 161550, - [SMALL_STATE(5308)] = 161561, - [SMALL_STATE(5309)] = 161572, - [SMALL_STATE(5310)] = 161581, - [SMALL_STATE(5311)] = 161592, - [SMALL_STATE(5312)] = 161603, - [SMALL_STATE(5313)] = 161612, - [SMALL_STATE(5314)] = 161623, - [SMALL_STATE(5315)] = 161634, - [SMALL_STATE(5316)] = 161645, - [SMALL_STATE(5317)] = 161656, - [SMALL_STATE(5318)] = 161667, - [SMALL_STATE(5319)] = 161678, - [SMALL_STATE(5320)] = 161689, - [SMALL_STATE(5321)] = 161700, - [SMALL_STATE(5322)] = 161711, - [SMALL_STATE(5323)] = 161722, - [SMALL_STATE(5324)] = 161731, - [SMALL_STATE(5325)] = 161742, - [SMALL_STATE(5326)] = 161753, - [SMALL_STATE(5327)] = 161764, - [SMALL_STATE(5328)] = 161775, - [SMALL_STATE(5329)] = 161784, - [SMALL_STATE(5330)] = 161795, - [SMALL_STATE(5331)] = 161804, - [SMALL_STATE(5332)] = 161815, - [SMALL_STATE(5333)] = 161826, - [SMALL_STATE(5334)] = 161837, - [SMALL_STATE(5335)] = 161846, - [SMALL_STATE(5336)] = 161857, - [SMALL_STATE(5337)] = 161868, - [SMALL_STATE(5338)] = 161879, - [SMALL_STATE(5339)] = 161890, - [SMALL_STATE(5340)] = 161899, + [SMALL_STATE(5308)] = 161559, + [SMALL_STATE(5309)] = 161568, + [SMALL_STATE(5310)] = 161579, + [SMALL_STATE(5311)] = 161588, + [SMALL_STATE(5312)] = 161599, + [SMALL_STATE(5313)] = 161610, + [SMALL_STATE(5314)] = 161621, + [SMALL_STATE(5315)] = 161632, + [SMALL_STATE(5316)] = 161643, + [SMALL_STATE(5317)] = 161654, + [SMALL_STATE(5318)] = 161665, + [SMALL_STATE(5319)] = 161676, + [SMALL_STATE(5320)] = 161687, + [SMALL_STATE(5321)] = 161698, + [SMALL_STATE(5322)] = 161709, + [SMALL_STATE(5323)] = 161718, + [SMALL_STATE(5324)] = 161729, + [SMALL_STATE(5325)] = 161740, + [SMALL_STATE(5326)] = 161749, + [SMALL_STATE(5327)] = 161760, + [SMALL_STATE(5328)] = 161771, + [SMALL_STATE(5329)] = 161782, + [SMALL_STATE(5330)] = 161793, + [SMALL_STATE(5331)] = 161802, + [SMALL_STATE(5332)] = 161813, + [SMALL_STATE(5333)] = 161822, + [SMALL_STATE(5334)] = 161833, + [SMALL_STATE(5335)] = 161842, + [SMALL_STATE(5336)] = 161853, + [SMALL_STATE(5337)] = 161864, + [SMALL_STATE(5338)] = 161875, + [SMALL_STATE(5339)] = 161886, + [SMALL_STATE(5340)] = 161897, [SMALL_STATE(5341)] = 161908, - [SMALL_STATE(5342)] = 161917, - [SMALL_STATE(5343)] = 161928, + [SMALL_STATE(5342)] = 161919, + [SMALL_STATE(5343)] = 161930, [SMALL_STATE(5344)] = 161939, [SMALL_STATE(5345)] = 161948, [SMALL_STATE(5346)] = 161957, [SMALL_STATE(5347)] = 161968, - [SMALL_STATE(5348)] = 161979, - [SMALL_STATE(5349)] = 161990, - [SMALL_STATE(5350)] = 162001, - [SMALL_STATE(5351)] = 162010, - [SMALL_STATE(5352)] = 162021, - [SMALL_STATE(5353)] = 162032, - [SMALL_STATE(5354)] = 162043, - [SMALL_STATE(5355)] = 162054, - [SMALL_STATE(5356)] = 162065, - [SMALL_STATE(5357)] = 162076, - [SMALL_STATE(5358)] = 162085, - [SMALL_STATE(5359)] = 162096, - [SMALL_STATE(5360)] = 162107, - [SMALL_STATE(5361)] = 162118, - [SMALL_STATE(5362)] = 162129, - [SMALL_STATE(5363)] = 162140, - [SMALL_STATE(5364)] = 162151, - [SMALL_STATE(5365)] = 162162, - [SMALL_STATE(5366)] = 162171, - [SMALL_STATE(5367)] = 162182, - [SMALL_STATE(5368)] = 162193, - [SMALL_STATE(5369)] = 162204, - [SMALL_STATE(5370)] = 162215, - [SMALL_STATE(5371)] = 162226, - [SMALL_STATE(5372)] = 162237, - [SMALL_STATE(5373)] = 162248, - [SMALL_STATE(5374)] = 162259, - [SMALL_STATE(5375)] = 162270, - [SMALL_STATE(5376)] = 162281, - [SMALL_STATE(5377)] = 162292, - [SMALL_STATE(5378)] = 162303, - [SMALL_STATE(5379)] = 162314, - [SMALL_STATE(5380)] = 162325, - [SMALL_STATE(5381)] = 162336, - [SMALL_STATE(5382)] = 162347, - [SMALL_STATE(5383)] = 162358, - [SMALL_STATE(5384)] = 162369, - [SMALL_STATE(5385)] = 162380, - [SMALL_STATE(5386)] = 162389, - [SMALL_STATE(5387)] = 162400, - [SMALL_STATE(5388)] = 162411, - [SMALL_STATE(5389)] = 162420, - [SMALL_STATE(5390)] = 162431, - [SMALL_STATE(5391)] = 162442, - [SMALL_STATE(5392)] = 162453, - [SMALL_STATE(5393)] = 162464, - [SMALL_STATE(5394)] = 162475, - [SMALL_STATE(5395)] = 162486, - [SMALL_STATE(5396)] = 162497, - [SMALL_STATE(5397)] = 162508, - [SMALL_STATE(5398)] = 162519, - [SMALL_STATE(5399)] = 162528, - [SMALL_STATE(5400)] = 162539, - [SMALL_STATE(5401)] = 162550, - [SMALL_STATE(5402)] = 162559, - [SMALL_STATE(5403)] = 162570, - [SMALL_STATE(5404)] = 162581, - [SMALL_STATE(5405)] = 162590, - [SMALL_STATE(5406)] = 162599, - [SMALL_STATE(5407)] = 162610, - [SMALL_STATE(5408)] = 162621, - [SMALL_STATE(5409)] = 162632, - [SMALL_STATE(5410)] = 162643, - [SMALL_STATE(5411)] = 162654, - [SMALL_STATE(5412)] = 162665, - [SMALL_STATE(5413)] = 162676, - [SMALL_STATE(5414)] = 162687, - [SMALL_STATE(5415)] = 162698, - [SMALL_STATE(5416)] = 162709, - [SMALL_STATE(5417)] = 162720, - [SMALL_STATE(5418)] = 162731, - [SMALL_STATE(5419)] = 162742, - [SMALL_STATE(5420)] = 162751, - [SMALL_STATE(5421)] = 162762, - [SMALL_STATE(5422)] = 162773, - [SMALL_STATE(5423)] = 162784, - [SMALL_STATE(5424)] = 162795, + [SMALL_STATE(5348)] = 161977, + [SMALL_STATE(5349)] = 161986, + [SMALL_STATE(5350)] = 161997, + [SMALL_STATE(5351)] = 162006, + [SMALL_STATE(5352)] = 162017, + [SMALL_STATE(5353)] = 162028, + [SMALL_STATE(5354)] = 162039, + [SMALL_STATE(5355)] = 162050, + [SMALL_STATE(5356)] = 162061, + [SMALL_STATE(5357)] = 162072, + [SMALL_STATE(5358)] = 162083, + [SMALL_STATE(5359)] = 162094, + [SMALL_STATE(5360)] = 162105, + [SMALL_STATE(5361)] = 162116, + [SMALL_STATE(5362)] = 162127, + [SMALL_STATE(5363)] = 162138, + [SMALL_STATE(5364)] = 162149, + [SMALL_STATE(5365)] = 162160, + [SMALL_STATE(5366)] = 162169, + [SMALL_STATE(5367)] = 162180, + [SMALL_STATE(5368)] = 162191, + [SMALL_STATE(5369)] = 162202, + [SMALL_STATE(5370)] = 162213, + [SMALL_STATE(5371)] = 162224, + [SMALL_STATE(5372)] = 162235, + [SMALL_STATE(5373)] = 162246, + [SMALL_STATE(5374)] = 162257, + [SMALL_STATE(5375)] = 162266, + [SMALL_STATE(5376)] = 162277, + [SMALL_STATE(5377)] = 162288, + [SMALL_STATE(5378)] = 162299, + [SMALL_STATE(5379)] = 162310, + [SMALL_STATE(5380)] = 162321, + [SMALL_STATE(5381)] = 162332, + [SMALL_STATE(5382)] = 162343, + [SMALL_STATE(5383)] = 162354, + [SMALL_STATE(5384)] = 162365, + [SMALL_STATE(5385)] = 162376, + [SMALL_STATE(5386)] = 162387, + [SMALL_STATE(5387)] = 162398, + [SMALL_STATE(5388)] = 162409, + [SMALL_STATE(5389)] = 162418, + [SMALL_STATE(5390)] = 162429, + [SMALL_STATE(5391)] = 162440, + [SMALL_STATE(5392)] = 162451, + [SMALL_STATE(5393)] = 162462, + [SMALL_STATE(5394)] = 162473, + [SMALL_STATE(5395)] = 162484, + [SMALL_STATE(5396)] = 162493, + [SMALL_STATE(5397)] = 162504, + [SMALL_STATE(5398)] = 162513, + [SMALL_STATE(5399)] = 162522, + [SMALL_STATE(5400)] = 162533, + [SMALL_STATE(5401)] = 162544, + [SMALL_STATE(5402)] = 162553, + [SMALL_STATE(5403)] = 162564, + [SMALL_STATE(5404)] = 162573, + [SMALL_STATE(5405)] = 162584, + [SMALL_STATE(5406)] = 162595, + [SMALL_STATE(5407)] = 162606, + [SMALL_STATE(5408)] = 162617, + [SMALL_STATE(5409)] = 162628, + [SMALL_STATE(5410)] = 162639, + [SMALL_STATE(5411)] = 162650, + [SMALL_STATE(5412)] = 162661, + [SMALL_STATE(5413)] = 162672, + [SMALL_STATE(5414)] = 162683, + [SMALL_STATE(5415)] = 162694, + [SMALL_STATE(5416)] = 162705, + [SMALL_STATE(5417)] = 162716, + [SMALL_STATE(5418)] = 162727, + [SMALL_STATE(5419)] = 162738, + [SMALL_STATE(5420)] = 162749, + [SMALL_STATE(5421)] = 162760, + [SMALL_STATE(5422)] = 162771, + [SMALL_STATE(5423)] = 162782, + [SMALL_STATE(5424)] = 162793, [SMALL_STATE(5425)] = 162804, [SMALL_STATE(5426)] = 162815, [SMALL_STATE(5427)] = 162826, - [SMALL_STATE(5428)] = 162835, + [SMALL_STATE(5428)] = 162837, [SMALL_STATE(5429)] = 162846, - [SMALL_STATE(5430)] = 162857, + [SMALL_STATE(5430)] = 162855, [SMALL_STATE(5431)] = 162866, [SMALL_STATE(5432)] = 162877, [SMALL_STATE(5433)] = 162888, [SMALL_STATE(5434)] = 162897, - [SMALL_STATE(5435)] = 162908, + [SMALL_STATE(5435)] = 162906, [SMALL_STATE(5436)] = 162917, [SMALL_STATE(5437)] = 162928, [SMALL_STATE(5438)] = 162939, [SMALL_STATE(5439)] = 162950, - [SMALL_STATE(5440)] = 162961, - [SMALL_STATE(5441)] = 162972, + [SMALL_STATE(5440)] = 162959, + [SMALL_STATE(5441)] = 162970, [SMALL_STATE(5442)] = 162981, [SMALL_STATE(5443)] = 162992, - [SMALL_STATE(5444)] = 163001, - [SMALL_STATE(5445)] = 163012, - [SMALL_STATE(5446)] = 163023, + [SMALL_STATE(5444)] = 163003, + [SMALL_STATE(5445)] = 163014, + [SMALL_STATE(5446)] = 163025, [SMALL_STATE(5447)] = 163034, [SMALL_STATE(5448)] = 163045, - [SMALL_STATE(5449)] = 163054, - [SMALL_STATE(5450)] = 163065, - [SMALL_STATE(5451)] = 163076, - [SMALL_STATE(5452)] = 163087, + [SMALL_STATE(5449)] = 163056, + [SMALL_STATE(5450)] = 163067, + [SMALL_STATE(5451)] = 163078, + [SMALL_STATE(5452)] = 163089, [SMALL_STATE(5453)] = 163098, - [SMALL_STATE(5454)] = 163107, - [SMALL_STATE(5455)] = 163118, - [SMALL_STATE(5456)] = 163129, - [SMALL_STATE(5457)] = 163140, - [SMALL_STATE(5458)] = 163151, + [SMALL_STATE(5454)] = 163109, + [SMALL_STATE(5455)] = 163120, + [SMALL_STATE(5456)] = 163131, + [SMALL_STATE(5457)] = 163142, + [SMALL_STATE(5458)] = 163153, [SMALL_STATE(5459)] = 163162, [SMALL_STATE(5460)] = 163173, [SMALL_STATE(5461)] = 163184, - [SMALL_STATE(5462)] = 163193, - [SMALL_STATE(5463)] = 163204, - [SMALL_STATE(5464)] = 163215, - [SMALL_STATE(5465)] = 163226, - [SMALL_STATE(5466)] = 163237, - [SMALL_STATE(5467)] = 163248, - [SMALL_STATE(5468)] = 163259, - [SMALL_STATE(5469)] = 163270, - [SMALL_STATE(5470)] = 163281, - [SMALL_STATE(5471)] = 163292, - [SMALL_STATE(5472)] = 163303, - [SMALL_STATE(5473)] = 163314, - [SMALL_STATE(5474)] = 163325, - [SMALL_STATE(5475)] = 163336, + [SMALL_STATE(5462)] = 163195, + [SMALL_STATE(5463)] = 163206, + [SMALL_STATE(5464)] = 163217, + [SMALL_STATE(5465)] = 163228, + [SMALL_STATE(5466)] = 163239, + [SMALL_STATE(5467)] = 163250, + [SMALL_STATE(5468)] = 163261, + [SMALL_STATE(5469)] = 163272, + [SMALL_STATE(5470)] = 163283, + [SMALL_STATE(5471)] = 163294, + [SMALL_STATE(5472)] = 163305, + [SMALL_STATE(5473)] = 163316, + [SMALL_STATE(5474)] = 163327, + [SMALL_STATE(5475)] = 163338, [SMALL_STATE(5476)] = 163347, [SMALL_STATE(5477)] = 163358, [SMALL_STATE(5478)] = 163369, [SMALL_STATE(5479)] = 163377, [SMALL_STATE(5480)] = 163385, [SMALL_STATE(5481)] = 163393, - [SMALL_STATE(5482)] = 163401, - [SMALL_STATE(5483)] = 163409, - [SMALL_STATE(5484)] = 163417, - [SMALL_STATE(5485)] = 163425, - [SMALL_STATE(5486)] = 163433, + [SMALL_STATE(5482)] = 163403, + [SMALL_STATE(5483)] = 163411, + [SMALL_STATE(5484)] = 163419, + [SMALL_STATE(5485)] = 163427, + [SMALL_STATE(5486)] = 163435, [SMALL_STATE(5487)] = 163443, [SMALL_STATE(5488)] = 163451, [SMALL_STATE(5489)] = 163459, @@ -279392,8 +279392,8 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5494)] = 163499, [SMALL_STATE(5495)] = 163507, [SMALL_STATE(5496)] = 163515, - [SMALL_STATE(5497)] = 163525, - [SMALL_STATE(5498)] = 163533, + [SMALL_STATE(5497)] = 163523, + [SMALL_STATE(5498)] = 163531, [SMALL_STATE(5499)] = 163541, [SMALL_STATE(5500)] = 163549, [SMALL_STATE(5501)] = 163557, @@ -279413,9 +279413,9 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5515)] = 163669, [SMALL_STATE(5516)] = 163677, [SMALL_STATE(5517)] = 163685, - [SMALL_STATE(5518)] = 163695, - [SMALL_STATE(5519)] = 163703, - [SMALL_STATE(5520)] = 163711, + [SMALL_STATE(5518)] = 163693, + [SMALL_STATE(5519)] = 163701, + [SMALL_STATE(5520)] = 163709, [SMALL_STATE(5521)] = 163719, [SMALL_STATE(5522)] = 163727, [SMALL_STATE(5523)] = 163735, @@ -279468,15 +279468,15 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5570)] = 164111, [SMALL_STATE(5571)] = 164119, [SMALL_STATE(5572)] = 164127, - [SMALL_STATE(5573)] = 164135, - [SMALL_STATE(5574)] = 164143, - [SMALL_STATE(5575)] = 164151, - [SMALL_STATE(5576)] = 164159, - [SMALL_STATE(5577)] = 164167, - [SMALL_STATE(5578)] = 164175, - [SMALL_STATE(5579)] = 164183, - [SMALL_STATE(5580)] = 164191, - [SMALL_STATE(5581)] = 164199, + [SMALL_STATE(5573)] = 164137, + [SMALL_STATE(5574)] = 164145, + [SMALL_STATE(5575)] = 164153, + [SMALL_STATE(5576)] = 164161, + [SMALL_STATE(5577)] = 164169, + [SMALL_STATE(5578)] = 164177, + [SMALL_STATE(5579)] = 164185, + [SMALL_STATE(5580)] = 164193, + [SMALL_STATE(5581)] = 164201, [SMALL_STATE(5582)] = 164209, [SMALL_STATE(5583)] = 164217, [SMALL_STATE(5584)] = 164225, @@ -279507,139 +279507,139 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5609)] = 164425, [SMALL_STATE(5610)] = 164433, [SMALL_STATE(5611)] = 164441, - [SMALL_STATE(5612)] = 164451, - [SMALL_STATE(5613)] = 164459, - [SMALL_STATE(5614)] = 164467, - [SMALL_STATE(5615)] = 164475, - [SMALL_STATE(5616)] = 164483, - [SMALL_STATE(5617)] = 164491, - [SMALL_STATE(5618)] = 164499, - [SMALL_STATE(5619)] = 164507, - [SMALL_STATE(5620)] = 164515, - [SMALL_STATE(5621)] = 164523, - [SMALL_STATE(5622)] = 164531, - [SMALL_STATE(5623)] = 164539, - [SMALL_STATE(5624)] = 164547, - [SMALL_STATE(5625)] = 164555, - [SMALL_STATE(5626)] = 164563, - [SMALL_STATE(5627)] = 164573, - [SMALL_STATE(5628)] = 164581, - [SMALL_STATE(5629)] = 164589, - [SMALL_STATE(5630)] = 164597, - [SMALL_STATE(5631)] = 164605, - [SMALL_STATE(5632)] = 164613, - [SMALL_STATE(5633)] = 164621, - [SMALL_STATE(5634)] = 164629, - [SMALL_STATE(5635)] = 164637, - [SMALL_STATE(5636)] = 164645, - [SMALL_STATE(5637)] = 164653, - [SMALL_STATE(5638)] = 164661, - [SMALL_STATE(5639)] = 164669, - [SMALL_STATE(5640)] = 164677, - [SMALL_STATE(5641)] = 164685, - [SMALL_STATE(5642)] = 164693, - [SMALL_STATE(5643)] = 164701, - [SMALL_STATE(5644)] = 164709, - [SMALL_STATE(5645)] = 164717, - [SMALL_STATE(5646)] = 164725, - [SMALL_STATE(5647)] = 164733, - [SMALL_STATE(5648)] = 164741, - [SMALL_STATE(5649)] = 164749, - [SMALL_STATE(5650)] = 164757, - [SMALL_STATE(5651)] = 164765, - [SMALL_STATE(5652)] = 164773, - [SMALL_STATE(5653)] = 164781, - [SMALL_STATE(5654)] = 164789, - [SMALL_STATE(5655)] = 164797, - [SMALL_STATE(5656)] = 164805, - [SMALL_STATE(5657)] = 164813, - [SMALL_STATE(5658)] = 164821, - [SMALL_STATE(5659)] = 164829, - [SMALL_STATE(5660)] = 164837, - [SMALL_STATE(5661)] = 164845, - [SMALL_STATE(5662)] = 164853, - [SMALL_STATE(5663)] = 164861, - [SMALL_STATE(5664)] = 164869, - [SMALL_STATE(5665)] = 164877, + [SMALL_STATE(5612)] = 164449, + [SMALL_STATE(5613)] = 164457, + [SMALL_STATE(5614)] = 164465, + [SMALL_STATE(5615)] = 164473, + [SMALL_STATE(5616)] = 164481, + [SMALL_STATE(5617)] = 164489, + [SMALL_STATE(5618)] = 164497, + [SMALL_STATE(5619)] = 164505, + [SMALL_STATE(5620)] = 164513, + [SMALL_STATE(5621)] = 164521, + [SMALL_STATE(5622)] = 164529, + [SMALL_STATE(5623)] = 164537, + [SMALL_STATE(5624)] = 164545, + [SMALL_STATE(5625)] = 164553, + [SMALL_STATE(5626)] = 164561, + [SMALL_STATE(5627)] = 164569, + [SMALL_STATE(5628)] = 164577, + [SMALL_STATE(5629)] = 164585, + [SMALL_STATE(5630)] = 164593, + [SMALL_STATE(5631)] = 164601, + [SMALL_STATE(5632)] = 164609, + [SMALL_STATE(5633)] = 164619, + [SMALL_STATE(5634)] = 164627, + [SMALL_STATE(5635)] = 164635, + [SMALL_STATE(5636)] = 164643, + [SMALL_STATE(5637)] = 164651, + [SMALL_STATE(5638)] = 164659, + [SMALL_STATE(5639)] = 164667, + [SMALL_STATE(5640)] = 164675, + [SMALL_STATE(5641)] = 164683, + [SMALL_STATE(5642)] = 164691, + [SMALL_STATE(5643)] = 164699, + [SMALL_STATE(5644)] = 164707, + [SMALL_STATE(5645)] = 164715, + [SMALL_STATE(5646)] = 164723, + [SMALL_STATE(5647)] = 164731, + [SMALL_STATE(5648)] = 164739, + [SMALL_STATE(5649)] = 164747, + [SMALL_STATE(5650)] = 164755, + [SMALL_STATE(5651)] = 164763, + [SMALL_STATE(5652)] = 164771, + [SMALL_STATE(5653)] = 164779, + [SMALL_STATE(5654)] = 164787, + [SMALL_STATE(5655)] = 164795, + [SMALL_STATE(5656)] = 164803, + [SMALL_STATE(5657)] = 164811, + [SMALL_STATE(5658)] = 164819, + [SMALL_STATE(5659)] = 164827, + [SMALL_STATE(5660)] = 164835, + [SMALL_STATE(5661)] = 164843, + [SMALL_STATE(5662)] = 164851, + [SMALL_STATE(5663)] = 164859, + [SMALL_STATE(5664)] = 164867, + [SMALL_STATE(5665)] = 164875, [SMALL_STATE(5666)] = 164885, [SMALL_STATE(5667)] = 164893, [SMALL_STATE(5668)] = 164901, - [SMALL_STATE(5669)] = 164911, - [SMALL_STATE(5670)] = 164921, - [SMALL_STATE(5671)] = 164929, - [SMALL_STATE(5672)] = 164939, - [SMALL_STATE(5673)] = 164947, - [SMALL_STATE(5674)] = 164955, - [SMALL_STATE(5675)] = 164963, - [SMALL_STATE(5676)] = 164971, - [SMALL_STATE(5677)] = 164979, - [SMALL_STATE(5678)] = 164987, - [SMALL_STATE(5679)] = 164995, - [SMALL_STATE(5680)] = 165003, - [SMALL_STATE(5681)] = 165011, - [SMALL_STATE(5682)] = 165019, - [SMALL_STATE(5683)] = 165027, - [SMALL_STATE(5684)] = 165035, - [SMALL_STATE(5685)] = 165043, - [SMALL_STATE(5686)] = 165051, - [SMALL_STATE(5687)] = 165059, - [SMALL_STATE(5688)] = 165067, - [SMALL_STATE(5689)] = 165075, - [SMALL_STATE(5690)] = 165083, - [SMALL_STATE(5691)] = 165091, - [SMALL_STATE(5692)] = 165099, - [SMALL_STATE(5693)] = 165107, - [SMALL_STATE(5694)] = 165115, - [SMALL_STATE(5695)] = 165123, - [SMALL_STATE(5696)] = 165131, - [SMALL_STATE(5697)] = 165139, - [SMALL_STATE(5698)] = 165147, - [SMALL_STATE(5699)] = 165155, - [SMALL_STATE(5700)] = 165163, - [SMALL_STATE(5701)] = 165171, - [SMALL_STATE(5702)] = 165179, - [SMALL_STATE(5703)] = 165187, - [SMALL_STATE(5704)] = 165195, - [SMALL_STATE(5705)] = 165203, - [SMALL_STATE(5706)] = 165211, - [SMALL_STATE(5707)] = 165219, - [SMALL_STATE(5708)] = 165227, - [SMALL_STATE(5709)] = 165235, - [SMALL_STATE(5710)] = 165243, - [SMALL_STATE(5711)] = 165251, - [SMALL_STATE(5712)] = 165259, - [SMALL_STATE(5713)] = 165267, - [SMALL_STATE(5714)] = 165275, - [SMALL_STATE(5715)] = 165283, - [SMALL_STATE(5716)] = 165291, - [SMALL_STATE(5717)] = 165299, - [SMALL_STATE(5718)] = 165307, - [SMALL_STATE(5719)] = 165315, - [SMALL_STATE(5720)] = 165323, - [SMALL_STATE(5721)] = 165331, - [SMALL_STATE(5722)] = 165339, - [SMALL_STATE(5723)] = 165347, - [SMALL_STATE(5724)] = 165355, - [SMALL_STATE(5725)] = 165363, - [SMALL_STATE(5726)] = 165371, - [SMALL_STATE(5727)] = 165379, - [SMALL_STATE(5728)] = 165387, - [SMALL_STATE(5729)] = 165395, - [SMALL_STATE(5730)] = 165403, - [SMALL_STATE(5731)] = 165411, - [SMALL_STATE(5732)] = 165419, - [SMALL_STATE(5733)] = 165427, - [SMALL_STATE(5734)] = 165435, - [SMALL_STATE(5735)] = 165443, - [SMALL_STATE(5736)] = 165451, - [SMALL_STATE(5737)] = 165459, - [SMALL_STATE(5738)] = 165467, - [SMALL_STATE(5739)] = 165475, - [SMALL_STATE(5740)] = 165483, - [SMALL_STATE(5741)] = 165491, - [SMALL_STATE(5742)] = 165499, - [SMALL_STATE(5743)] = 165507, - [SMALL_STATE(5744)] = 165515, + [SMALL_STATE(5669)] = 164909, + [SMALL_STATE(5670)] = 164917, + [SMALL_STATE(5671)] = 164925, + [SMALL_STATE(5672)] = 164933, + [SMALL_STATE(5673)] = 164941, + [SMALL_STATE(5674)] = 164949, + [SMALL_STATE(5675)] = 164957, + [SMALL_STATE(5676)] = 164965, + [SMALL_STATE(5677)] = 164973, + [SMALL_STATE(5678)] = 164981, + [SMALL_STATE(5679)] = 164989, + [SMALL_STATE(5680)] = 164997, + [SMALL_STATE(5681)] = 165005, + [SMALL_STATE(5682)] = 165013, + [SMALL_STATE(5683)] = 165021, + [SMALL_STATE(5684)] = 165029, + [SMALL_STATE(5685)] = 165037, + [SMALL_STATE(5686)] = 165045, + [SMALL_STATE(5687)] = 165053, + [SMALL_STATE(5688)] = 165061, + [SMALL_STATE(5689)] = 165069, + [SMALL_STATE(5690)] = 165077, + [SMALL_STATE(5691)] = 165085, + [SMALL_STATE(5692)] = 165093, + [SMALL_STATE(5693)] = 165101, + [SMALL_STATE(5694)] = 165109, + [SMALL_STATE(5695)] = 165117, + [SMALL_STATE(5696)] = 165125, + [SMALL_STATE(5697)] = 165133, + [SMALL_STATE(5698)] = 165141, + [SMALL_STATE(5699)] = 165149, + [SMALL_STATE(5700)] = 165157, + [SMALL_STATE(5701)] = 165165, + [SMALL_STATE(5702)] = 165173, + [SMALL_STATE(5703)] = 165181, + [SMALL_STATE(5704)] = 165189, + [SMALL_STATE(5705)] = 165197, + [SMALL_STATE(5706)] = 165205, + [SMALL_STATE(5707)] = 165213, + [SMALL_STATE(5708)] = 165221, + [SMALL_STATE(5709)] = 165229, + [SMALL_STATE(5710)] = 165237, + [SMALL_STATE(5711)] = 165245, + [SMALL_STATE(5712)] = 165253, + [SMALL_STATE(5713)] = 165261, + [SMALL_STATE(5714)] = 165269, + [SMALL_STATE(5715)] = 165277, + [SMALL_STATE(5716)] = 165285, + [SMALL_STATE(5717)] = 165293, + [SMALL_STATE(5718)] = 165303, + [SMALL_STATE(5719)] = 165311, + [SMALL_STATE(5720)] = 165319, + [SMALL_STATE(5721)] = 165327, + [SMALL_STATE(5722)] = 165335, + [SMALL_STATE(5723)] = 165345, + [SMALL_STATE(5724)] = 165353, + [SMALL_STATE(5725)] = 165361, + [SMALL_STATE(5726)] = 165369, + [SMALL_STATE(5727)] = 165377, + [SMALL_STATE(5728)] = 165385, + [SMALL_STATE(5729)] = 165393, + [SMALL_STATE(5730)] = 165401, + [SMALL_STATE(5731)] = 165409, + [SMALL_STATE(5732)] = 165417, + [SMALL_STATE(5733)] = 165425, + [SMALL_STATE(5734)] = 165433, + [SMALL_STATE(5735)] = 165441, + [SMALL_STATE(5736)] = 165449, + [SMALL_STATE(5737)] = 165457, + [SMALL_STATE(5738)] = 165465, + [SMALL_STATE(5739)] = 165473, + [SMALL_STATE(5740)] = 165481, + [SMALL_STATE(5741)] = 165489, + [SMALL_STATE(5742)] = 165497, + [SMALL_STATE(5743)] = 165505, + [SMALL_STATE(5744)] = 165513, [SMALL_STATE(5745)] = 165523, [SMALL_STATE(5746)] = 165531, [SMALL_STATE(5747)] = 165539, @@ -279730,9 +279730,9 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5832)] = 166219, [SMALL_STATE(5833)] = 166227, [SMALL_STATE(5834)] = 166235, - [SMALL_STATE(5835)] = 166245, - [SMALL_STATE(5836)] = 166253, - [SMALL_STATE(5837)] = 166261, + [SMALL_STATE(5835)] = 166243, + [SMALL_STATE(5836)] = 166251, + [SMALL_STATE(5837)] = 166259, [SMALL_STATE(5838)] = 166269, [SMALL_STATE(5839)] = 166277, [SMALL_STATE(5840)] = 166285, @@ -279785,156 +279785,156 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4849), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(538), [122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(558), [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5517), - [180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(481), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5520), + [176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(481), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(636), [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), @@ -279943,63 +279943,63 @@ static const TSParseActionEntry ts_parse_actions[] = { [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1322), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1348), [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(696), [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1282), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1185), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1300), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4), [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2928), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5358), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3633), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2931), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5441), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3593), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1186), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3484), [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5416), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5451), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4724), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5370), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5450), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4790), [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(792), + [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(782), [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(436), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5322), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5196), [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5356), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4834), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4536), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5186), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5425), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4849), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4750), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5308), [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(297), [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(345), [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(164), [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4879), - [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4474), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4411), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3323), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(734), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3679), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5671), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(992), - [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(584), - [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3876), - [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5833), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2340), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(709), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1186), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5881), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5707), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5730), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4887), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3309), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(734), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3597), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5837), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(986), + [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4467), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4468), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3865), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2118), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5614), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2118), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2115), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4039), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1314), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1185), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5669), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5695), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5700), [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 238), @@ -280008,7 +280008,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 95), [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 54), [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 54), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), @@ -280016,305 +280016,305 @@ static const TSParseActionEntry ts_parse_actions[] = { [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(50), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(194), - [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(215), + [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(216), [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(992), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3870), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(986), + [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3856), [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 33), [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 33), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(483), [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 33), [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(322), [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(618), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), @@ -280328,42 +280328,42 @@ static const TSParseActionEntry ts_parse_actions[] = { [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), @@ -280376,88 +280376,88 @@ static const TSParseActionEntry ts_parse_actions[] = { [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), @@ -280465,321 +280465,321 @@ static const TSParseActionEntry ts_parse_actions[] = { [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 191), [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 191), [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 191), [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 191), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 150), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 150), - [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 113), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 113), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 113), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 113), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 169), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 169), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 169), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 169), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 173), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 173), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 173), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 173), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 173), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 173), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 173), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 173), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 51), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 51), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 114), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 114), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 114), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 114), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 192), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 192), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 192), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 192), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 112), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 112), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 219), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 219), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 219), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 219), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 30), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 30), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 233), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 233), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 233), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 233), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 123), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 123), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 123), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 123), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 77), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 77), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 90), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 90), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 169), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 169), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 169), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 169), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 173), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 173), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 173), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 173), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 173), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 173), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 173), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 173), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 51), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 51), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 114), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 114), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 114), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 114), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 192), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 192), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 192), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 192), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 112), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 112), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 219), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 219), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 219), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 219), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 233), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 233), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 233), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 233), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 113), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 113), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 113), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 113), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 123), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 123), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 123), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 123), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 77), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 77), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 90), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 90), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 150), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 150), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 30), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 30), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [1942] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3263), - [1946] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3017), + [1942] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(2952), + [1946] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3286), [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), @@ -280787,225 +280787,225 @@ static const TSParseActionEntry ts_parse_actions[] = { [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2850), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2852), [2331] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(201), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(414), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [2344] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(4524), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(417), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [2340] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(4914), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(201), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4524), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4914), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 47), [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 47), [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 101), [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 101), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 276), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 276), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 39), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 39), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 107), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 107), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 107), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 107), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 39), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 39), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 276), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 276), [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 243), [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 243), [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 274), @@ -281020,92 +281020,92 @@ static const TSParseActionEntry ts_parse_actions[] = { [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 194), [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 194), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 153), [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 153), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 191), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 191), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 240), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 240), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 241), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 241), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 49), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 49), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 273), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 273), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 242), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 242), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 34), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 34), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 94), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 94), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 34), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 34), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 107), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 107), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 275), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 275), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 108), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 108), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 38), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 38), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 51), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 51), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 98), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 98), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 142), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 142), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 35), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 35), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 145), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 145), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 123), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 123), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 300), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 300), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 49), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 49), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 172), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 172), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 99), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 99), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 38), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 38), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 89), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 89), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 48), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 48), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 191), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 191), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 240), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 240), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 241), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 241), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 49), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 49), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 273), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 273), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 242), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 242), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 34), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 34), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 94), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 94), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 34), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 34), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 107), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 107), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 275), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 275), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 108), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 108), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 38), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 38), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 51), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 51), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 98), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 98), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 142), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 142), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 35), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 35), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 145), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 145), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 49), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 49), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 300), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 300), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 172), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 172), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 99), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 99), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 89), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 89), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 38), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 38), [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 40), [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 40), [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 113), @@ -281130,94 +281130,94 @@ static const TSParseActionEntry ts_parse_actions[] = { [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 186), [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 190), [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 190), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 201), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 201), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 201), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 201), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 169), [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 169), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 173), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 173), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 100), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 100), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 173), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 173), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 267), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 267), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 153), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 153), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 89), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 89), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 233), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 233), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 122), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 122), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 75), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 75), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 155), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 155), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 153), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 153), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 94), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 94), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 76), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 76), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), - [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 150), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 150), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 48), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 48), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 173), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 173), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 100), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 100), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 173), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 173), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 267), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 267), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 153), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 153), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 89), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 89), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 233), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 233), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 122), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 122), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 75), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 75), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 155), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 155), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 153), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 153), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 94), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 94), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 76), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 76), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 150), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 150), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232), [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 85), [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 85), [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 196), [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 196), [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 26), [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 26), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 123), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 123), [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 41), [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 41), [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 28), @@ -281226,719 +281226,719 @@ static const TSParseActionEntry ts_parse_actions[] = { [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 182), [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 149), [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 149), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 271), [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 271), [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 239), [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 239), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 200), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 200), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 272), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 272), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 199), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 199), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 272), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 272), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 199), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 199), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 200), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 200), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 80), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 80), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), - [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), - [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 78), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 78), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 79), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 79), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 77), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 78), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 147), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 147), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 188), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 188), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), + [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 78), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 78), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 79), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 79), + [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 80), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 80), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 188), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 188), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 78), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 77), + [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 147), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 147), [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [3512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(486), [3546] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5537), + [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5495), [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1083), + [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1073), [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(5199), [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), - [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5546), - [3578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1006), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 81), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 81), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), - [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(253), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), - [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT(3320), - [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(3910), - [3610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(540), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [3627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 20), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 20), - [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 14), - [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(397), - [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5557), + [3584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1006), + [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(397), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), + [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(253), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 20), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 20), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), + [3624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT(3323), + [3627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(3909), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(540), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 81), + [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 81), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 14), [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3662] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), REDUCE(sym_rest_pattern, 2, 0, 0), - [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 77), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 77), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 77), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 77), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3670] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 14), REDUCE(sym_rest_pattern, 2, 0, 0), [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), [3678] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 33), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [3684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 77), - [3689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(620), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(620), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 78), + [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(328), [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 78), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 77), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1523), - [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1727), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1798), - [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1707), - [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(3236), - [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2827), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), - [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1485), - [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(334), - [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4466), - [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4469), - [3873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2226), - [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(5720), - [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(3059), - [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4007), - [3885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1725), - [3888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1928), - [3891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2467), - [3894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1773), - [3897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1962), - [3900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2427), - [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2783), - [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2863), - [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2066), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2435), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1522), + [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2066), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2435), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1707), + [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1798), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [3874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(3259), + [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2836), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1491), + [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(334), + [3888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2226), + [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(5667), + [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4454), + [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4522), + [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(3060), + [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(4005), + [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1725), + [3909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1928), + [3912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2472), + [3915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1729), + [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(1932), + [3921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2363), + [3924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2784), + [3927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 25), SHIFT_REPEAT(2824), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1727), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 13), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 13), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 13), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 13), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [4057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 61), - [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 61), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [4057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [4065] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 31), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4071] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 31), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 61), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 61), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), [4077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 14), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 16), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 16), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 69), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 69), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 16), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 16), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [4109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 69), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 69), [4117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 225), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 225), - [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), - [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), - [4139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 140), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 140), - [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), - [4157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 141), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 141), - [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), - [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), - [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 20), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 20), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 20), - [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 20), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 180), - [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 180), - [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 65), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 65), - [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), - [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 77), REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 68), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 68), - [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 181), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 181), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 147), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 147), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 68), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 68), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 224), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 224), - [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 226), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 226), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 227), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 227), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), - [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 20), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 20), - [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 264), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 264), - [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 129), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 129), - [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 265), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 265), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 71), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 71), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 266), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 266), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 70), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 70), - [4312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 90), REDUCE(sym_nested_type_identifier, 3, 0, 135), - [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 137), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 137), - [4319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 297), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 297), - [4323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 71), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 71), - [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), - [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), - [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 140), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 140), - [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 141), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 141), - [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), - [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), - [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), - [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), - [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), - [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 131), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 131), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 77), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 77), - [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 132), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 132), - [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 78), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 78), - [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 62), - [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 62), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), - [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 63), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 63), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), - [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), - [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 96), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 96), - [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 189), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 189), - [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 22), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 22), - [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [4439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 58), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 58), - [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 19), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 19), - [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 18), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 18), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 226), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 226), + [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 20), + [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 20), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 20), + [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 20), + [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 178), + [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 140), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 140), + [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 141), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 141), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 65), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 65), + [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 180), + [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 180), + [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 68), + [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 68), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 20), + [4215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 20), + [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 68), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 68), + [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 181), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 181), + [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 147), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 147), + [4241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), + [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), + [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 131), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 131), + [4249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 224), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 224), + [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 225), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 225), + [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 18), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 18), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 227), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 227), + [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 70), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 70), + [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 71), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 71), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 22), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 22), + [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 135), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 135), + [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 90), REDUCE(sym_nested_type_identifier, 3, 0, 135), + [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), + [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 262), + [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 263), + [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 264), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 264), + [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 137), + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 137), + [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 265), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 265), + [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 71), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 71), + [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 132), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 132), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 266), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 266), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 297), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 297), + [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 140), + [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 140), + [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 141), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 141), + [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 62), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 62), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [4390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 77), + [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 77), + [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 63), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 63), + [4404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 19), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 19), + [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 78), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 78), + [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 58), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 58), + [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [4432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 77), REDUCE(sym_nested_type_identifier, 3, 0, 135), + [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 96), + [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 96), + [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 189), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 189), + [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 129), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 129), [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), @@ -282003,13 +282003,13 @@ static const TSParseActionEntry ts_parse_actions[] = { [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 124), [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 127), [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 127), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 148), [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 148), [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 152), @@ -282021,84 +282021,84 @@ static const TSParseActionEntry ts_parse_actions[] = { [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 31), [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 32), [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 31), - [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 151), [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 151), [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5162), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5165), [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 31), REDUCE(sym_object_pattern, 3, 0, 32), - [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [4693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 27), - [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 72), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 74), - [4751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), - [4753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(160), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 74), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 125), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 126), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 187), - [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [4778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(160), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [4700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), + [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 27), + [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 72), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 74), + [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), + [4760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(160), + [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 74), + [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 125), + [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 126), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 187), + [4781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [4785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(160), + [4788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), [4795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(160), @@ -282107,8 +282107,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [4802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(160), [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), @@ -282125,13 +282125,13 @@ static const TSParseActionEntry ts_parse_actions[] = { [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), [4851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(162), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), @@ -282139,10 +282139,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 32), [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), [4872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(162), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), @@ -282164,9 +282164,9 @@ static const TSParseActionEntry ts_parse_actions[] = { [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 42), [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), [4923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(162), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), [4928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(155), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), @@ -282186,23 +282186,23 @@ static const TSParseActionEntry ts_parse_actions[] = { [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), [4969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(155), - [4972] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), - [4976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(162), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [4993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(155), - [4996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(155), - [4999] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [4972] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [4976] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [4994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(155), + [4997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(155), + [5000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(162), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 16), @@ -282210,72 +282210,72 @@ static const TSParseActionEntry ts_parse_actions[] = { [5023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(156), [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 95), [5028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 95), SHIFT(516), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), [5045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(156), [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), [5052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(156), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), REDUCE(sym_assignment_expression, 3, 0, 27), [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 91), REDUCE(sym_assignment_expression, 3, 0, 72), [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 72), REDUCE(sym_assignment_expression, 3, 0, 72), [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 72), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), [5112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), [5115] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 16), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), [5131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), [5134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), [5137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 42), [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 42), [5141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 16), REDUCE(sym__parameter_name, 2, 0, 42), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), @@ -282302,44 +282302,44 @@ static const TSParseActionEntry ts_parse_actions[] = { [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), [5226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 45), [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 45), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), [5252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), [5257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 102), [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 102), @@ -282364,96 +282364,96 @@ static const TSParseActionEntry ts_parse_actions[] = { [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 72), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(152), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [5435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(152), - [5438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(152), - [5441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(152), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [5433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(152), + [5436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(152), + [5439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(152), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 158), - [5494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 158), - [5496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 160), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 160), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), - [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 158), + [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 158), + [5494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 160), + [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 160), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 52), [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), @@ -282461,100 +282461,100 @@ static const TSParseActionEntry ts_parse_actions[] = { [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 202), [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), [5562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), [5567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), [5570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 52), - [5574] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [5572] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), [5630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(159), - [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(151), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(151), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 92), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [5714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [5717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(159), - [5720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(159), - [5723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 31), REDUCE(sym_object_pattern, 3, 0, 32), - [5726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 31), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), - [5729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(151), - [5732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(151), - [5735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(151), - [5738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [5700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 92), + [5702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 31), REDUCE(sym_object_pattern, 3, 0, 32), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [5718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(159), + [5721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(159), + [5724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(159), + [5727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 31), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [5732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(151), + [5735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(151), + [5738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(151), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), [5743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), @@ -282577,7 +282577,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [5796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(161), [5799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(161), [5802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(161), - [5805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(159), + [5805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), @@ -282587,680 +282587,680 @@ static const TSParseActionEntry ts_parse_actions[] = { [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 150), - [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 150), - [5840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 151), - [5843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 151), - [5846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 152), - [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 152), - [5852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(153), - [5855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(153), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(153), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [5893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(153), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 169), REDUCE(sym_class, 6, 0, 233), + [5853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 169), REDUCE(sym_class, 6, 0, 233), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 150), + [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 150), + [5864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 151), + [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 151), + [5870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 152), + [5873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 152), + [5876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(153), + [5879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(153), + [5882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(153), + [5885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 74), SHIFT(153), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 113), REDUCE(sym_class, 5, 0, 191), - [5913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 113), REDUCE(sym_class, 5, 0, 191), - [5916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 114), REDUCE(sym_class, 5, 0, 192), - [5919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 114), REDUCE(sym_class, 5, 0, 192), - [5922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 193), - [5925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 193), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 115), - [5936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 95), SHIFT(648), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 169), REDUCE(sym_class, 6, 0, 233), - [5944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 169), REDUCE(sym_class, 6, 0, 233), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 31), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [5953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 86), - [5956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 86), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [5910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 86), + [5913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 86), + [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 31), + [5918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 113), REDUCE(sym_class, 5, 0, 191), + [5921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 113), REDUCE(sym_class, 5, 0, 191), + [5924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 114), REDUCE(sym_class, 5, 0, 192), + [5927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 114), REDUCE(sym_class, 5, 0, 192), + [5930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 193), + [5933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 193), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 115), + [5944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 95), SHIFT(648), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 298), [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 298), - [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 236), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 236), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 269), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 269), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 123), - [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 123), - [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), - [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), - [6021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), SHIFT_REPEAT(2718), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 219), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 219), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [6032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 93), - [6034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 93), - [6036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 173), - [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 173), - [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 299), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 299), - [6044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 197), - [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 197), - [6048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 318), - [6050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 318), - [6052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 334), - [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 334), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 156), - [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 156), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), - [6072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2722), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [6077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 270), - [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 270), - [6081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 319), - [6083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 319), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), + [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), + [6007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 110), SHIFT_REPEAT(2724), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [6012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 123), + [6014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 123), + [6016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 219), + [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 219), + [6020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 173), + [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 173), + [6024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 236), + [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 236), + [6028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 93), + [6030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 93), + [6032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2728), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [6041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 269), + [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 269), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [6047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 299), + [6049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 299), + [6051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 318), + [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 318), + [6055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 197), + [6057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 197), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 270), + [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 270), + [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 319), + [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 319), + [6073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 156), + [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 156), + [6077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 334), + [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 334), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), [6085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 110), [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 110), - [6089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [6099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 54), + [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 54), [6103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11), - [6107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 54), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [6157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(4007), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [6107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [6157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(4005), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 89), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), + [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 296), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 111), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), - [6578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 211), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), REDUCE(sym_type_parameter, 1, 0, 15), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [6615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(1030), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 253), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 89), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [6636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 161), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 253), - [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 161), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), - [6668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 253), - [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 111), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 259), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [6684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 211), - [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), - [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 213), - [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 166), - [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 211), - [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 161), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [6698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(5199), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 296), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [6747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [6763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [6769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(5154), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [6782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 32), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [6532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 296), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [6544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 89), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 111), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [6610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 161), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 253), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 89), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), REDUCE(sym_type_parameter, 1, 0, 15), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [6629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(1027), + [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [6646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 211), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 111), + [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 259), + [6668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 211), + [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 161), + [6672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 213), + [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 166), + [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 253), + [6684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 253), + [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), + [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 161), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [6694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 14), SHIFT(5199), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 296), + [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 211), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [6779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [6787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [6793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), + [6795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(5154), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [6816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [6824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 32), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [6890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [6978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [6982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [7044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [7048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [7080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [7054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [7072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), [7104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), [7114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), [7120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 15), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [7128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 222), - [7130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 128), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [7142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 109), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [7158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 143), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [7164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 143), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [7172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 122), - [7174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 165), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [7184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), - [7186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 203), - [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 172), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 244), - [7196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 245), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 222), + [7136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 128), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [7150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 109), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 143), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [7168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 143), + [7170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [7178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 122), + [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 165), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 203), + [7196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 172), + [7198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 244), + [7200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 245), [7202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 281), [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 282), [7206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 301), @@ -283273,690 +283273,690 @@ static const TSParseActionEntry ts_parse_actions[] = { [7220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), [7222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), [7224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), [7242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), [7244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 289), [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), [7250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(540), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [7297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(489), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [7310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5498), - [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [7315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(320), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [7388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1479), - [7391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [7395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [7401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [7421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [7425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(4028), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), - [7432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), - [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 84), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [7440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 144), - [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 144), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [7492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3892), - [7495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [7497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(393), - [7500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 143), - [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 143), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), - [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), - [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), - [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 220), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [7291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [7295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(489), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [7312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5558), + [7315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [7317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(320), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [7378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1480), + [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [7395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 23), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [7427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [7429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 84), + [7433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 25), SHIFT_REPEAT(4039), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [7442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 144), + [7444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 144), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [7490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3892), + [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [7495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(393), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [7520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 143), + [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 143), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), + [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), + [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 220), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [7548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [7556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [7562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(972), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [7558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(976), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [7565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [7587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 144), - [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 144), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [7597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1056), - [7600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(970), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [7619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1061), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 37), - [7628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 207), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [7646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 247), - [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), - [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 221), - [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), - [7654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 261), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [7660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 37), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 37), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [7585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 144), + [7587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 144), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [7595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1056), + [7598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(975), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [7617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1060), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 37), + [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 207), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [7644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 247), + [7646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), + [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 221), + [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), + [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 261), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 37), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [7662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 37), + [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 59), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), [7674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 277), [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 279), [7678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 280), [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), [7682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(397), [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), - [7687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1090), - [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 59), - [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 307), - [7694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(969), - [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 320), - [7699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 321), - [7701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), - [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), - [7709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1021), - [7712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4115), - [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), - [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), - [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 295), - [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 330), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), - [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 36), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), - [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 96), - [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 168), - [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), - [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 163), - [7775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(964), - [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 96), - [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), - [7782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1003), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 252), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 285), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [7687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1088), + [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 307), + [7692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(966), + [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 320), + [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 321), + [7699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [7701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [7707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), + [7710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4115), + [7713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 295), + [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [7731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 330), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [7747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 36), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [7761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), + [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 96), + [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 168), + [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), + [7769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(962), + [7772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 163), + [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 96), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [7778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1003), + [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 252), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 285), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 204), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), [7805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 205), [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 288), [7809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), - [7813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(960), - [7816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1041), - [7819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(976), - [7822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1048), - [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 339), - [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 304), - [7829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 305), - [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), + [7813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(969), + [7816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1040), + [7819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(970), + [7822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 24), SHIFT(1047), + [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 304), + [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 305), + [7829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), + [7831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 339), [7833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), - [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 104), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [7887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [7897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 34), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [7903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 184), - [7905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 184), - [7907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 185), - [7909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 185), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [7917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3606), - [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 44), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [7932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [7934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4431), - [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 67), - [7939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1018), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [7944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [7946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4436), - [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [7955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [7957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), - [7959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), SHIFT_REPEAT(4418), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [7972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(486), - [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 53), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [8001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(432), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 278), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [8030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 116), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 237), - [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 170), - [8062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 170), SHIFT_REPEAT(355), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [8067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), - [8069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [8094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 89), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 44), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 34), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [7893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 184), + [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 184), + [7897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 185), + [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 185), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 104), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 67), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [7925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(432), + [7928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1016), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [7943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [7951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), + [7953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(486), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 53), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [7964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), + [7966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), SHIFT_REPEAT(4415), + [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 32), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [7987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 89), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 116), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 237), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 278), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [8035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [8037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4493), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [8046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [8048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4497), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 170), + [8057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 170), SHIFT_REPEAT(355), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [8072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [8089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3607), + [8092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 341), - [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), - [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), + [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), + [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 92), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), - [8120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 92), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [8136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [8144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [8152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(400), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [8165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [8177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), - [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [8195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [8198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 97), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [8248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(255), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [8253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(4613), - [8256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), - [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), - [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), - [8262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), - [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), - [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 281), - [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 282), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), - [8286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 323), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [8290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 89), - [8298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [8302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), - [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), - [8312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 328), - [8326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [8336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4948), - [8339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [8341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(212), - [8344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [8348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [8377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [8379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3472), - [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), - [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), - [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), - [8390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [8400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 36), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [8408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), - [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), - [8420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3355), - [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [8425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 96), - [8427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), SHIFT_REPEAT(2814), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [8144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(400), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), + [8157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [8169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [8173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [8175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [8177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 341), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 97), + [8187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), + [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [8197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [8246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(255), + [8249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(4612), + [8252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), + [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), + [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), + [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), + [8262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 281), + [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 282), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [8274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [8278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 323), + [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [8286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 89), + [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [8304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), + [8306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 328), + [8324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [8330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4946), + [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [8335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329), + [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [8346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(289), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), + [8367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [8369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3487), + [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 96), + [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [8394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260), + [8400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 36), + [8402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [8416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), + [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [8427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), SHIFT_REPEAT(2797), [8430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [8460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 122), - [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), - [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 97), - [8466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), - [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 167), - [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [8446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [8450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [8454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 122), + [8456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 97), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [8466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 167), + [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), [8474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [8478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 53), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [8476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 53), + [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), + [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), [8482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [8512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(945), - [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [8545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2469), - [8548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [8550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2324), - [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), - [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [8508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(945), + [8511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [8513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [8533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [8535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2473), + [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [8540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2325), + [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 244), [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 244), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 245), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 206), - [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), - [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 335), - [8607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 337), - [8609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338), - [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [8619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [8583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 245), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 206), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [8599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), + [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 335), + [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 337), + [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), + [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), [8621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), - [8623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), - [8625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 340), - [8627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 301), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 172), - [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 203), - [8635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [8623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338), + [8625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), + [8627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 340), + [8629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 301), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 172), + [8635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 203), + [8637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), [8639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(620), [8642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), @@ -283964,494 +283964,494 @@ static const TSParseActionEntry ts_parse_actions[] = { [8648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 154), [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [8684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 159), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [8696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 89), - [8698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [8726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 37), - [8728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [8738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 136), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [8742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 133), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [8754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 43), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [8680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 159), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 89), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [8702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [8718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 37), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [8724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [8744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 136), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [8756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 133), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), [8762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 179), [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [8772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 96), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [8784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 36), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [8794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 195), - [8810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 66), - [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 198), - [8814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 195), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [8832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 103), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [8914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 105), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [8932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 154), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [8768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 96), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [8778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 36), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [8786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [8798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 195), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 66), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [8814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 198), + [8816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 195), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [8822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 103), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [8852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 105), + [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 43), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [8934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [8936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 154), [8938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [8968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [8986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), + [8962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [8966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [8968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [9014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [9000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [9020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [9028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [9056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [9070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [9074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [9094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [9096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [9146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [9200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [9278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), - [9280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [9370] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [9236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [9550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [9628] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), }; enum ts_external_scanner_symbol_identifiers { diff --git a/typescript/src/tree_sitter/alloc.h b/typescript/src/tree_sitter/alloc.h index 1f4466d7..1abdd120 100644 --- a/typescript/src/tree_sitter/alloc.h +++ b/typescript/src/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR -extern void *(*ts_current_malloc)(size_t); -extern void *(*ts_current_calloc)(size_t, size_t); -extern void *(*ts_current_realloc)(void *, size_t); -extern void (*ts_current_free)(void *); +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); #ifndef ts_malloc #define ts_malloc ts_current_malloc